tests individually in the "#else" branch below.
*/
-//Sanity check
-#ifdef wxUSE_GUI
-# undef wxUSE_GUI
-#endif
+// what to test (in alphabetic order)? Define TEST_ALL to 0 to do a single
+// test, define it to 1 to do all tests.
+#define TEST_ALL 0
+
+
+#if TEST_ALL
-// what to test (in alphabetic order)? uncomment the line below to do all tests
-//#define TEST_ALL
-#ifdef TEST_ALL
- #define TEST_ARRAYS
#define TEST_CHARSET
#define TEST_CMDLINE
#define TEST_DATETIME
#define TEST_FILECONF
#define TEST_FILENAME
#define TEST_FILETIME
-// #define TEST_FTP
+ // #define TEST_FTP --FIXME! (RN)
#define TEST_HASH
#define TEST_HASHMAP
#define TEST_HASHSET
#define TEST_LIST
#define TEST_LOCALE
#define TEST_LOG
- #define TEST_LONGLONG
#define TEST_MIME
#define TEST_PATHLIST
#define TEST_ODBC
#define TEST_REGISTRY
#define TEST_SCOPEGUARD
#define TEST_SNGLINST
-// #define TEST_SOCKETS
+// #define TEST_SOCKETS --FIXME! (RN)
#define TEST_STREAMS
- #define TEST_STRINGS
#define TEST_TEXTSTREAM
#define TEST_THREADS
#define TEST_TIMER
- #define TEST_UNICODE
// #define TEST_VCARD -- don't enable this (VZ)
- #define TEST_VOLUME
+// #define TEST_VOLUME --FIXME! (RN)
#define TEST_WCHAR
#define TEST_ZIP
- #define TEST_ZLIB
- #define TEST_GZIP
- #undef TEST_ALL
- static const bool TEST_ALL = true;
-#else
+#else // #if TEST_ALL
+
#define TEST_FILENAME
- static const bool TEST_ALL = false;
#endif
// some tests are interactive, define this to run them
#ifdef TEST_INTERACTIVE
#undef TEST_INTERACTIVE
- static const bool TEST_INTERACTIVE = true;
+ #define TEST_INTERACTIVE 1
#else
- static const bool TEST_INTERACTIVE = false;
+ #define TEST_INTERACTIVE 0
#endif
// ----------------------------------------------------------------------------
// test class for container objects
// ----------------------------------------------------------------------------
-#if defined(TEST_ARRAYS) || defined(TEST_LIST)
+#if defined(TEST_LIST)
class Bar // Foo is already taken in the hash test
{
size_t Bar::ms_bars = 0;
-#endif // defined(TEST_ARRAYS) || defined(TEST_LIST)
+#endif // defined(TEST_LIST)
// ============================================================================
// implementation
// helper functions
// ----------------------------------------------------------------------------
-#if defined(TEST_STRINGS) || defined(TEST_SOCKETS)
+#if defined(TEST_SOCKETS)
// replace TABs with \t and CRs with \n
static wxString MakePrintable(const wxChar *s)
cont = dir.GetNext(&filename);
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestDirEnum()
class DirPrintTraverser : public wxDirTraverser
{
public:
- virtual wxDirTraverseResult OnFile(const wxString& filename)
+ virtual wxDirTraverseResult OnFile(const wxString& WXUNUSED(filename))
{
return wxDIR_CONTINUE;
}
wxPuts(_T("Now enumerating directories:"));
wxDir dir(TESTDIR);
DirPrintTraverser traverser;
- dir.Traverse(traverser, _T(""), wxDIR_DIRS | wxDIR_HIDDEN);
+ dir.Traverse(traverser, wxEmptyString, wxDIR_DIRS | wxDIR_HIDDEN);
}
static void TestDirExists()
wxPrintf(_T("ERROR: can't open test file.\n"));
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestTextFileRead()
wxPrintf(_T("ERROR: can't open '%s'\n"), file.GetName());
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestFileCopy()
wxPuts(_T("ERROR: failed to remove the file"));
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
#endif // TEST_FILE
#include "wx/filename.h"
+#if 0
static void DumpFileName(const wxChar *desc, const wxFileName& fn)
{
wxPuts(desc);
wxPrintf(_T("\t%u: %s\n"), n, dirs[n].c_str());
}
}
+#endif
static struct FileNameInfo
{
isAbsolute ? "absolute" : "relative",
isAbsolute == fni.isAbsolute ? "ok" : "ERROR");
- if ( !fn.Normalize(wxPATH_NORM_ALL, _T(""), fni.format) )
+ if ( !fn.Normalize(wxPATH_NORM_ALL, wxEmptyString, fni.format) )
{
wxPuts(_T("ERROR (couldn't be normalized)"));
}
}
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestFileNameSplit()
if ( ext != fni.ext )
wxPrintf(_T(" (ERROR: ext = '%s')"), fni.ext);
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
}
wxPrintf(_T("'%s'\n"), fn.GetFullPath(fni.format).c_str());
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestFileNameDirManip()
}
}
+#if 0
static void TestFileSetTimes()
{
wxFileName fn(_T("testdata.fc"));
wxPrintf(_T("ERROR: Touch() failed.\n"));
}
}
+#endif
#endif // TEST_FILETIME
if ( *it != i + &i )
wxPuts(_T("Error in erase()\n"));
}
-
+
wxPuts(_T("*** Testing std::list operations finished ***\n"));
}
mimetypes[n].c_str(), desc.c_str(), extsAll.c_str());
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestMimeOverride()
wxPrintf(_T("WARN: mime.types file '%s' doesn't exist, not loaded.\n"),
mimetypes);
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestMimeFilename()
wxString cmd;
if ( !ft->GetOpenCommand(&cmd,
- wxFileType::MessageParameters(fname, _T(""))) )
+ wxFileType::MessageParameters(fname, wxEmptyString)) )
cmd = _T("<no command available>");
else
cmd = wxString(_T('"')) + cmd + _T('"');
}
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestMimeAssociate()
delete ft;
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
#endif // TEST_MIME
wxPrintf(_T("Host name is %s (%s).\n"),
wxGetHostName().c_str(), wxGetFullHostName().c_str());
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestUserInfo()
wxPrintf(_T("Home dir is:\t%s\n"), wxGetHomeDir().c_str());
wxPrintf(_T("Email address:\t%s\n"), wxGetEmailAddress().c_str());
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
#endif // TEST_INFO_FUNCTIONS
-// ----------------------------------------------------------------------------
-// long long
-// ----------------------------------------------------------------------------
-
-#ifdef TEST_LONGLONG
-
-#include "wx/longlong.h"
-#include "wx/timer.h"
-
-// make a 64 bit number from 4 16 bit ones
-#define MAKE_LL(x1, x2, x3, x4) wxLongLong((x1 << 16) | x2, (x3 << 16) | x3)
-
-// get a random 64 bit number
-#define RAND_LL() MAKE_LL(rand(), rand(), rand(), rand())
-
-static const long testLongs[] =
-{
- 0,
- 1,
- -1,
- LONG_MAX,
- LONG_MIN,
- 0x1234,
- -0x1234
-};
-
-#if wxUSE_LONGLONG_WX
-inline bool operator==(const wxLongLongWx& a, const wxLongLongNative& b)
- { return a.GetHi() == b.GetHi() && a.GetLo() == b.GetLo(); }
-inline bool operator==(const wxLongLongNative& a, const wxLongLongWx& b)
- { return a.GetHi() == b.GetHi() && a.GetLo() == b.GetLo(); }
-#endif // wxUSE_LONGLONG_WX
-
-static void TestSpeed()
-{
- static const long max = 100000000;
- long n;
-
- {
- wxStopWatch sw;
-
- long l = 0;
- for ( n = 0; n < max; n++ )
- {
- l += n;
- }
-
- wxPrintf(_T("Summing longs took %ld milliseconds.\n"), sw.Time());
- }
-
-#if wxUSE_LONGLONG_NATIVE
- {
- wxStopWatch sw;
-
- wxLongLong_t l = 0;
- for ( n = 0; n < max; n++ )
- {
- l += n;
- }
-
- wxPrintf(_T("Summing wxLongLong_t took %ld milliseconds.\n"), sw.Time());
- }
-#endif // wxUSE_LONGLONG_NATIVE
-
- {
- wxStopWatch sw;
-
- wxLongLong l;
- for ( n = 0; n < max; n++ )
- {
- l += n;
- }
-
- wxPrintf(_T("Summing wxLongLongs took %ld milliseconds.\n"), sw.Time());
- }
-}
-
-static void TestLongLongConversion()
-{
- wxPuts(_T("*** Testing wxLongLong conversions ***\n"));
-
- wxLongLong a;
- size_t nTested = 0;
- for ( size_t n = 0; n < 100000; n++ )
- {
- a = RAND_LL();
-
-#if wxUSE_LONGLONG_NATIVE
- wxLongLongNative b(a.GetHi(), a.GetLo());
-
- wxASSERT_MSG( a == b, _T("conversions failure") );
-#else
- wxPuts(_T("Can't do it without native long long type, test skipped."));
-
- return;
-#endif // wxUSE_LONGLONG_NATIVE
-
- if ( !(nTested % 1000) )
- {
- putchar('.');
- fflush(stdout);
- }
-
- nTested++;
- }
-
- wxPuts(_T(" done!"));
-}
-
-static void TestMultiplication()
-{
- wxPuts(_T("*** Testing wxLongLong multiplication ***\n"));
-
- wxLongLong a, b;
- size_t nTested = 0;
- for ( size_t n = 0; n < 100000; n++ )
- {
- a = RAND_LL();
- b = RAND_LL();
-
-#if wxUSE_LONGLONG_NATIVE
- wxLongLongNative aa(a.GetHi(), a.GetLo());
- wxLongLongNative bb(b.GetHi(), b.GetLo());
-
- wxASSERT_MSG( a*b == aa*bb, _T("multiplication failure") );
-#else // !wxUSE_LONGLONG_NATIVE
- wxPuts(_T("Can't do it without native long long type, test skipped."));
-
- return;
-#endif // wxUSE_LONGLONG_NATIVE
-
- if ( !(nTested % 1000) )
- {
- putchar('.');
- fflush(stdout);
- }
-
- nTested++;
- }
-
- wxPuts(_T(" done!"));
-}
-
-static void TestDivision()
-{
- wxPuts(_T("*** Testing wxLongLong division ***\n"));
-
- wxLongLong q, r;
- size_t nTested = 0;
- for ( size_t n = 0; n < 100000; n++ )
- {
- // get a random wxLongLong (shifting by 12 the MSB ensures that the
- // multiplication will not overflow)
- wxLongLong ll = MAKE_LL((rand() >> 12), rand(), rand(), rand());
-
- // get a random (but non null) long (not wxLongLong for now) to divide
- // it with
- long l;
- do
- {
- l = rand();
- }
- while ( !l );
-
- q = ll / l;
- r = ll % l;
-
-#if wxUSE_LONGLONG_NATIVE
- wxLongLongNative m(ll.GetHi(), ll.GetLo());
-
- wxLongLongNative p = m / l, s = m % l;
- wxASSERT_MSG( q == p && r == s, _T("division failure") );
-#else // !wxUSE_LONGLONG_NATIVE
- // verify the result
- wxASSERT_MSG( ll == q*l + r, "division failure" );
-#endif // wxUSE_LONGLONG_NATIVE
-
- if ( !(nTested % 1000) )
- {
- putchar('.');
- fflush(stdout);
- }
-
- nTested++;
- }
-
- wxPuts(_T(" done!"));
-}
-
-static void TestAddition()
-{
- wxPuts(_T("*** Testing wxLongLong addition ***\n"));
-
- wxLongLong a, b, c;
- size_t nTested = 0;
- for ( size_t n = 0; n < 100000; n++ )
- {
- a = RAND_LL();
- b = RAND_LL();
- c = a + b;
-
-#if wxUSE_LONGLONG_NATIVE
- wxASSERT_MSG( c == wxLongLongNative(a.GetHi(), a.GetLo()) +
- wxLongLongNative(b.GetHi(), b.GetLo()),
- _T("addition failure") );
-#else // !wxUSE_LONGLONG_NATIVE
- wxASSERT_MSG( c - b == a, "addition failure" );
-#endif // wxUSE_LONGLONG_NATIVE
-
- if ( !(nTested % 1000) )
- {
- putchar('.');
- fflush(stdout);
- }
-
- nTested++;
- }
-
- wxPuts(_T(" done!"));
-}
-
-static void TestBitOperations()
-{
- wxPuts(_T("*** Testing wxLongLong bit operation ***\n"));
-
- wxLongLong ll;
- size_t nTested = 0;
- for ( size_t n = 0; n < 100000; n++ )
- {
- ll = RAND_LL();
-
-#if wxUSE_LONGLONG_NATIVE
- for ( size_t n = 0; n < 33; n++ )
- {
- }
-#else // !wxUSE_LONGLONG_NATIVE
- wxPuts(_T("Can't do it without native long long type, test skipped."));
-
- return;
-#endif // wxUSE_LONGLONG_NATIVE
-
- if ( !(nTested % 1000) )
- {
- putchar('.');
- fflush(stdout);
- }
-
- nTested++;
- }
-
- wxPuts(_T(" done!"));
-}
-
-static void TestLongLongComparison()
-{
-#if wxUSE_LONGLONG_WX
- wxPuts(_T("*** Testing wxLongLong comparison ***\n"));
-
- static const long ls[2] =
- {
- 0x1234,
- -0x1234,
- };
-
- wxLongLongWx lls[2];
- lls[0] = ls[0];
- lls[1] = ls[1];
-
- for ( size_t n = 0; n < WXSIZEOF(testLongs); n++ )
- {
- bool res;
-
- for ( size_t m = 0; m < WXSIZEOF(lls); m++ )
- {
- res = lls[m] > testLongs[n];
- wxPrintf(_T("0x%lx > 0x%lx is %s (%s)\n"),
- ls[m], testLongs[n], res ? "true" : "false",
- res == (ls[m] > testLongs[n]) ? "ok" : "ERROR");
-
- res = lls[m] < testLongs[n];
- wxPrintf(_T("0x%lx < 0x%lx is %s (%s)\n"),
- ls[m], testLongs[n], res ? "true" : "false",
- res == (ls[m] < testLongs[n]) ? "ok" : "ERROR");
-
- res = lls[m] == testLongs[n];
- wxPrintf(_T("0x%lx == 0x%lx is %s (%s)\n"),
- ls[m], testLongs[n], res ? "true" : "false",
- res == (ls[m] == testLongs[n]) ? "ok" : "ERROR");
- }
- }
-#endif // wxUSE_LONGLONG_WX
-}
-
-static void TestLongLongToString()
-{
- wxPuts(_T("*** Testing wxLongLong::ToString() ***\n"));
-
- for ( size_t n = 0; n < WXSIZEOF(testLongs); n++ )
- {
- wxLongLong ll = testLongs[n];
- wxPrintf(_T("%ld == %s\n"), testLongs[n], ll.ToString().c_str());
- }
-
- wxLongLong ll(0x12345678, 0x87654321);
- wxPrintf(_T("0x1234567887654321 = %s\n"), ll.ToString().c_str());
-
- ll.Negate();
- wxPrintf(_T("-0x1234567887654321 = %s\n"), ll.ToString().c_str());
-}
-
-static void TestLongLongPrintf()
-{
- wxPuts(_T("*** Testing wxLongLong printing ***\n"));
-
-#ifdef wxLongLongFmtSpec
- wxLongLong ll = wxLL(0x1234567890abcdef);
- wxString s = wxString::Format(_T("%") wxLongLongFmtSpec _T("x"), ll);
- wxPrintf(_T("0x1234567890abcdef -> %s (%s)\n"),
- s.c_str(), s == _T("1234567890abcdef") ? _T("ok") : _T("ERROR"));
-#else // !wxLongLongFmtSpec
- #error "wxLongLongFmtSpec not defined for this compiler/platform"
-#endif
-}
-
-#undef MAKE_LL
-#undef RAND_LL
-
-#endif // TEST_LONGLONG
-
// ----------------------------------------------------------------------------
// path list
// ----------------------------------------------------------------------------
#include "wx/regex.h"
-static void TestRegExCompile()
-{
- wxPuts(_T("*** Testing RE compilation ***\n"));
-
- static struct RegExCompTestData
- {
- const wxChar *pattern;
- bool correct;
- } regExCompTestData[] =
- {
- { _T("foo"), true },
- { _T("foo("), false },
- { _T("foo(bar"), false },
- { _T("foo(bar)"), true },
- { _T("foo["), false },
- { _T("foo[bar"), false },
- { _T("foo[bar]"), true },
- { _T("foo{"), true },
- { _T("foo{1"), false },
- { _T("foo{bar"), true },
- { _T("foo{1}"), true },
- { _T("foo{1,2}"), true },
- { _T("foo{bar}"), true },
- { _T("foo*"), true },
- { _T("foo**"), false },
- { _T("foo+"), true },
- { _T("foo++"), false },
- { _T("foo?"), true },
- { _T("foo??"), false },
- { _T("foo?+"), false },
- };
-
- wxRegEx re;
- for ( size_t n = 0; n < WXSIZEOF(regExCompTestData); n++ )
- {
- const RegExCompTestData& data = regExCompTestData[n];
- bool ok = re.Compile(data.pattern);
-
- wxPrintf(_T("'%s' is %sa valid RE (%s)\n"),
- data.pattern,
- ok ? _T("") : _T("not "),
- ok == data.correct ? _T("ok") : _T("ERROR"));
- }
-}
-
-static void TestRegExMatch()
-{
- wxPuts(_T("*** Testing RE matching ***\n"));
-
- static struct RegExMatchTestData
- {
- const wxChar *pattern;
- const wxChar *text;
- bool correct;
- } regExMatchTestData[] =
- {
- { _T("foo"), _T("bar"), false },
- { _T("foo"), _T("foobar"), true },
- { _T("^foo"), _T("foobar"), true },
- { _T("^foo"), _T("barfoo"), false },
- { _T("bar$"), _T("barbar"), true },
- { _T("bar$"), _T("barbar "), false },
- };
-
- for ( size_t n = 0; n < WXSIZEOF(regExMatchTestData); n++ )
- {
- const RegExMatchTestData& data = regExMatchTestData[n];
-
- wxRegEx re(data.pattern);
- bool ok = re.Matches(data.text);
-
- wxPrintf(_T("'%s' %s %s (%s)\n"),
- data.pattern,
- ok ? _T("matches") : _T("doesn't match"),
- data.text,
- ok == data.correct ? _T("ok") : _T("ERROR"));
- }
-}
-
-static void TestRegExSubmatch()
-{
- wxPuts(_T("*** Testing RE subexpressions ***\n"));
-
- wxRegEx re(_T("([[:alpha:]]+) ([[:alpha:]]+) ([[:digit:]]+).*([[:digit:]]+)$"));
- if ( !re.IsValid() )
- {
- wxPuts(_T("ERROR: compilation failed."));
- return;
- }
-
- wxString text = _T("Fri Jul 13 18:37:52 CEST 2001");
-
- if ( !re.Matches(text) )
- {
- wxPuts(_T("ERROR: match expected."));
- }
- else
- {
- wxPrintf(_T("Entire match: %s\n"), re.GetMatch(text).c_str());
-
- wxPrintf(_T("Date: %s/%s/%s, wday: %s\n"),
- re.GetMatch(text, 3).c_str(),
- re.GetMatch(text, 2).c_str(),
- re.GetMatch(text, 4).c_str(),
- re.GetMatch(text, 1).c_str());
- }
-}
-
-static void TestRegExReplacement()
-{
- wxPuts(_T("*** Testing RE replacement ***"));
-
- static struct RegExReplTestData
- {
- const wxChar *text;
- const wxChar *repl;
- const wxChar *result;
- size_t count;
- } regExReplTestData[] =
- {
- { _T("foo123"), _T("bar"), _T("bar"), 1 },
- { _T("foo123"), _T("\\2\\1"), _T("123foo"), 1 },
- { _T("foo_123"), _T("\\2\\1"), _T("123foo"), 1 },
- { _T("123foo"), _T("bar"), _T("123foo"), 0 },
- { _T("123foo456foo"), _T("&&"), _T("123foo456foo456foo"), 1 },
- { _T("foo123foo123"), _T("bar"), _T("barbar"), 2 },
- { _T("foo123_foo456_foo789"), _T("bar"), _T("bar_bar_bar"), 3 },
- };
-
- const wxChar *pattern = _T("([a-z]+)[^0-9]*([0-9]+)");
- wxRegEx re(pattern);
-
- wxPrintf(_T("Using pattern '%s' for replacement.\n"), pattern);
-
- for ( size_t n = 0; n < WXSIZEOF(regExReplTestData); n++ )
- {
- const RegExReplTestData& data = regExReplTestData[n];
-
- wxString text = data.text;
- size_t nRepl = re.Replace(&text, data.repl);
-
- wxPrintf(_T("%s =~ s/RE/%s/g: %u match%s, result = '%s' ("),
- data.text, data.repl,
- nRepl, nRepl == 1 ? _T("") : _T("es"),
- text.c_str());
- if ( text == data.result && nRepl == data.count )
- {
- wxPuts(_T("ok)"));
- }
- else
- {
- wxPrintf(_T("ERROR: should be %u and '%s')\n"),
- data.count, data.result);
- }
- }
-}
-
static void TestRegExInteractive()
{
wxPuts(_T("*** Testing RE interactively ***"));
* This exercises the output formatting code.
*/
+wxChar *PointerNull = NULL;
+
static void
fp_test (void)
{
}
}
}
- wxPrintf(_T("%10s\n"), (wxChar *) NULL);
- wxPrintf(_T("%-10s\n"), (wxChar *) NULL);
+ wxPrintf(_T("%10s\n"), PointerNull);
+ wxPrintf(_T("%-10s\n"), PointerNull);
}
static void TestPrintf()
static wxChar longstr[] = _T("Good morning, Doctor Chandra. This is Hal. \
I am ready for my first lesson today.");
int result = 0;
+ wxString test_format;
fmtchk(_T("%.4x"));
fmtchk(_T("%04x"));
fmtst2chk(_T("%*.*x"));
fmtst2chk(_T("%0*.*x"));
- wxPrintf(_T("bad format:\t\"%b\"\n"));
+ wxString bad_format = _T("bad format:\t\"%b\"\n");
+ wxPrintf(bad_format.c_str());
wxPrintf(_T("nil pointer (padded):\t\"%10p\"\n"), (void *) NULL);
wxPrintf(_T("decimal negative:\t\"%d\"\n"), -2345);
wxPrintf(_T("long octal negative:\t\"%lo\"\n"), -2345L);
wxPrintf(_T("long unsigned decimal number:\t\"%lu\"\n"), -123456L);
wxPrintf(_T("zero-padded LDN:\t\"%010ld\"\n"), -123456L);
- wxPrintf(_T("left-adjusted ZLDN:\t\"%-010ld\"\n"), -123456);
+ test_format = _T("left-adjusted ZLDN:\t\"%-010ld\"\n");
+ wxPrintf(test_format.c_str(), -123456);
wxPrintf(_T("space-padded LDN:\t\"%10ld\"\n"), -123456L);
wxPrintf(_T("left-adjusted SLDN:\t\"%-10ld\"\n"), -123456L);
- wxPrintf(_T("zero-padded string:\t\"%010s\"\n"), shortstr);
- wxPrintf(_T("left-adjusted Z string:\t\"%-010s\"\n"), shortstr);
+ test_format = _T("zero-padded string:\t\"%010s\"\n");
+ wxPrintf(test_format.c_str(), shortstr);
+ test_format = _T("left-adjusted Z string:\t\"%-010s\"\n");
+ wxPrintf(test_format.c_str(), shortstr);
wxPrintf(_T("space-padded string:\t\"%10s\"\n"), shortstr);
wxPrintf(_T("left-adjusted S string:\t\"%-10s\"\n"), shortstr);
- wxPrintf(_T("null string:\t\"%s\"\n"), (wxChar *)NULL);
+ wxPrintf(_T("null string:\t\"%s\"\n"), PointerNull);
wxPrintf(_T("limited string:\t\"%.22s\"\n"), longstr);
wxPrintf(_T("e-style >= 1:\t\"%e\"\n"), 12.34);
fflush (stdout);
}
+#ifndef __WATCOMC__
+ // Open Watcom cause compiler error here
+ // Error! E173: col(24) floating-point constant too small to represent
wxPrintf (_T("%15.5e\n"), 4.9406564584124654e-324);
+#endif
#define FORMAT _T("|%12.4f|%12.4e|%12.4g|\n")
wxPrintf (FORMAT, 0.0, 0.0, 0.0);
result = 1;
wxPuts (_T("\tFAILED"));
}
- wxPuts (_T(""));
+ wxUnusedVar(result);
+ wxPuts (wxEmptyString);
}
#endif // wxLongLong_t
{
int prec;
wxChar buf[100];
+ wxString test_format;
prec = 0;
wxSprintf (buf, _T("%.*g"), prec, 3.3);
if (wxStrcmp (buf, _T(" 3")) != 0)
wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 3"));
prec = 3;
- wxSprintf (buf, _T("%04.*o"), prec, 33);
+ test_format = _T("%04.*o");
+ wxSprintf (buf, test_format.c_str(), prec, 33);
if (wxStrcmp (buf, _T(" 041")) != 0)
wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 041"));
prec = 7;
- wxSprintf (buf, _T("%09.*u"), prec, 33);
+ test_format = _T("%09.*u");
+ wxSprintf (buf, test_format.c_str(), prec, 33);
if (wxStrcmp (buf, _T(" 0000033")) != 0)
wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 0000033"));
prec = 3;
- wxSprintf (buf, _T("%04.*x"), prec, 33);
+ test_format = _T("%04.*x");
+ wxSprintf (buf, test_format.c_str(), prec, 33);
if (wxStrcmp (buf, _T(" 021")) != 0)
wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 021"));
prec = 3;
- wxSprintf (buf, _T("%04.*X"), prec, 33);
+ test_format = _T("%04.*X");
+ wxSprintf (buf, test_format.c_str(), prec, 33);
if (wxStrcmp (buf, _T(" 021")) != 0)
wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 021"));
}
#include "wx/confbase.h"
#include "wx/msw/regconf.h"
+#if 0
static void TestRegConfWrite()
{
- wxConfig *config = new wxConfig("myapp");
- config->SetPath("/group1");
- config->Write("entry1", "foo");
- config->SetPath("/group2");
- config->Write("entry1", "bar");
+ wxConfig *config = new wxConfig(_T("myapp"));
+ config->SetPath(_T("/group1"));
+ config->Write(_T("entry1"), _T("foo"));
+ config->SetPath(_T("/group2"));
+ config->Write(_T("entry1"), _T("bar"));
}
+#endif
static void TestRegConfRead()
{
- wxConfig *config = new wxConfig("myapp");
+ wxConfig *config = new wxConfig(_T("myapp"));
wxString str;
long dummy;
- config->SetPath("/");
- puts("Enumerating / subgroups:");
+ config->SetPath(_T("/"));
+ wxPuts(_T("Enumerating / subgroups:"));
bool bCont = config->GetFirstGroup(str, dummy);
while(bCont)
{
- puts(str);
+ wxPuts(str);
bCont = config->GetNextGroup(str, dummy);
}
}
wxPrintf(_T(" (raw value '%s')"), val.c_str());
}
- putchar('\n');
+ wxPutchar('\n');
cont = key.GetNextValue(value, dummy);
}
{
wxPuts(_T("*** Testing wxFileInputStream ***"));
- static const wxChar *filename = _T("testdata.fs");
+ static const wxString filename = _T("testdata.fs");
{
wxFileOutputStream fsOut(filename);
fsOut.Write("foo", 3);
wxPrintf(_T("File stream size: %u\n"), fsIn.GetSize());
while ( !fsIn.Eof() )
{
- putchar(fsIn.GetC());
+ wxPutchar(fsIn.GetC());
}
if ( !wxRemoveFile(filename) )
{
- wxPrintf(_T("ERROR: failed to remove the file '%s'.\n"), filename);
+ wxPrintf(_T("ERROR: failed to remove the file '%s'.\n"), filename.c_str());
}
wxPuts(_T("\n*** wxFileInputStream test done ***"));
wxPrintf(_T("Memory stream size: %u\n"), memInpStream.GetSize());
while ( !memInpStream.Eof() )
{
- putchar(memInpStream.GetC());
+ wxPutchar(memInpStream.GetC());
}
wxPuts(_T("\n*** wxMemoryInputStream test done ***"));
}
}
- putchar('.');
+ wxPutchar('.');
fflush(stdout);
}
if ( !!value )
wxPrintf(_T(" = %s"), value.c_str());
- putchar('\n');
+ wxPutchar('\n');
DumpVObject(level + 1, *vcObj);
// wide char and Unicode support
// ----------------------------------------------------------------------------
-#ifdef TEST_UNICODE
-
-static void TestUnicodeToFromAscii()
-{
- wxPuts(_T("Testing wxString::To/FromAscii()\n"));
-
- static const char *msg = "Hello, world!";
- wxString s = wxString::FromAscii(msg);
-
- wxPrintf(_T("Message in Unicode: %s\n"), s.c_str());
- printf("Message in ASCII: %s\n", (const char *)s.ToAscii());
-
- wxPutchar(_T('\n'));
-}
-
-#include "wx/textfile.h"
-
-static void TestUnicodeTextFileRead()
-{
- wxPuts(_T("Testing wxTextFile in Unicode build\n"));
-
- wxTextFile file;
- if ( file.Open(_T("testdata.fc"), wxConvLocal) )
- {
- const size_t count = file.GetLineCount();
- for ( size_t n = 0; n < count; n++ )
- {
- const wxString& s = file[n];
-
- wxPrintf(_T("Line %u: \"%s\" (len %u, last char = '%c')\n"),
- (unsigned)n, s.c_str(), (unsigned)s.length(), s.Last());
- }
- }
-}
-
-#endif // TEST_UNICODE
-
#ifdef TEST_WCHAR
#include "wx/strconv.h"
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestEncodingConverter()
wxPrintf(_T("The same KOI8-R string using wxEC: %s\n"), buf);
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
#endif // TEST_WCHAR
{
wxPuts(_T("*** Testing ZIP reading ***\n"));
- static const wxChar *filename = _T("foo");
+ static const wxString filename = _T("foo");
wxZipInputStream istr(TESTFILE_ZIP, filename);
wxPrintf(_T("Archive size: %u\n"), istr.GetSize());
- wxPrintf(_T("Dumping the file '%s':\n"), filename);
+ wxPrintf(_T("Dumping the file '%s':\n"), filename.c_str());
while ( !istr.Eof() )
{
- putchar(istr.GetC());
+ wxPutchar(istr.GetC());
fflush(stdout);
}
#endif // TEST_ZIP
// ----------------------------------------------------------------------------
-// ZLIB stream
+// date time
// ----------------------------------------------------------------------------
-#ifdef TEST_ZLIB
+#ifdef TEST_DATETIME
-#include "wx/zstream.h"
-#include "wx/wfstream.h"
+#include <math.h>
-static const wxChar *FILENAME_GZ = _T("test.gz");
-static const wxChar *TEST_DATA = _T("hello and hello and hello and hello and hello");
+#include "wx/datetime.h"
-static void TestZlibStreamWrite()
+// the test data
+struct Date
{
- wxPuts(_T("*** Testing Zlib stream reading ***\n"));
+ wxDateTime::wxDateTime_t day;
+ wxDateTime::Month month;
+ int year;
+ wxDateTime::wxDateTime_t hour, min, sec;
+ double jdn;
+ wxDateTime::WeekDay wday;
+ time_t gmticks, ticks;
- wxFileOutputStream fileOutStream(FILENAME_GZ);
- wxZlibOutputStream ostr(fileOutStream);
- wxPrintf(_T("Compressing the test string... "));
- ostr.Write(TEST_DATA, wxStrlen(TEST_DATA) + 1);
- if ( !ostr )
+ void Init(const wxDateTime::Tm& tm)
{
- wxPuts(_T("(ERROR: failed)"));
+ day = tm.mday;
+ month = tm.mon;
+ year = tm.year;
+ hour = tm.hour;
+ min = tm.min;
+ sec = tm.sec;
+ jdn = 0.0;
+ gmticks = ticks = -1;
}
- else
+
+ wxDateTime DT() const
+ { return wxDateTime(day, month, year, hour, min, sec); }
+
+ bool SameDay(const wxDateTime::Tm& tm) const
{
- wxPuts(_T("(ok)"));
- }
-
- wxPuts(_T("\n----- done ------"));
-}
-
-static void TestZlibStreamRead()
-{
- wxPuts(_T("*** Testing Zlib stream reading ***\n"));
-
- wxFileInputStream fileInStream(FILENAME_GZ);
- wxZlibInputStream istr(fileInStream);
- wxPrintf(_T("Archive size: %u\n"), istr.GetSize());
-
- wxPuts(_T("Dumping the file:"));
- while ( !istr.Eof() )
- {
- putchar(istr.GetC());
- fflush(stdout);
- }
-
- wxPuts(_T("\n----- done ------"));
-}
-
-#endif // TEST_ZLIB
-
-// ----------------------------------------------------------------------------
-// Gzip streams
-// ----------------------------------------------------------------------------
-
-#ifdef TEST_GZIP
-
-#include "wx/wfstream.h"
-#include "wx/gzstream.h"
-#include "wx/filename.h"
-#include "wx/txtstrm.h"
-
-// Reads two input streams and verifies that they are the same (and non-emtpy)
-//
-void GzipVerify(wxInputStream &in1, wxInputStream &in2)
-{
- if (!in1 || !in2) {
- wxPuts(_T(" Can't verify"));
- return;
- }
-
- const int BUFSIZE = 8192;
- wxCharBuffer buf1(BUFSIZE);
- wxCharBuffer buf2(BUFSIZE);
- bool none = true;
-
- for (;;) {
- int n1 = in1.Read(buf1.data(), BUFSIZE).LastRead();
- int n2 = in2.Read(buf2.data(), BUFSIZE).LastRead();
-
- if (n1 != n2 || (n1 && memcmp(buf1, buf2, n1) != 0) || (!n1 && none)) {
- wxPuts(_T(" Failure"));
- break;
- }
-
- if (!n1) {
- wxPuts(_T(" Success"));
- break;
- }
-
- none = false;
- }
-
- while (in1.IsOk())
- in1.Read(buf1.data(), BUFSIZE);
- while (in2.IsOk())
- in2.Read(buf2.data(), BUFSIZE);
-}
-
-// Write a gzip file and read it back.
-//
-void TestGzip()
-{
- wxPuts(_T("*** Testing gzip streams ***\n"));
-
- const wxString testname = _T("gziptest");
- const wxString gzipname = testname + _T(".gz");
-
- // write some random test data to a testfile
- wxPuts(_T("Writing random test data to ") + testname + _T("..."));
- {
- wxFFileOutputStream outstream(testname);
- wxTextOutputStream textout(outstream);
-
- for (int i = 0; i < 1000 && outstream.Ok(); i++)
- textout << rand() << rand() << rand() << rand() << endl;
-
- wxPuts(_T(" Done"));
- }
-
- wxFileName fn(testname);
- wxDateTime dt = fn.GetModificationTime();
- wxFFileInputStream instream(testname);
-
- // try writing a gzip file
- wxPuts(_T("Writing ") + gzipname + _T(" using wxGzipOutputStream..."));
- {
- wxFFileOutputStream outstream(gzipname);
- wxGzipOutputStream gzip(outstream, testname, dt);
-
- if (!gzip.Write(instream))
- wxPuts(_T(" Failure"));
- else
- wxPuts(_T(" Success"));
- }
-
- // try reading the gzip file
- wxPuts(_T("Reading ") + gzipname + _T(" using wxGzipInputStream..."));
- {
- instream.SeekI(0);
- wxFFileInputStream instream2(gzipname);
- wxGzipInputStream gzip(instream2);
- GzipVerify(instream, gzip);
-
- if (gzip.GetName() != fn.GetFullName())
- wxPuts(gzipname + _T(" contains incorrect filename: ")
- + gzip.GetName());
- if (dt.IsValid() && gzip.GetDateTime() != dt)
- wxPuts(gzipname + _T(" contains incorrect timestamp: ")
- + gzip.GetDateTime().Format());
- }
-
-#ifdef __UNIX__
- // then verify it using gzip program if it is in the path
- wxPuts(_T("Reading ") + gzipname + _T(" using gzip program..."));
- wxFFile file(popen((_T("gzip -d -c ") + gzipname).mb_str(), "r"));
- if (file.fp()) {
- wxFFileInputStream instream2(file);
- instream.SeekI(0);
- GzipVerify(instream, instream2);
- pclose(file.fp());
- file.Detach();
- }
-
- // try reading a gzip created by gzip program
- wxPuts(_T("Reading output of gzip program using wxGzipInputStream..."));
- file.Attach(popen((_T("gzip -c ") + testname).mb_str(), "r"));
- if (file.fp()) {
- wxFFileInputStream instream2(file);
- wxGzipInputStream gzip(instream2);
- instream.SeekI(0);
- GzipVerify(instream, gzip);
- pclose(file.fp());
- file.Detach();
- }
-#endif
-
- wxPuts(_T("\n--- Done gzip streams ---"));
-}
-
-#endif // TEST_GZIP
-
-// ----------------------------------------------------------------------------
-// date time
-// ----------------------------------------------------------------------------
-
-#ifdef TEST_DATETIME
-
-#include <math.h>
-
-#include "wx/datetime.h"
-
-// the test data
-struct Date
-{
- wxDateTime::wxDateTime_t day;
- wxDateTime::Month month;
- int year;
- wxDateTime::wxDateTime_t hour, min, sec;
- double jdn;
- wxDateTime::WeekDay wday;
- time_t gmticks, ticks;
-
- void Init(const wxDateTime::Tm& tm)
- {
- day = tm.mday;
- month = tm.mon;
- year = tm.year;
- hour = tm.hour;
- min = tm.min;
- sec = tm.sec;
- jdn = 0.0;
- gmticks = ticks = -1;
- }
-
- wxDateTime DT() const
- { return wxDateTime(day, month, year, hour, min, sec); }
-
- bool SameDay(const wxDateTime::Tm& tm) const
- {
- return day == tm.mday && month == tm.mon && year == tm.year;
+ return day == tm.mday && month == tm.mon && year == tm.year;
}
wxString Format() const
}
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
// test conversions to JDN &c
}
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
// test SetToWeekDay()
struct WeekDateTestData
wxPuts(_T("\n*** wxDateTime DST test ***"));
wxPrintf(_T("DST is%s in effect now.\n\n"),
- wxDateTime::Now().IsDST() ? _T("") : _T(" not"));
+ wxDateTime::Now().IsDST() ? wxEmptyString : _T(" not"));
// taken from http://www.energy.ca.gov/daylightsaving.html
static const Date datesDST[2][2004 - 1900 + 1] =
}
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
for ( year = 1990; year < 2005; year++ )
{
for ( size_t d = 0; d < WXSIZEOF(formatTestDates) + 1; d++ )
{
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
wxDateTime dt = d == 0 ? wxDateTime::Now() : formatTestDates[d - 1].DT();
for ( size_t n = 0; n < WXSIZEOF(formatTestFormats); n++ )
}
if ( !(i % 100) )
- putchar('.');
+ wxPutchar('.');
}
wxPuts(_T(", done"));
wxPrintf(_T(" (ERROR: should be %s)\n"), dt2.FormatISODate().c_str());
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
}
wxPrintf(_T("\t%s\n"), hol[n].Format(format).c_str());
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestTimeZoneBug()
date += wxDateSpan::Day();
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestTimeSpanFormat()
ts2.Format(formats[n]).c_str());
}
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
#endif // TEST_DATETIME
{
wxPuts(_T("\n*** wxTextInputStream test ***"));
- wxFileInputStream fsIn(_T("testdata.fc"));
+ wxString filename = _T("testdata.fc");
+ wxFileInputStream fsIn(filename);
if ( !fsIn.Ok() )
{
wxPuts(_T("ERROR: couldn't open file."));
break;
}
- putchar(m_ch);
+ wxPutchar(m_ch);
fflush(stdout);
wxThread::Sleep(100);
// wait until all threads terminate
gs_cond.Wait();
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestJoinableThreads()
// wait until the thread terminates
gs_cond.Wait();
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
static void TestThreadDelete()
wxPuts(_T("\nDeleted a joinable thread which already terminated."));
- wxPuts(_T(""));
+ wxPuts(wxEmptyString);
}
class MyWaitingThread : public wxThread
int m_i;
};
-WX_DEFINE_ARRAY(wxThread *, ArrayThreads);
+WX_DEFINE_ARRAY_PTR(wxThread *, ArrayThreads);
static void TestSemaphore()
{
#endif // TEST_THREADS
-// ----------------------------------------------------------------------------
-// arrays
-// ----------------------------------------------------------------------------
-
-#ifdef TEST_ARRAYS
-
-#include "wx/dynarray.h"
-
-typedef unsigned short ushort;
-
-static int MyStringCompare(wxString* s1, wxString* s2)
-{
- return wxStrcmp(s1->c_str(), s2->c_str());
-}
-
-static int MyStringReverseCompare(wxString* s1, wxString* s2)
-{
- return -wxStrcmp(s1->c_str(), s2->c_str());
-}
-
-
-#define DefineCompare(name, T) \
- \
-int wxCMPFUNC_CONV name ## CompareValues(T first, T second) \
-{ \
- return first - second; \
-} \
- \
-int wxCMPFUNC_CONV name ## Compare(T* first, T* second) \
-{ \
- return *first - *second; \
-} \
- \
-int wxCMPFUNC_CONV name ## RevCompare(T* first, T* second) \
-{ \
- return *second - *first; \
-} \
-
-DefineCompare(UShort, ushort);
-DefineCompare(Int, int);
-
-// test compilation of all macros
-WX_DEFINE_ARRAY_SHORT(ushort, wxArrayUShort);
-WX_DEFINE_SORTED_ARRAY_SHORT(ushort, wxSortedArrayUShortNoCmp);
-WX_DEFINE_SORTED_ARRAY_CMP_SHORT(ushort, UShortCompareValues, wxSortedArrayUShort);
-WX_DEFINE_SORTED_ARRAY_CMP_INT(int, IntCompareValues, wxSortedArrayInt);
-
-WX_DECLARE_OBJARRAY(Bar, ArrayBars);
-#include "wx/arrimpl.cpp"
-WX_DEFINE_OBJARRAY(ArrayBars);
-
-static void PrintArray(const wxChar* name, const wxArrayString& array)
-{
- wxPrintf(_T("Dump of the array '%s'\n"), name);
-
- size_t nCount = array.GetCount();
- for ( size_t n = 0; n < nCount; n++ )
- {
- wxPrintf(_T("\t%s[%u] = '%s'\n"), name, n, array[n].c_str());
- }
-}
-
-static void PrintArray(const wxChar* name, const wxSortedArrayString& array)
-{
- wxPrintf(_T("Dump of the array '%s'\n"), name);
-
- size_t nCount = array.GetCount();
- for ( size_t n = 0; n < nCount; n++ )
- {
- wxPrintf(_T("\t%s[%u] = '%s'\n"), name, n, array[n].c_str());
- }
-}
-
-int wxCMPFUNC_CONV StringLenCompare(const wxString& first,
- const wxString& second)
-{
- return first.length() - second.length();
-}
-
-#define TestArrayOf(name) \
- \
-static void PrintArray(const wxChar* name, const wxSortedArray##name & array) \
-{ \
- wxPrintf(_T("Dump of the array '%s'\n"), name); \
- \
- size_t nCount = array.GetCount(); \
- for ( size_t n = 0; n < nCount; n++ ) \
- { \
- wxPrintf(_T("\t%s[%u] = %d\n"), name, n, array[n]); \
- } \
-} \
- \
-static void PrintArray(const wxChar* name, const wxArray##name & array) \
-{ \
- wxPrintf(_T("Dump of the array '%s'\n"), name); \
- \
- size_t nCount = array.GetCount(); \
- for ( size_t n = 0; n < nCount; n++ ) \
- { \
- wxPrintf(_T("\t%s[%u] = %d\n"), name, n, array[n]); \
- } \
-} \
- \
-static void TestArrayOf ## name ## s() \
-{ \
- wxPrintf(_T("*** Testing wxArray%s ***\n"), #name); \
- \
- wxArray##name a; \
- a.Add(1); \
- a.Add(17,2); \
- a.Add(5,3); \
- a.Add(3,4); \
- \
- wxPuts(_T("Initially:")); \
- PrintArray(_T("a"), a); \
- \
- wxPuts(_T("After sort:")); \
- a.Sort(name ## Compare); \
- PrintArray(_T("a"), a); \
- \
- wxPuts(_T("After reverse sort:")); \
- a.Sort(name ## RevCompare); \
- PrintArray(_T("a"), a); \
- \
- wxSortedArray##name b; \
- b.Add(1); \
- b.Add(17); \
- b.Add(5); \
- b.Add(3); \
- \
- wxPuts(_T("Sorted array initially:")); \
- PrintArray(_T("b"), b); \
-}
-
-TestArrayOf(UShort);
-TestArrayOf(Int);
-
-static void TestStlArray()
-{
- wxPuts(_T("*** Testing std::vector operations ***\n"));
-
- {
- wxArrayInt list1;
- wxArrayInt::iterator it, en;
- wxArrayInt::reverse_iterator rit, ren;
- int i;
- for ( i = 0; i < 5; ++i )
- list1.push_back(i);
-
- for ( it = list1.begin(), en = list1.end(), i = 0;
- it != en; ++it, ++i )
- if ( *it != i )
- wxPuts(_T("Error in iterator\n"));
-
- for ( rit = list1.rbegin(), ren = list1.rend(), i = 4;
- rit != ren; ++rit, --i )
- if ( *rit != i )
- wxPuts(_T("Error in reverse_iterator\n"));
-
- if ( *list1.rbegin() != *(list1.end()-1) ||
- *list1.begin() != *(list1.rend()-1) )
- wxPuts(_T("Error in iterator/reverse_iterator\n"));
-
- it = list1.begin()+1;
- rit = list1.rbegin()+1;
- if ( *list1.begin() != *(it-1) ||
- *list1.rbegin() != *(rit-1) )
- wxPuts(_T("Error in iterator/reverse_iterator\n"));
-
- if ( list1.front() != 0 || list1.back() != 4 )
- wxPuts(_T("Error in front()/back()\n"));
-
- list1.erase(list1.begin());
- list1.erase(list1.end()-1);
-
- for ( it = list1.begin(), en = list1.end(), i = 1;
- it != en; ++it, ++i )
- if ( *it != i )
- wxPuts(_T("Error in erase()\n"));
- }
-
- wxPuts(_T("*** Testing std::vector operations finished ***\n"));
-}
-
-static void TestArrayOfObjects()
-{
- wxPuts(_T("*** Testing wxObjArray ***\n"));
-
- {
- ArrayBars bars;
- Bar bar(_T("second bar (two copies!)"));
-
- wxPrintf(_T("Initially: %u objects in the array, %u objects total.\n"),
- bars.GetCount(), Bar::GetNumber());
-
- bars.Add(new Bar(_T("first bar")));
- bars.Add(bar,2);
-
- wxPrintf(_T("Now: %u objects in the array, %u objects total.\n"),
- bars.GetCount(), Bar::GetNumber());
-
- bars.RemoveAt(1, bars.GetCount() - 1);
-
- wxPrintf(_T("After removing all but first element: %u objects in the ")
- _T("array, %u objects total.\n"),
- bars.GetCount(), Bar::GetNumber());
-
- bars.Empty();
-
- wxPrintf(_T("After Empty(): %u objects in the array, %u objects total.\n"),
- bars.GetCount(), Bar::GetNumber());
- }
-
- wxPrintf(_T("Finally: no more objects in the array, %u objects total.\n"),
- Bar::GetNumber());
-}
-
-#endif // TEST_ARRAYS
-
-// ----------------------------------------------------------------------------
-// strings
-// ----------------------------------------------------------------------------
-
-#ifdef TEST_STRINGS
-
-#include "wx/timer.h"
-#include "wx/tokenzr.h"
-
-static void TestStringConstruction()
-{
- wxPuts(_T("*** Testing wxString constructores ***"));
-
- #define TEST_CTOR(args, res) \
- { \
- wxString s args ; \
- wxPrintf(_T("wxString%s = %s "), #args, s.c_str()); \
- if ( s == res ) \
- { \
- wxPuts(_T("(ok)")); \
- } \
- else \
- { \
- wxPrintf(_T("(ERROR: should be %s)\n"), res); \
- } \
- }
-
- TEST_CTOR((_T('Z'), 4), _T("ZZZZ"));
- TEST_CTOR((_T("Hello"), 4), _T("Hell"));
- TEST_CTOR((_T("Hello"), 5), _T("Hello"));
- // TEST_CTOR((_T("Hello"), 6), _T("Hello")); -- should give assert failure
-
- static const wxChar *s = _T("?really!");
- const wxChar *start = wxStrchr(s, _T('r'));
- const wxChar *end = wxStrchr(s, _T('!'));
- TEST_CTOR((start, end), _T("really"));
-
- wxPuts(_T(""));
-}
-
-static void TestString()
-{
- wxStopWatch sw;
-
- wxString a, b, c;
-
- a.reserve (128);
- b.reserve (128);
- c.reserve (128);
-
- for (int i = 0; i < 1000000; ++i)
- {
- a = _T("Hello");
- b = _T(" world");
- c = _T("! How'ya doin'?");
- a += b;
- a += c;
- c = _T("Hello world! What's up?");
- if (c != a)
- c = _T("Doh!");
- }
-
- wxPrintf(_T("TestString elapsed time: %ld\n"), sw.Time());
-}
-
-static void TestPChar()
-{
- wxStopWatch sw;
-
- wxChar a [128];
- wxChar b [128];
- wxChar c [128];
-
- for (int i = 0; i < 1000000; ++i)
- {
- wxStrcpy (a, _T("Hello"));
- wxStrcpy (b, _T(" world"));
- wxStrcpy (c, _T("! How'ya doin'?"));
- wxStrcat (a, b);
- wxStrcat (a, c);
- wxStrcpy (c, _T("Hello world! What's up?"));
- if (wxStrcmp (c, a) == 0)
- wxStrcpy (c, _T("Doh!"));
- }
-
- wxPrintf(_T("TestPChar elapsed time: %ld\n"), sw.Time());
-}
-
-static void TestStringSub()
-{
- wxString s(_T("Hello, world!"));
-
- wxPuts(_T("*** Testing wxString substring extraction ***"));
-
- wxPrintf(_T("String = '%s'\n"), s.c_str());
- wxPrintf(_T("Left(5) = '%s'\n"), s.Left(5).c_str());
- wxPrintf(_T("Right(6) = '%s'\n"), s.Right(6).c_str());
- wxPrintf(_T("Mid(3, 5) = '%s'\n"), s(3, 5).c_str());
- wxPrintf(_T("Mid(3) = '%s'\n"), s.Mid(3).c_str());
- wxPrintf(_T("substr(3, 5) = '%s'\n"), s.substr(3, 5).c_str());
- wxPrintf(_T("substr(3) = '%s'\n"), s.substr(3).c_str());
-
- static const wxChar *prefixes[] =
- {
- _T("Hello"),
- _T("Hello, "),
- _T("Hello, world!"),
- _T("Hello, world!!!"),
- _T(""),
- _T("Goodbye"),
- _T("Hi"),
- };
-
- for ( size_t n = 0; n < WXSIZEOF(prefixes); n++ )
- {
- wxString prefix = prefixes[n], rest;
- bool rc = s.StartsWith(prefix, &rest);
- wxPrintf(_T("StartsWith('%s') = %s"), prefix.c_str(), rc ? _T("true") : _T("false"));
- if ( rc )
- {
- wxPrintf(_T(" (the rest is '%s')\n"), rest.c_str());
- }
- else
- {
- putchar('\n');
- }
- }
-
- wxPuts(_T(""));
-}
-
-static void TestStringFormat()
-{
- wxPuts(_T("*** Testing wxString formatting ***"));
-
- wxString s;
- s.Printf(_T("%03d"), 18);
-
- wxPrintf(_T("Number 18: %s\n"), wxString::Format(_T("%03d"), 18).c_str());
- wxPrintf(_T("Number 18: %s\n"), s.c_str());
-
- wxPuts(_T(""));
-}
-
-// returns "not found" for npos, value for all others
-static wxString PosToString(size_t res)
-{
- wxString s = res == wxString::npos ? wxString(_T("not found"))
- : wxString::Format(_T("%u"), res);
- return s;
-}
-
-static void TestStringFind()
-{
- wxPuts(_T("*** Testing wxString find() functions ***"));
-
- static const wxChar *strToFind = _T("ell");
- static const struct StringFindTest
- {
- const wxChar *str;
- size_t start,
- result; // of searching "ell" in str
- } findTestData[] =
- {
- { _T("Well, hello world"), 0, 1 },
- { _T("Well, hello world"), 6, 7 },
- { _T("Well, hello world"), 9, wxString::npos },
- };
-
- for ( size_t n = 0; n < WXSIZEOF(findTestData); n++ )
- {
- const StringFindTest& ft = findTestData[n];
- size_t res = wxString(ft.str).find(strToFind, ft.start);
-
- wxPrintf(_T("Index of '%s' in '%s' starting from %u is %s "),
- strToFind, ft.str, ft.start, PosToString(res).c_str());
-
- size_t resTrue = ft.result;
- if ( res == resTrue )
- {
- wxPuts(_T("(ok)"));
- }
- else
- {
- wxPrintf(_T("(ERROR: should be %s)\n"),
- PosToString(resTrue).c_str());
- }
- }
-
- wxPuts(_T(""));
-}
-
-static void TestStringTokenizer()
-{
- wxPuts(_T("*** Testing wxStringTokenizer ***"));
-
- static const wxChar *modeNames[] =
- {
- _T("default"),
- _T("return empty"),
- _T("return all empty"),
- _T("with delims"),
- _T("like strtok"),
- };
-
- static const struct StringTokenizerTest
- {
- const wxChar *str; // string to tokenize
- const wxChar *delims; // delimiters to use
- size_t count; // count of token
- wxStringTokenizerMode mode; // how should we tokenize it
- } tokenizerTestData[] =
- {
- { _T(""), _T(" "), 0 },
- { _T("Hello, world"), _T(" "), 2 },
- { _T("Hello, world "), _T(" "), 2 },
- { _T("Hello, world"), _T(","), 2 },
- { _T("Hello, world!"), _T(",!"), 2 },
- { _T("Hello,, world!"), _T(",!"), 3 },
- { _T("Hello, world!"), _T(",!"), 3, wxTOKEN_RET_EMPTY_ALL },
- { _T("username:password:uid:gid:gecos:home:shell"), _T(":"), 7 },
- { _T("1 \t3\t4 6 "), wxDEFAULT_DELIMITERS, 4 },
- { _T("1 \t3\t4 6 "), wxDEFAULT_DELIMITERS, 6, wxTOKEN_RET_EMPTY },
- { _T("1 \t3\t4 6 "), wxDEFAULT_DELIMITERS, 9, wxTOKEN_RET_EMPTY_ALL },
- { _T("01/02/99"), _T("/-"), 3 },
- { _T("01-02/99"), _T("/-"), 3, wxTOKEN_RET_DELIMS },
- };
-
- for ( size_t n = 0; n < WXSIZEOF(tokenizerTestData); n++ )
- {
- const StringTokenizerTest& tt = tokenizerTestData[n];
- wxStringTokenizer tkz(tt.str, tt.delims, tt.mode);
-
- size_t count = tkz.CountTokens();
- wxPrintf(_T("String '%s' has %u tokens delimited by '%s' (mode = %s) "),
- MakePrintable(tt.str).c_str(),
- count,
- MakePrintable(tt.delims).c_str(),
- modeNames[tkz.GetMode()]);
- if ( count == tt.count )
- {
- wxPuts(_T("(ok)"));
- }
- else
- {
- wxPrintf(_T("(ERROR: should be %u)\n"), tt.count);
-
- continue;
- }
-
- // if we emulate strtok(), check that we do it correctly
- wxChar *buf, *s = NULL, *last;
-
- if ( tkz.GetMode() == wxTOKEN_STRTOK )
- {
- buf = new wxChar[wxStrlen(tt.str) + 1];
- wxStrcpy(buf, tt.str);
-
- s = wxStrtok(buf, tt.delims, &last);
- }
- else
- {
- buf = NULL;
- }
-
- // now show the tokens themselves
- size_t count2 = 0;
- while ( tkz.HasMoreTokens() )
- {
- wxString token = tkz.GetNextToken();
-
- wxPrintf(_T("\ttoken %u: '%s'"),
- ++count2,
- MakePrintable(token).c_str());
-
- if ( buf )
- {
- if ( token == s )
- {
- wxPuts(_T(" (ok)"));
- }
- else
- {
- wxPrintf(_T(" (ERROR: should be %s)\n"), s);
- }
-
- s = wxStrtok(NULL, tt.delims, &last);
- }
- else
- {
- // nothing to compare with
- wxPuts(_T(""));
- }
- }
-
- if ( count2 != count )
- {
- wxPuts(_T("\tERROR: token count mismatch"));
- }
-
- delete [] buf;
- }
-
- wxPuts(_T(""));
-}
-
-static void TestStringReplace()
-{
- wxPuts(_T("*** Testing wxString::replace ***"));
-
- static const struct StringReplaceTestData
- {
- const wxChar *original; // original test string
- size_t start, len; // the part to replace
- const wxChar *replacement; // the replacement string
- const wxChar *result; // and the expected result
- } stringReplaceTestData[] =
- {
- { _T("012-AWORD-XYZ"), 4, 5, _T("BWORD"), _T("012-BWORD-XYZ") },
- { _T("increase"), 0, 2, _T("de"), _T("decrease") },
- { _T("wxWindow"), 8, 0, _T("s"), _T("wxWindows") },
- { _T("foobar"), 3, 0, _T("-"), _T("foo-bar") },
- { _T("barfoo"), 0, 6, _T("foobar"), _T("foobar") },
- };
-
- for ( size_t n = 0; n < WXSIZEOF(stringReplaceTestData); n++ )
- {
- const StringReplaceTestData data = stringReplaceTestData[n];
-
- wxString original = data.original;
- original.replace(data.start, data.len, data.replacement);
-
- wxPrintf(_T("wxString(\"%s\").replace(%u, %u, %s) = %s "),
- data.original, data.start, data.len, data.replacement,
- original.c_str());
-
- if ( original == data.result )
- {
- wxPuts(_T("(ok)"));
- }
- else
- {
- wxPrintf(_T("(ERROR: should be '%s')\n"), data.result);
- }
- }
-
- wxPuts(_T(""));
-}
-
-static void TestStringMatch()
-{
- wxPuts(_T("*** Testing wxString::Matches() ***"));
-
- static const struct StringMatchTestData
- {
- const wxChar *text;
- const wxChar *wildcard;
- bool matches;
- } stringMatchTestData[] =
- {
- { _T("foobar"), _T("foo*"), 1 },
- { _T("foobar"), _T("*oo*"), 1 },
- { _T("foobar"), _T("*bar"), 1 },
- { _T("foobar"), _T("??????"), 1 },
- { _T("foobar"), _T("f??b*"), 1 },
- { _T("foobar"), _T("f?b*"), 0 },
- { _T("foobar"), _T("*goo*"), 0 },
- { _T("foobar"), _T("*foo"), 0 },
- { _T("foobarfoo"), _T("*foo"), 1 },
- { _T(""), _T("*"), 1 },
- { _T(""), _T("?"), 0 },
- };
-
- for ( size_t n = 0; n < WXSIZEOF(stringMatchTestData); n++ )
- {
- const StringMatchTestData& data = stringMatchTestData[n];
- bool matches = wxString(data.text).Matches(data.wildcard);
- wxPrintf(_T("'%s' %s '%s' (%s)\n"),
- data.wildcard,
- matches ? _T("matches") : _T("doesn't match"),
- data.text,
- matches == data.matches ? _T("ok") : _T("ERROR"));
- }
-
- wxPuts(_T(""));
-}
-
-// Sigh, I want Test::Simple, Test::More and Test::Harness...
-void ok(int line, bool ok, const wxString& msg = wxEmptyString)
-{
- if( !ok )
- wxPuts(_T("NOT OK: (") + wxString::Format(_T("%d"), line) +
- _T(") ") + msg);
-}
-
-void is(int line, const wxString& got, const wxString& expected,
- const wxString& msg = wxEmptyString)
-{
- bool isOk = got == expected;
- ok(line, isOk, msg);
- if( !isOk )
- {
- wxPuts(_T("Got: ") + got);
- wxPuts(_T("Expected: ") + expected);
- }
-}
-
-#if 0
-void is(int line, const wxChar* got, const wxChar* expected,
- const wxString& msg = wxEmptyString)
-{
- bool isOk = wxStrcmp( got, expected ) == 0;
- ok(line, isOk, msg);
- if( !isOk )
- {
- wxPuts(_T("Got: ") + wxString(got));
- wxPuts(_T("Expected: ") + wxString(expected));
- }
-}
-#endif
-
-void is(int line, const wxChar& got, const wxChar& expected,
- const wxString& msg = wxEmptyString)
-{
- bool isOk = got == expected;
- ok(line, isOk, msg);
- if( !isOk )
- {
- wxPuts(_T("Got: ") + got);
- wxPuts(_T("Expected: ") + expected);
- }
-}
-
-void is(int line, size_t got, size_t expected,
- const wxString& msg = wxEmptyString)
-{
- bool isOk = got == expected;
- ok(line, isOk, msg);
- if( !isOk )
- {
- wxPuts(wxString::Format(_T("Got: %ld"), got));
- wxPuts(wxString::Format(_T("Expected: %ld"), expected));
- }
-}
-
-#define is_m( got, expected, message ) is( __LINE__, (got), (expected), (message) )
-#define is_nom( got, expected ) is( __LINE__, (got), (expected), wxEmptyString )
-
-void TestStdString()
-{
- wxPuts(_T("*** Testing std::string operations ***\n"));
-
- // test ctors
- wxString s1(_T("abcdefgh")),
- s2(_T("abcdefghijklm"), 8),
- s3(_T("abcdefghijklm")),
- s4(8, _T('a'));
- wxString s5(s1),
- s6(s3, 0, 8),
- s7(s3.begin(), s3.begin() + 8);
- wxString s8(s1, 4, 8), s9, s10, s11;
-
- is( __LINE__, s1, _T("abcdefgh") );
- is( __LINE__, s2, s1 );
- is( __LINE__, s4, _T("aaaaaaaa") );
- is( __LINE__, s5, _T("abcdefgh") );
- is( __LINE__, s6, s1 );
- is( __LINE__, s7, s1 );
- is( __LINE__, s8, _T("efgh") );
-
- // test append
- s1 = s2 = s3 = s4 = s5 = s6 = s7 = s8 = _T("abc");
- s1.append(_T("def"));
- s2.append(_T("defgh"), 3);
- s3.append(wxString(_T("abcdef")), 3, 6);
- s4.append(s1);
- s5.append(3, _T('a'));
- s6.append(s1.begin() + 3, s1.end());
-
- is( __LINE__, s1, _T("abcdef") );
- is( __LINE__, s2, _T("abcdef") );
- is( __LINE__, s3, _T("abcdef") );
- is( __LINE__, s4, _T("abcabcdef") );
- is( __LINE__, s5, _T("abcaaa") );
- is( __LINE__, s6, _T("abcdef") );
-
- // test assign
- s1 = s2 = s3 = s4 = s5 = s6 = s7 = s8 = _T("abc");
- s1.assign(_T("def"));
- s2.assign(_T("defgh"), 3);
- s3.assign(wxString(_T("abcdef")), 3, 6);
- s4.assign(s1);
- s5.assign(3, _T('a'));
- s6.assign(s1.begin() + 1, s1.end());
-
- is( __LINE__, s1, _T("def") );
- is( __LINE__, s2, _T("def") );
- is( __LINE__, s3, _T("def") );
- is( __LINE__, s4, _T("def") );
- is( __LINE__, s5, _T("aaa") );
- is( __LINE__, s6, _T("ef") );
-
- // test compare
- s1 = _T("abcdefgh");
- s2 = _T("abcdefgh");
- s3 = _T("abc");
- s4 = _T("abcdefghi");
- s5 = _T("aaa");
- s6 = _T("zzz");
- s7 = _T("zabcdefg");
-
- ok( __LINE__, s1.compare(s2) == 0 );
- ok( __LINE__, s1.compare(s3) > 0 );
- ok( __LINE__, s1.compare(s4) < 0 );
- ok( __LINE__, s1.compare(s5) > 0 );
- ok( __LINE__, s1.compare(s6) < 0 );
- ok( __LINE__, s1.compare(1, 12, s1) > 0);
- ok( __LINE__, s1.compare(_T("abcdefgh")) == 0);
- ok( __LINE__, s1.compare(1, 7, _T("bcdefgh")) == 0);
- ok( __LINE__, s1.compare(1, 7, _T("bcdefgh"), 7) == 0);
-
- // test erase
- s1.erase(1, 1);
- s2.erase(4, 12);
- wxString::iterator it = s3.erase(s3.begin() + 1);
- wxString::iterator it2 = s4.erase(s4.begin() + 4, s4.begin() + 6);
- wxString::iterator it3 = s7.erase(s7.begin() + 4, s7.begin() + 8);
-
- is( __LINE__, s1, _T("acdefgh") );
- is( __LINE__, s2, _T("abcd") );
- is( __LINE__, s3, _T("ac") );
- is( __LINE__, s4, _T("abcdghi") );
- is( __LINE__, s7, _T("zabc") );
- is( __LINE__, *it, _T('c') );
- is( __LINE__, *it2, _T('g') );
- ok( __LINE__, it3 == s7.end() );
-
- // find
- // 0 1 2
- // 01234567890123456789012345
- s1 = _T("abcdefgABCDEFGabcABCabcABC");
- s2 = _T("gAB");
-
- is_nom( s1.find(_T('A')), 7u );
- is_nom( s1.find(_T('A'), 7), 7u );
- is_nom( s1.find(_T('Z')), wxString::npos );
- is_nom( s1.find(_T('C'), 22), 25u );
-
- is_nom( s1.find(_T("gAB")), 6u );
- is_nom( s1.find(_T("gAB"), 7), wxString::npos );
- is_nom( s1.find(_T("gAB"), 6), 6u );
-
- is_nom( s1.find(_T("gABZZZ"), 2, 3), 6u );
- is_nom( s1.find(_T("gABZZZ"), 7, 3), wxString::npos );
-
- is_nom( s1.find(s2), 6u );
- is_nom( s1.find(s2, 7), wxString::npos );
- is_nom( s1.find(s2, 6), 6u );
-
- // find_first_not_of
- // 0 1 2 3
- // 01234567890123456789012345678901234
- s1 = _T("aaaaaabcdefghlkjiaaaaaabcdbcdbcdbcd");
- s2 = _T("aaaaaa");
-
- is_nom( s1.find_first_not_of(_T('a')), 6u );
- is_nom( s1.find_first_not_of(_T('a'), 7), 7u );
- is_nom( s2.find_first_not_of(_T('a')), wxString::npos );
-
- is_nom( s1.find_first_not_of(_T("abde"), 4), 7u );
- is_nom( s1.find_first_not_of(_T("abde"), 7), 7u );
- is_nom( s1.find_first_not_of(_T("abcdefghijkl")), wxString::npos );
-
- is_nom( s1.find_first_not_of(_T("abcdefghi"), 0, 4), 9u );
-
- // find_first_of
- is_nom( s1.find_first_of(_T('c')), 7u );
- is_nom( s1.find_first_of(_T('v')), wxString::npos );
- is_nom( s1.find_first_of(_T('c'), 10), 24u );
-
- is_nom( s1.find_first_of(_T("ijkl")), 13u );
- is_nom( s1.find_first_of(_T("ddcfg"), 17), 24u );
- is_nom( s1.find_first_of(_T("ddcfga"), 17, 5), 24u );
-
- // find_last_not_of
- // 0 1 2 3
- // 01234567890123456789012345678901234
- s1 = _T("aaaaaabcdefghlkjiaaaaaabcdbcdbcdbcd");
- s2 = _T("aaaaaa");
-
- is_nom( s2.find_last_not_of(_T('a')), wxString::npos );
- is_nom( s1.find_last_not_of(_T('d')), 33u );
- is_nom( s1.find_last_not_of(_T('d'), 25), 24u );
-
- is_nom( s1.find_last_not_of(_T("bcd")), 22u );
- is_nom( s1.find_last_not_of(_T("abc"), 24), 16u );
-
- is_nom( s1.find_last_not_of(_T("abcdefghijklmnopqrstuv"), 24, 3), 16u );
-
- // find_last_of
- is_nom( s2.find_last_of(_T('c')), wxString::npos );
- is_nom( s1.find_last_of(_T('a')), 22u );
- is_nom( s1.find_last_of(_T('b'), 24), 23u );
-
- is_nom( s1.find_last_of(_T("ijklm")), 16u );
- is_nom( s1.find_last_of(_T("ijklma"), 33, 4), 16u );
- is_nom( s1.find_last_of(_T("a"), 17), 17u );
-
- // test insert
- s1 = s2 = s3 = s4 = s5 = s6 = s7 = s8 = _T("aaaa");
- s9 = s10 = _T("cdefg");
-
- s1.insert(1, _T("cc") );
- s2.insert(2, _T("cdef"), 3);
- s3.insert(2, s10);
- s4.insert(2, s10, 3, 7);
- s5.insert(1, 2, _T('c'));
- it = s6.insert(s6.begin() + 3, _T('X'));
- s7.insert(s7.begin(), s9.begin(), s9.end() - 1);
- s8.insert(s8.begin(), 2, _T('c'));
-
- is( __LINE__, s1, _T("accaaa") );
- is( __LINE__, s2, _T("aacdeaa") );
- is( __LINE__, s3, _T("aacdefgaa") );
- is( __LINE__, s4, _T("aafgaa") );
- is( __LINE__, s5, _T("accaaa") );
- is( __LINE__, s6, _T("aaaXa") );
- is( __LINE__, s7, _T("cdefaaaa") );
- is( __LINE__, s8, _T("ccaaaa") );
-
- s1 = s2 = s3 = _T("aaaa");
- s1.insert(0, _T("ccc"), 2);
- s2.insert(4, _T("ccc"), 2);
-
- is( __LINE__, s1, _T("ccaaaa") );
- is( __LINE__, s2, _T("aaaacc") );
-
- // test replace
- s1 = s2 = s3 = s4 = s5 = s6 = s7 = s8 = _T("QWERTYUIOP");
- s9 = s10 = _T("werty");
-
- s1.replace(3, 4, _T("rtyu"));
- s1.replace(8, 7, _T("opopop"));
- s2.replace(10, 12, _T("WWWW"));
- s3.replace(1, 5, s9);
- s4.replace(1, 4, s9, 0, 4);
- s5.replace(1, 2, s9, 1, 12);
- s6.replace(0, 123, s9, 0, 123);
- s7.replace(2, 7, s9);
-
- is( __LINE__, s1, _T("QWErtyuIopopop") );
- is( __LINE__, s2, _T("QWERTYUIOPWWWW") );
- is( __LINE__, s3, _T("QwertyUIOP") );
- is( __LINE__, s4, _T("QwertYUIOP") );
- is( __LINE__, s5, _T("QertyRTYUIOP") );
- is( __LINE__, s6, s9);
- is( __LINE__, s7, _T("QWwertyP") );
-
- // rfind
- // 0 1 2
- // 01234567890123456789012345
- s1 = _T("abcdefgABCDEFGabcABCabcABC");
- s2 = _T("gAB");
- s3 = _T("ab");
-
- is_nom( s1.rfind(_T('A')), 23u );
- is_nom( s1.rfind(_T('A'), 7), 7u );
- is_nom( s1.rfind(_T('Z')), wxString::npos );
- is_nom( s1.rfind(_T('C'), 22), 19u );
-
- is_nom( s1.rfind(_T("cAB")), 22u );
- is_nom( s1.rfind(_T("cAB"), 15), wxString::npos );
- is_nom( s1.rfind(_T("cAB"), 21), 16u );
-
- is_nom( s1.rfind(_T("gABZZZ"), 7, 3), 6u );
- is_nom( s1.rfind(_T("gABZZZ"), 5, 3), wxString::npos );
-
- is_nom( s1.rfind(s2), 6u );
- is_nom( s1.rfind(s2, 5), wxString::npos );
- is_nom( s1.rfind(s2, 6), 6u );
- is_nom( s1.rfind(s3, 1), 0u );
-
- // resize
- s1 = s2 = s3 = s4 = _T("abcABCdefDEF");
-
- s1.resize( 12 );
- s2.resize( 10 );
- s3.resize( 14, _T(' ') );
- s4.resize( 14, _T('W') );
-
- is_nom( s1, _T("abcABCdefDEF") );
- is_nom( s2, _T("abcABCdefD") );
- is_nom( s3, _T("abcABCdefDEF ") );
- is_nom( s4, _T("abcABCdefDEFWW") );
-
- // substr
- s1 = _T("abcdefgABCDEFG");
-
- is_nom( s1.substr( 0, 14 ), s1 );
- is_nom( s1.substr( 1, 13 ), _T("bcdefgABCDEFG") );
- is_nom( s1.substr( 1, 20 ), _T("bcdefgABCDEFG") );
- is_nom( s1.substr( 14, 30 ), _T("") );
-
- wxPuts(_T("*** Testing std::string operations finished ***\n"));
-}
-
-#endif // TEST_STRINGS
-
// ----------------------------------------------------------------------------
// entry point
// ----------------------------------------------------------------------------
#endif // TEST_CMDLINE
-#ifdef TEST_STRINGS
- if ( TEST_ALL )
- {
- TestPChar();
- TestString();
- TestStringSub();
- TestStringConstruction();
- TestStringFormat();
- TestStringFind();
- TestStringTokenizer();
- TestStringReplace();
- }
- else
- {
- TestStringMatch();
- }
-
- TestStdString();
-#endif // TEST_STRINGS
-
-#ifdef TEST_ARRAYS
- if ( 1 || TEST_ALL )
- {
- wxArrayString a1;
- a1.Add(_T("tiger"));
- a1.Add(_T("cat"));
- a1.Add(_T("lion"), 3);
- a1.Add(_T("dog"));
- a1.Add(_T("human"));
- a1.Add(_T("ape"));
-
- wxPuts(_T("*** Initially:"));
-
- PrintArray(_T("a1"), a1);
-
- wxArrayString a2(a1);
- PrintArray(_T("a2"), a2);
-
-#if !wxUSE_STL
- wxSortedArrayString a3(a1);
-#else
- wxSortedArrayString a3;
- for (wxArrayString::iterator it = a1.begin(), en = a1.end();
- it != en; ++it)
- a3.Add(*it);
-#endif
- PrintArray(_T("a3"), a3);
-
- wxPuts(_T("*** After deleting three strings from a1"));
- a1.RemoveAt(2,3);
-
- PrintArray(_T("a1"), a1);
- PrintArray(_T("a2"), a2);
- PrintArray(_T("a3"), a3);
-
-#if !wxUSE_STL
- wxPuts(_T("*** After reassigning a1 to a2 and a3"));
- a3 = a2 = a1;
- PrintArray(_T("a2"), a2);
- PrintArray(_T("a3"), a3);
-#endif
-
- wxPuts(_T("*** After sorting a1"));
- a1.Sort(false);
- PrintArray(_T("a1"), a1);
-
- wxPuts(_T("*** After sorting a1 in reverse order"));
- a1.Sort(true);
- PrintArray(_T("a1"), a1);
-
-#if !wxUSE_STL
- wxPuts(_T("*** After sorting a1 by the string length"));
- a1.Sort(&StringLenCompare);
- PrintArray(_T("a1"), a1);
-#endif
-
- TestArrayOfObjects();
- TestArrayOfUShorts();
- }
-
- TestArrayOfInts();
- TestStlArray();
-#endif // TEST_ARRAYS
-
#ifdef TEST_DIR
- if ( TEST_ALL )
- {
+ #if TEST_ALL
TestDirExists();
TestDirEnum();
- }
+ #endif
TestDirTraverse();
#endif // TEST_DIR
#endif // TEST_LOG
#ifdef TEST_FILE
- if ( TEST_ALL )
- {
- TestFileRead();
- TestTextFileRead();
- TestFileCopy();
- }
+ TestFileRead();
+ TestTextFileRead();
+ TestFileCopy();
#endif // TEST_FILE
#ifdef TEST_FILENAME
- if ( TEST_ALL )
- {
- TestFileNameConstruction();
- TestFileNameMakeRelative();
- TestFileNameMakeAbsolute();
- TestFileNameSplit();
- TestFileNameTemp();
- TestFileNameCwd();
- TestFileNameDirManip();
- TestFileNameComparison();
- TestFileNameOperations();
- }
+ TestFileNameConstruction();
+ TestFileNameMakeRelative();
+ TestFileNameMakeAbsolute();
+ TestFileNameSplit();
+ TestFileNameTemp();
+ TestFileNameCwd();
+ TestFileNameDirManip();
+ TestFileNameComparison();
+ TestFileNameOperations();
#endif // TEST_FILENAME
#ifdef TEST_FILETIME
TestFileGetTimes();
- if ( 0 )
+ #if 0
TestFileSetTimes();
+ #endif
#endif // TEST_FILETIME
#ifdef TEST_FTP
wxLog::AddTraceMask(FTP_TRACE_MASK);
if ( TestFtpConnect() )
{
- if ( TEST_ALL )
- {
+ #if TEST_ALL
TestFtpList();
TestFtpDownload();
TestFtpMisc();
TestFtpFileSize();
TestFtpUpload();
- }
+ #endif
- if ( TEST_INTERACTIVE )
+ #if TEST_INTERACTIVE
TestFtpInteractive();
+ #endif
}
//else: connecting to the FTP server failed
- if ( 0 )
+ #if 0
TestFtpWuFtpd();
+ #endif
#endif // TEST_FTP
-#ifdef TEST_LONGLONG
- // seed pseudo random generator
- srand((unsigned)time(NULL));
-
- if ( 0 )
- {
- TestSpeed();
- }
-
- if ( TEST_ALL )
- {
- TestMultiplication();
- TestDivision();
- TestAddition();
- TestLongLongConversion();
- TestBitOperations();
- TestLongLongComparison();
- TestLongLongToString();
- TestLongLongPrintf();
- }
-#endif // TEST_LONGLONG
-
#ifdef TEST_HASH
TestHash();
#endif // TEST_HASH
#ifdef TEST_MIME
wxLog::AddTraceMask(_T("mime"));
- if ( TEST_ALL )
- {
+ #if TEST_ALL
TestMimeEnum();
TestMimeOverride();
TestMimeAssociate();
- }
+ #endif
TestMimeFilename();
#endif // TEST_MIME
#ifdef TEST_INFO_FUNCTIONS
- if ( TEST_ALL )
- {
+ #if TEST_ALL
TestOsInfo();
TestUserInfo();
- if ( TEST_INTERACTIVE )
+ #if TEST_INTERACTIVE
TestDiskInfo();
- }
+ #endif
+ #endif
#endif // TEST_INFO_FUNCTIONS
#ifdef TEST_PATHLIST
#endif // TEST_PRINTF
#ifdef TEST_REGCONF
- //TestRegConfWrite();
+ #if 0
+ TestRegConfWrite();
+ #endif
TestRegConfRead();
#endif // TEST_REGCONF
-#ifdef TEST_REGEX
- // TODO: write a real test using src/regex/tests file
- if ( TEST_ALL )
- {
- TestRegExCompile();
- TestRegExMatch();
- TestRegExSubmatch();
- TestRegExReplacement();
-
- if ( TEST_INTERACTIVE )
- TestRegExInteractive();
- }
-#endif // TEST_REGEX
+#if defined TEST_REGEX && TEST_INTERACTIVE
+ TestRegExInteractive();
+#endif // defined TEST_REGEX && TEST_INTERACTIVE
#ifdef TEST_REGISTRY
TestRegistryRead();
#endif // TEST_SOCKETS
#ifdef TEST_STREAMS
- if ( TEST_ALL )
- {
+ #if TEST_ALL
TestFileStream();
- }
+ #endif
TestMemoryStream();
#endif // TEST_STREAMS
TestJoinableThreads();
- if ( TEST_ALL )
- {
+ #if TEST_ALL
TestJoinableThreads();
TestDetachedThreads();
TestThreadSuspend();
TestThreadConditions();
TestThreadExec();
TestSemaphore();
- }
+ #endif
#endif // TEST_THREADS
#ifdef TEST_TIMER
#endif // TEST_TIMER
#ifdef TEST_DATETIME
- if ( TEST_ALL )
- {
+ #if TEST_ALL
TestTimeSet();
TestTimeStatic();
TestTimeRange();
TestTimeMS();
TestTimeZoneBug();
- }
+ #endif
- if ( TEST_INTERACTIVE )
+ #if TEST_INTERACTIVE
TestDateTimeInteractive();
+ #endif
#endif // TEST_DATETIME
#ifdef TEST_SCOPEGUARD
TestFSVolume();
#endif // TEST_VOLUME
-#ifdef TEST_UNICODE
- TestUnicodeTextFileRead();
- if ( TEST_ALL )
- {
- TestUnicodeToFromAscii();
- }
-#endif // TEST_UNICODE
-
#ifdef TEST_WCHAR
TestUtf8();
TestEncodingConverter();
TestZipFileSystem();
#endif // TEST_ZIP
-#ifdef TEST_ZLIB
- TestZlibStreamWrite();
- TestZlibStreamRead();
-#endif // TEST_ZLIB
-
-#ifdef TEST_GZIP
- TestGzip();
-#endif
-
+ wxUnusedVar(argc);
+ wxUnusedVar(argv);
return 0;
}