]>
Commit | Line | Data |
---|---|---|
37667812 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: samples/console/console.cpp | |
f6c9f2ed | 3 | // Purpose: A sample console (as opposed to GUI) program using wxWidgets |
37667812 VZ |
4 | // Author: Vadim Zeitlin |
5 | // Modified by: | |
6 | // Created: 04.10.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
e87271f3 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
e84010cf | 20 | #include "wx/defs.h" |
b11a23f3 | 21 | |
37667812 VZ |
22 | #include <stdio.h> |
23 | ||
e84010cf GD |
24 | #include "wx/string.h" |
25 | #include "wx/file.h" | |
26 | #include "wx/app.h" | |
e046e5f1 | 27 | #include "wx/log.h" |
8bb6b2c0 VZ |
28 | #include "wx/apptrait.h" |
29 | #include "wx/platinfo.h" | |
e87271f3 | 30 | |
d31b7b68 VZ |
31 | // without this pragma, the stupid compiler precompiles #defines below so that |
32 | // changing them doesn't "take place" later! | |
33 | #ifdef __VISUALC__ | |
34 | #pragma hdrstop | |
35 | #endif | |
36 | ||
e87271f3 VZ |
37 | // ---------------------------------------------------------------------------- |
38 | // conditional compilation | |
39 | // ---------------------------------------------------------------------------- | |
40 | ||
daa2c7d9 VZ |
41 | /* |
42 | A note about all these conditional compilation macros: this file is used | |
be5a51fb | 43 | both as a test suite for various non-GUI wxWidgets classes and as a |
daa2c7d9 VZ |
44 | scratchpad for quick tests. So there are two compilation modes: if you |
45 | define TEST_ALL all tests are run, otherwise you may enable the individual | |
46 | tests individually in the "#else" branch below. | |
47 | */ | |
48 | ||
e9d2bb6f DS |
49 | // what to test (in alphabetic order)? Define TEST_ALL to 0 to do a single |
50 | // test, define it to 1 to do all tests. | |
51 | #define TEST_ALL 0 | |
52 | ||
53 | ||
54 | #if TEST_ALL | |
31f6de22 VZ |
55 | #define TEST_CMDLINE |
56 | #define TEST_DATETIME | |
57 | #define TEST_DIR | |
93ed8ff7 | 58 | #define TEST_DYNLIB |
31f6de22 VZ |
59 | #define TEST_ENVIRON |
60 | #define TEST_EXECUTE | |
61 | #define TEST_FILE | |
62 | #define TEST_FILECONF | |
63 | #define TEST_FILENAME | |
64 | #define TEST_FILETIME | |
8d4dc98f | 65 | // #define TEST_FTP --FIXME! (RN) |
31f6de22 | 66 | #define TEST_INFO_FUNCTIONS |
31f6de22 VZ |
67 | #define TEST_LOCALE |
68 | #define TEST_LOG | |
31f6de22 | 69 | #define TEST_MIME |
af266e5b | 70 | #define TEST_MODULE |
31f6de22 | 71 | #define TEST_PATHLIST |
8d5eff60 | 72 | #define TEST_ODBC |
7aeebdcd | 73 | #define TEST_PRINTF |
31f6de22 VZ |
74 | #define TEST_REGCONF |
75 | #define TEST_REGEX | |
76 | #define TEST_REGISTRY | |
24c8053b | 77 | #define TEST_SCOPEGUARD |
31f6de22 | 78 | #define TEST_SNGLINST |
8d4dc98f | 79 | // #define TEST_SOCKETS --FIXME! (RN) |
eaff0f0d | 80 | #define TEST_STACKWALKER |
af33b199 | 81 | #define TEST_STDPATHS |
31f6de22 | 82 | #define TEST_STREAMS |
39937656 | 83 | #define TEST_TEXTSTREAM |
31f6de22 VZ |
84 | #define TEST_THREADS |
85 | #define TEST_TIMER | |
86 | // #define TEST_VCARD -- don't enable this (VZ) | |
8d4dc98f | 87 | // #define TEST_VOLUME --FIXME! (RN) |
31f6de22 VZ |
88 | #define TEST_WCHAR |
89 | #define TEST_ZIP | |
e9d2bb6f | 90 | #else // #if TEST_ALL |
ac7ad70d | 91 | #define TEST_STDPATHS |
31f6de22 | 92 | #endif |
f6bcfd97 | 93 | |
daa2c7d9 VZ |
94 | // some tests are interactive, define this to run them |
95 | #ifdef TEST_INTERACTIVE | |
96 | #undef TEST_INTERACTIVE | |
97 | ||
e9d2bb6f | 98 | #define TEST_INTERACTIVE 1 |
daa2c7d9 | 99 | #else |
e9d2bb6f | 100 | #define TEST_INTERACTIVE 0 |
daa2c7d9 | 101 | #endif |
58b24a56 | 102 | |
e87271f3 VZ |
103 | // ============================================================================ |
104 | // implementation | |
105 | // ============================================================================ | |
106 | ||
8e907a13 VZ |
107 | // ---------------------------------------------------------------------------- |
108 | // helper functions | |
109 | // ---------------------------------------------------------------------------- | |
110 | ||
1cd53e88 | 111 | #if defined(TEST_SOCKETS) |
8e907a13 VZ |
112 | |
113 | // replace TABs with \t and CRs with \n | |
114 | static wxString MakePrintable(const wxChar *s) | |
115 | { | |
116 | wxString str(s); | |
117 | (void)str.Replace(_T("\t"), _T("\\t")); | |
118 | (void)str.Replace(_T("\n"), _T("\\n")); | |
119 | (void)str.Replace(_T("\r"), _T("\\r")); | |
120 | ||
121 | return str; | |
122 | } | |
123 | ||
124 | #endif // MakePrintable() is used | |
125 | ||
d34bce84 VZ |
126 | // ---------------------------------------------------------------------------- |
127 | // wxCmdLineParser | |
128 | // ---------------------------------------------------------------------------- | |
129 | ||
d31b7b68 VZ |
130 | #ifdef TEST_CMDLINE |
131 | ||
e84010cf GD |
132 | #include "wx/cmdline.h" |
133 | #include "wx/datetime.h" | |
d34bce84 | 134 | |
31f6de22 VZ |
135 | #if wxUSE_CMDLINE_PARSER |
136 | ||
d34bce84 VZ |
137 | static void ShowCmdLine(const wxCmdLineParser& parser) |
138 | { | |
5df663af | 139 | wxString s = _T("Command line parsed successfully:\nInput files: "); |
d34bce84 VZ |
140 | |
141 | size_t count = parser.GetParamCount(); | |
142 | for ( size_t param = 0; param < count; param++ ) | |
143 | { | |
144 | s << parser.GetParam(param) << ' '; | |
145 | } | |
146 | ||
147 | s << '\n' | |
456ae26d VZ |
148 | << _T("Verbose:\t") << (parser.Found(_T("v")) ? _T("yes") : _T("no")) << '\n' |
149 | << _T("Quiet:\t") << (parser.Found(_T("q")) ? _T("yes") : _T("no")) << '\n'; | |
d34bce84 VZ |
150 | |
151 | wxString strVal; | |
152 | long lVal; | |
153 | wxDateTime dt; | |
456ae26d VZ |
154 | if ( parser.Found(_T("o"), &strVal) ) |
155 | s << _T("Output file:\t") << strVal << '\n'; | |
156 | if ( parser.Found(_T("i"), &strVal) ) | |
157 | s << _T("Input dir:\t") << strVal << '\n'; | |
158 | if ( parser.Found(_T("s"), &lVal) ) | |
159 | s << _T("Size:\t") << lVal << '\n'; | |
160 | if ( parser.Found(_T("d"), &dt) ) | |
161 | s << _T("Date:\t") << dt.FormatISODate() << '\n'; | |
162 | if ( parser.Found(_T("project_name"), &strVal) ) | |
163 | s << _T("Project:\t") << strVal << '\n'; | |
d34bce84 VZ |
164 | |
165 | wxLogMessage(s); | |
166 | } | |
167 | ||
31f6de22 VZ |
168 | #endif // wxUSE_CMDLINE_PARSER |
169 | ||
170 | static void TestCmdLineConvert() | |
171 | { | |
456ae26d | 172 | static const wxChar *cmdlines[] = |
31f6de22 | 173 | { |
456ae26d VZ |
174 | _T("arg1 arg2"), |
175 | _T("-a \"-bstring 1\" -c\"string 2\" \"string 3\""), | |
176 | _T("literal \\\" and \"\""), | |
31f6de22 VZ |
177 | }; |
178 | ||
179 | for ( size_t n = 0; n < WXSIZEOF(cmdlines); n++ ) | |
180 | { | |
456ae26d VZ |
181 | const wxChar *cmdline = cmdlines[n]; |
182 | wxPrintf(_T("Parsing: %s\n"), cmdline); | |
31f6de22 VZ |
183 | wxArrayString args = wxCmdLineParser::ConvertStringToArgs(cmdline); |
184 | ||
185 | size_t count = args.GetCount(); | |
456ae26d | 186 | wxPrintf(_T("\targc = %u\n"), count); |
31f6de22 VZ |
187 | for ( size_t arg = 0; arg < count; arg++ ) |
188 | { | |
456ae26d | 189 | wxPrintf(_T("\targv[%u] = %s\n"), arg, args[arg].c_str()); |
31f6de22 VZ |
190 | } |
191 | } | |
192 | } | |
193 | ||
d34bce84 VZ |
194 | #endif // TEST_CMDLINE |
195 | ||
1944c6bd VZ |
196 | // ---------------------------------------------------------------------------- |
197 | // wxDir | |
198 | // ---------------------------------------------------------------------------- | |
199 | ||
200 | #ifdef TEST_DIR | |
201 | ||
e84010cf | 202 | #include "wx/dir.h" |
1944c6bd | 203 | |
35332784 VZ |
204 | #ifdef __UNIX__ |
205 | static const wxChar *ROOTDIR = _T("/"); | |
2f0c19d0 | 206 | static const wxChar *TESTDIR = _T("/usr/local/share"); |
65e324b4 | 207 | #elif defined(__WXMSW__) || defined(__DOS__) || defined(__OS2__) |
35332784 VZ |
208 | static const wxChar *ROOTDIR = _T("c:\\"); |
209 | static const wxChar *TESTDIR = _T("d:\\"); | |
210 | #else | |
211 | #error "don't know where the root directory is" | |
212 | #endif | |
213 | ||
1944c6bd VZ |
214 | static void TestDirEnumHelper(wxDir& dir, |
215 | int flags = wxDIR_DEFAULT, | |
216 | const wxString& filespec = wxEmptyString) | |
217 | { | |
218 | wxString filename; | |
219 | ||
220 | if ( !dir.IsOpened() ) | |
221 | return; | |
222 | ||
223 | bool cont = dir.GetFirst(&filename, filespec, flags); | |
224 | while ( cont ) | |
225 | { | |
456ae26d | 226 | wxPrintf(_T("\t%s\n"), filename.c_str()); |
1944c6bd VZ |
227 | |
228 | cont = dir.GetNext(&filename); | |
229 | } | |
230 | ||
e9d2bb6f | 231 | wxPuts(wxEmptyString); |
1944c6bd VZ |
232 | } |
233 | ||
dab6fbae WS |
234 | #if TEST_ALL |
235 | ||
1944c6bd VZ |
236 | static void TestDirEnum() |
237 | { | |
456ae26d | 238 | wxPuts(_T("*** Testing wxDir::GetFirst/GetNext ***")); |
35332784 | 239 | |
149147e1 | 240 | wxString cwd = wxGetCwd(); |
9475670f | 241 | if ( !wxDir::Exists(cwd) ) |
149147e1 | 242 | { |
456ae26d | 243 | wxPrintf(_T("ERROR: current directory '%s' doesn't exist?\n"), cwd.c_str()); |
149147e1 VZ |
244 | return; |
245 | } | |
246 | ||
ee3ef281 | 247 | wxDir dir(cwd); |
149147e1 VZ |
248 | if ( !dir.IsOpened() ) |
249 | { | |
456ae26d | 250 | wxPrintf(_T("ERROR: failed to open current directory '%s'.\n"), cwd.c_str()); |
149147e1 VZ |
251 | return; |
252 | } | |
1944c6bd | 253 | |
456ae26d | 254 | wxPuts(_T("Enumerating everything in current directory:")); |
1944c6bd VZ |
255 | TestDirEnumHelper(dir); |
256 | ||
456ae26d | 257 | wxPuts(_T("Enumerating really everything in current directory:")); |
1944c6bd VZ |
258 | TestDirEnumHelper(dir, wxDIR_DEFAULT | wxDIR_DOTDOT); |
259 | ||
456ae26d | 260 | wxPuts(_T("Enumerating object files in current directory:")); |
f2cb8a17 | 261 | TestDirEnumHelper(dir, wxDIR_DEFAULT, _T("*.o*")); |
1944c6bd | 262 | |
456ae26d | 263 | wxPuts(_T("Enumerating directories in current directory:")); |
1944c6bd VZ |
264 | TestDirEnumHelper(dir, wxDIR_DIRS); |
265 | ||
456ae26d | 266 | wxPuts(_T("Enumerating files in current directory:")); |
1944c6bd VZ |
267 | TestDirEnumHelper(dir, wxDIR_FILES); |
268 | ||
456ae26d | 269 | wxPuts(_T("Enumerating files including hidden in current directory:")); |
1944c6bd VZ |
270 | TestDirEnumHelper(dir, wxDIR_FILES | wxDIR_HIDDEN); |
271 | ||
35332784 | 272 | dir.Open(ROOTDIR); |
1944c6bd | 273 | |
456ae26d | 274 | wxPuts(_T("Enumerating everything in root directory:")); |
1944c6bd VZ |
275 | TestDirEnumHelper(dir, wxDIR_DEFAULT); |
276 | ||
456ae26d | 277 | wxPuts(_T("Enumerating directories in root directory:")); |
1944c6bd VZ |
278 | TestDirEnumHelper(dir, wxDIR_DIRS); |
279 | ||
456ae26d | 280 | wxPuts(_T("Enumerating files in root directory:")); |
1944c6bd VZ |
281 | TestDirEnumHelper(dir, wxDIR_FILES); |
282 | ||
456ae26d | 283 | wxPuts(_T("Enumerating files including hidden in root directory:")); |
1944c6bd VZ |
284 | TestDirEnumHelper(dir, wxDIR_FILES | wxDIR_HIDDEN); |
285 | ||
456ae26d | 286 | wxPuts(_T("Enumerating files in non existing directory:")); |
f2cb8a17 | 287 | wxDir dirNo(_T("nosuchdir")); |
1944c6bd VZ |
288 | TestDirEnumHelper(dirNo); |
289 | } | |
290 | ||
dab6fbae WS |
291 | #endif // TEST_ALL |
292 | ||
35332784 VZ |
293 | class DirPrintTraverser : public wxDirTraverser |
294 | { | |
295 | public: | |
e9d2bb6f | 296 | virtual wxDirTraverseResult OnFile(const wxString& WXUNUSED(filename)) |
35332784 VZ |
297 | { |
298 | return wxDIR_CONTINUE; | |
299 | } | |
300 | ||
301 | virtual wxDirTraverseResult OnDir(const wxString& dirname) | |
302 | { | |
303 | wxString path, name, ext; | |
304 | wxSplitPath(dirname, &path, &name, &ext); | |
305 | ||
306 | if ( !ext.empty() ) | |
307 | name << _T('.') << ext; | |
308 | ||
309 | wxString indent; | |
310 | for ( const wxChar *p = path.c_str(); *p; p++ ) | |
311 | { | |
312 | if ( wxIsPathSeparator(*p) ) | |
313 | indent += _T(" "); | |
314 | } | |
315 | ||
456ae26d | 316 | wxPrintf(_T("%s%s\n"), indent.c_str(), name.c_str()); |
35332784 VZ |
317 | |
318 | return wxDIR_CONTINUE; | |
319 | } | |
320 | }; | |
321 | ||
322 | static void TestDirTraverse() | |
323 | { | |
456ae26d | 324 | wxPuts(_T("*** Testing wxDir::Traverse() ***")); |
35332784 VZ |
325 | |
326 | // enum all files | |
327 | wxArrayString files; | |
328 | size_t n = wxDir::GetAllFiles(TESTDIR, &files); | |
456ae26d | 329 | wxPrintf(_T("There are %u files under '%s'\n"), n, TESTDIR); |
35332784 VZ |
330 | if ( n > 1 ) |
331 | { | |
456ae26d VZ |
332 | wxPrintf(_T("First one is '%s'\n"), files[0u].c_str()); |
333 | wxPrintf(_T(" last one is '%s'\n"), files[n - 1].c_str()); | |
35332784 VZ |
334 | } |
335 | ||
336 | // enum again with custom traverser | |
2f0c19d0 | 337 | wxPuts(_T("Now enumerating directories:")); |
35332784 VZ |
338 | wxDir dir(TESTDIR); |
339 | DirPrintTraverser traverser; | |
e9d2bb6f | 340 | dir.Traverse(traverser, wxEmptyString, wxDIR_DIRS | wxDIR_HIDDEN); |
35332784 VZ |
341 | } |
342 | ||
dab6fbae WS |
343 | #if TEST_ALL |
344 | ||
149147e1 VZ |
345 | static void TestDirExists() |
346 | { | |
347 | wxPuts(_T("*** Testing wxDir::Exists() ***")); | |
348 | ||
456ae26d | 349 | static const wxChar *dirnames[] = |
149147e1 VZ |
350 | { |
351 | _T("."), | |
352 | #if defined(__WXMSW__) | |
353 | _T("c:"), | |
354 | _T("c:\\"), | |
355 | _T("\\\\share\\file"), | |
356 | _T("c:\\dos"), | |
357 | _T("c:\\dos\\"), | |
358 | _T("c:\\dos\\\\"), | |
359 | _T("c:\\autoexec.bat"), | |
360 | #elif defined(__UNIX__) | |
361 | _T("/"), | |
362 | _T("//"), | |
363 | _T("/usr/bin"), | |
364 | _T("/usr//bin"), | |
365 | _T("/usr///bin"), | |
366 | #endif | |
367 | }; | |
368 | ||
369 | for ( size_t n = 0; n < WXSIZEOF(dirnames); n++ ) | |
370 | { | |
456ae26d VZ |
371 | wxPrintf(_T("%-40s: %s\n"), |
372 | dirnames[n], | |
373 | wxDir::Exists(dirnames[n]) ? _T("exists") | |
374 | : _T("doesn't exist")); | |
149147e1 VZ |
375 | } |
376 | } | |
377 | ||
dab6fbae WS |
378 | #endif // TEST_ALL |
379 | ||
1944c6bd VZ |
380 | #endif // TEST_DIR |
381 | ||
f6bcfd97 BP |
382 | // ---------------------------------------------------------------------------- |
383 | // wxDllLoader | |
384 | // ---------------------------------------------------------------------------- | |
385 | ||
93ed8ff7 | 386 | #ifdef TEST_DYNLIB |
f6bcfd97 | 387 | |
e84010cf | 388 | #include "wx/dynlib.h" |
f6bcfd97 BP |
389 | |
390 | static void TestDllLoad() | |
391 | { | |
392 | #if defined(__WXMSW__) | |
393 | static const wxChar *LIB_NAME = _T("kernel32.dll"); | |
394 | static const wxChar *FUNC_NAME = _T("lstrlenA"); | |
395 | #elif defined(__UNIX__) | |
396 | // weird: using just libc.so does *not* work! | |
e259f83e | 397 | static const wxChar *LIB_NAME = _T("/lib/libc.so.6"); |
f6bcfd97 BP |
398 | static const wxChar *FUNC_NAME = _T("strlen"); |
399 | #else | |
400 | #error "don't know how to test wxDllLoader on this platform" | |
401 | #endif | |
402 | ||
297ebe6b | 403 | wxPuts(_T("*** testing basic wxDynamicLibrary functions ***\n")); |
f6bcfd97 | 404 | |
456ae26d VZ |
405 | wxDynamicLibrary lib(LIB_NAME); |
406 | if ( !lib.IsLoaded() ) | |
f6bcfd97 BP |
407 | { |
408 | wxPrintf(_T("ERROR: failed to load '%s'.\n"), LIB_NAME); | |
409 | } | |
410 | else | |
411 | { | |
93ed8ff7 | 412 | typedef int (wxSTDCALL *wxStrlenType)(const char *); |
456ae26d | 413 | wxStrlenType pfnStrlen = (wxStrlenType)lib.GetSymbol(FUNC_NAME); |
f6bcfd97 BP |
414 | if ( !pfnStrlen ) |
415 | { | |
416 | wxPrintf(_T("ERROR: function '%s' wasn't found in '%s'.\n"), | |
417 | FUNC_NAME, LIB_NAME); | |
418 | } | |
419 | else | |
420 | { | |
e259f83e VZ |
421 | wxPrintf(_T("Calling %s dynamically loaded from %s "), |
422 | FUNC_NAME, LIB_NAME); | |
423 | ||
f6bcfd97 BP |
424 | if ( pfnStrlen("foo") != 3 ) |
425 | { | |
456ae26d | 426 | wxPrintf(_T("ERROR: loaded function is not wxStrlen()!\n")); |
f6bcfd97 BP |
427 | } |
428 | else | |
429 | { | |
456ae26d | 430 | wxPuts(_T("... ok")); |
f6bcfd97 BP |
431 | } |
432 | } | |
93ed8ff7 VZ |
433 | |
434 | #ifdef __WXMSW__ | |
435 | static const wxChar *FUNC_NAME_AW = _T("lstrlen"); | |
436 | ||
437 | typedef int (wxSTDCALL *wxStrlenTypeAorW)(const wxChar *); | |
438 | wxStrlenTypeAorW | |
439 | pfnStrlenAorW = (wxStrlenTypeAorW)lib.GetSymbolAorW(FUNC_NAME_AW); | |
440 | if ( !pfnStrlenAorW ) | |
441 | { | |
442 | wxPrintf(_T("ERROR: function '%s' wasn't found in '%s'.\n"), | |
443 | FUNC_NAME_AW, LIB_NAME); | |
444 | } | |
445 | else | |
446 | { | |
447 | if ( pfnStrlenAorW(_T("foobar")) != 6 ) | |
448 | { | |
449 | wxPrintf(_T("ERROR: loaded function is not wxStrlen()!\n")); | |
450 | } | |
451 | } | |
452 | #endif // __WXMSW__ | |
f6bcfd97 BP |
453 | } |
454 | } | |
455 | ||
297ebe6b VZ |
456 | #if defined(__WXMSW__) || defined(__UNIX__) |
457 | ||
458 | static void TestDllListLoaded() | |
459 | { | |
460 | wxPuts(_T("*** testing wxDynamicLibrary::ListLoaded() ***\n")); | |
461 | ||
462 | puts("\nLoaded modules:"); | |
463 | wxDynamicLibraryDetailsArray dlls = wxDynamicLibrary::ListLoaded(); | |
464 | const size_t count = dlls.GetCount(); | |
465 | for ( size_t n = 0; n < count; ++n ) | |
466 | { | |
467 | const wxDynamicLibraryDetails& details = dlls[n]; | |
eaff0f0d | 468 | printf("%-45s", details.GetPath().mb_str()); |
297ebe6b VZ |
469 | |
470 | void *addr; | |
471 | size_t len; | |
472 | if ( details.GetAddress(&addr, &len) ) | |
473 | { | |
474 | printf(" %08lx:%08lx", | |
475 | (unsigned long)addr, (unsigned long)((char *)addr + len)); | |
476 | } | |
477 | ||
eaff0f0d | 478 | printf(" %s\n", details.GetVersion().mb_str()); |
297ebe6b VZ |
479 | } |
480 | } | |
481 | ||
482 | #endif | |
483 | ||
93ed8ff7 | 484 | #endif // TEST_DYNLIB |
f6bcfd97 | 485 | |
8fd0d89b VZ |
486 | // ---------------------------------------------------------------------------- |
487 | // wxGet/SetEnv | |
488 | // ---------------------------------------------------------------------------- | |
489 | ||
490 | #ifdef TEST_ENVIRON | |
491 | ||
e84010cf | 492 | #include "wx/utils.h" |
8fd0d89b | 493 | |
308978f6 VZ |
494 | static wxString MyGetEnv(const wxString& var) |
495 | { | |
496 | wxString val; | |
497 | if ( !wxGetEnv(var, &val) ) | |
498 | val = _T("<empty>"); | |
499 | else | |
500 | val = wxString(_T('\'')) + val + _T('\''); | |
501 | ||
502 | return val; | |
503 | } | |
504 | ||
8fd0d89b VZ |
505 | static void TestEnvironment() |
506 | { | |
507 | const wxChar *var = _T("wxTestVar"); | |
508 | ||
456ae26d | 509 | wxPuts(_T("*** testing environment access functions ***")); |
8fd0d89b | 510 | |
456ae26d | 511 | wxPrintf(_T("Initially getenv(%s) = %s\n"), var, MyGetEnv(var).c_str()); |
8fd0d89b | 512 | wxSetEnv(var, _T("value for wxTestVar")); |
456ae26d | 513 | wxPrintf(_T("After wxSetEnv: getenv(%s) = %s\n"), var, MyGetEnv(var).c_str()); |
8fd0d89b | 514 | wxSetEnv(var, _T("another value")); |
456ae26d | 515 | wxPrintf(_T("After 2nd wxSetEnv: getenv(%s) = %s\n"), var, MyGetEnv(var).c_str()); |
8fd0d89b | 516 | wxUnsetEnv(var); |
456ae26d VZ |
517 | wxPrintf(_T("After wxUnsetEnv: getenv(%s) = %s\n"), var, MyGetEnv(var).c_str()); |
518 | wxPrintf(_T("PATH = %s\n"), MyGetEnv(_T("PATH")).c_str()); | |
8fd0d89b VZ |
519 | } |
520 | ||
521 | #endif // TEST_ENVIRON | |
522 | ||
d93c719a VZ |
523 | // ---------------------------------------------------------------------------- |
524 | // wxExecute | |
525 | // ---------------------------------------------------------------------------- | |
526 | ||
527 | #ifdef TEST_EXECUTE | |
528 | ||
e84010cf | 529 | #include "wx/utils.h" |
d93c719a VZ |
530 | |
531 | static void TestExecute() | |
532 | { | |
456ae26d | 533 | wxPuts(_T("*** testing wxExecute ***")); |
d93c719a VZ |
534 | |
535 | #ifdef __UNIX__ | |
a1f79c1e | 536 | #define COMMAND "cat -n ../../Makefile" // "echo hi" |
2c8e4738 | 537 | #define SHELL_COMMAND "echo hi from shell" |
a1f79c1e | 538 | #define REDIRECT_COMMAND COMMAND // "date" |
d93c719a | 539 | #elif defined(__WXMSW__) |
50ded68d | 540 | #define COMMAND "command.com /c echo hi" |
2c8e4738 VZ |
541 | #define SHELL_COMMAND "echo hi" |
542 | #define REDIRECT_COMMAND COMMAND | |
d93c719a VZ |
543 | #else |
544 | #error "no command to exec" | |
545 | #endif // OS | |
546 | ||
456ae26d | 547 | wxPrintf(_T("Testing wxShell: ")); |
2c8e4738 | 548 | fflush(stdout); |
f2cb8a17 | 549 | if ( wxShell(_T(SHELL_COMMAND)) ) |
456ae26d | 550 | wxPuts(_T("Ok.")); |
d93c719a | 551 | else |
456ae26d | 552 | wxPuts(_T("ERROR.")); |
2c8e4738 | 553 | |
456ae26d | 554 | wxPrintf(_T("Testing wxExecute: ")); |
2c8e4738 | 555 | fflush(stdout); |
f2cb8a17 | 556 | if ( wxExecute(_T(COMMAND), true /* sync */) == 0 ) |
456ae26d | 557 | wxPuts(_T("Ok.")); |
2c8e4738 | 558 | else |
456ae26d | 559 | wxPuts(_T("ERROR.")); |
2c8e4738 VZ |
560 | |
561 | #if 0 // no, it doesn't work (yet?) | |
456ae26d | 562 | wxPrintf(_T("Testing async wxExecute: ")); |
2c8e4738 VZ |
563 | fflush(stdout); |
564 | if ( wxExecute(COMMAND) != 0 ) | |
456ae26d | 565 | wxPuts(_T("Ok (command launched).")); |
2c8e4738 | 566 | else |
456ae26d | 567 | wxPuts(_T("ERROR.")); |
2c8e4738 VZ |
568 | #endif // 0 |
569 | ||
456ae26d | 570 | wxPrintf(_T("Testing wxExecute with redirection:\n")); |
2c8e4738 | 571 | wxArrayString output; |
f2cb8a17 | 572 | if ( wxExecute(_T(REDIRECT_COMMAND), output) != 0 ) |
2c8e4738 | 573 | { |
456ae26d | 574 | wxPuts(_T("ERROR.")); |
2c8e4738 VZ |
575 | } |
576 | else | |
577 | { | |
578 | size_t count = output.GetCount(); | |
579 | for ( size_t n = 0; n < count; n++ ) | |
580 | { | |
456ae26d | 581 | wxPrintf(_T("\t%s\n"), output[n].c_str()); |
2c8e4738 VZ |
582 | } |
583 | ||
456ae26d | 584 | wxPuts(_T("Ok.")); |
2c8e4738 | 585 | } |
d93c719a VZ |
586 | } |
587 | ||
588 | #endif // TEST_EXECUTE | |
589 | ||
f6bcfd97 BP |
590 | // ---------------------------------------------------------------------------- |
591 | // file | |
592 | // ---------------------------------------------------------------------------- | |
593 | ||
594 | #ifdef TEST_FILE | |
595 | ||
e84010cf GD |
596 | #include "wx/file.h" |
597 | #include "wx/ffile.h" | |
598 | #include "wx/textfile.h" | |
f6bcfd97 BP |
599 | |
600 | static void TestFileRead() | |
601 | { | |
456ae26d | 602 | wxPuts(_T("*** wxFile read test ***")); |
f6bcfd97 BP |
603 | |
604 | wxFile file(_T("testdata.fc")); | |
605 | if ( file.IsOpened() ) | |
606 | { | |
456ae26d | 607 | wxPrintf(_T("File length: %lu\n"), file.Length()); |
f6bcfd97 | 608 | |
456ae26d | 609 | wxPuts(_T("File dump:\n----------")); |
f6bcfd97 | 610 | |
30984dea | 611 | static const size_t len = 1024; |
456ae26d | 612 | wxChar buf[len]; |
f6bcfd97 BP |
613 | for ( ;; ) |
614 | { | |
30984dea VZ |
615 | size_t nRead = file.Read(buf, len); |
616 | if ( nRead == (size_t)wxInvalidOffset ) | |
f6bcfd97 | 617 | { |
456ae26d | 618 | wxPrintf(_T("Failed to read the file.")); |
f6bcfd97 BP |
619 | break; |
620 | } | |
621 | ||
622 | fwrite(buf, nRead, 1, stdout); | |
623 | ||
624 | if ( nRead < len ) | |
625 | break; | |
626 | } | |
627 | ||
456ae26d | 628 | wxPuts(_T("----------")); |
f6bcfd97 BP |
629 | } |
630 | else | |
631 | { | |
456ae26d | 632 | wxPrintf(_T("ERROR: can't open test file.\n")); |
f6bcfd97 BP |
633 | } |
634 | ||
e9d2bb6f | 635 | wxPuts(wxEmptyString); |
f6bcfd97 BP |
636 | } |
637 | ||
638 | static void TestTextFileRead() | |
639 | { | |
456ae26d | 640 | wxPuts(_T("*** wxTextFile read test ***")); |
f6bcfd97 BP |
641 | |
642 | wxTextFile file(_T("testdata.fc")); | |
643 | if ( file.Open() ) | |
644 | { | |
456ae26d VZ |
645 | wxPrintf(_T("Number of lines: %u\n"), file.GetLineCount()); |
646 | wxPrintf(_T("Last line: '%s'\n"), file.GetLastLine().c_str()); | |
3ca6a5f0 BP |
647 | |
648 | wxString s; | |
649 | ||
456ae26d | 650 | wxPuts(_T("\nDumping the entire file:")); |
3ca6a5f0 BP |
651 | for ( s = file.GetFirstLine(); !file.Eof(); s = file.GetNextLine() ) |
652 | { | |
456ae26d | 653 | wxPrintf(_T("%6u: %s\n"), file.GetCurrentLine() + 1, s.c_str()); |
3ca6a5f0 | 654 | } |
456ae26d | 655 | wxPrintf(_T("%6u: %s\n"), file.GetCurrentLine() + 1, s.c_str()); |
3ca6a5f0 | 656 | |
456ae26d | 657 | wxPuts(_T("\nAnd now backwards:")); |
3ca6a5f0 BP |
658 | for ( s = file.GetLastLine(); |
659 | file.GetCurrentLine() != 0; | |
660 | s = file.GetPrevLine() ) | |
661 | { | |
456ae26d | 662 | wxPrintf(_T("%6u: %s\n"), file.GetCurrentLine() + 1, s.c_str()); |
3ca6a5f0 | 663 | } |
456ae26d | 664 | wxPrintf(_T("%6u: %s\n"), file.GetCurrentLine() + 1, s.c_str()); |
f6bcfd97 BP |
665 | } |
666 | else | |
667 | { | |
456ae26d | 668 | wxPrintf(_T("ERROR: can't open '%s'\n"), file.GetName()); |
f6bcfd97 BP |
669 | } |
670 | ||
e9d2bb6f | 671 | wxPuts(wxEmptyString); |
f6bcfd97 BP |
672 | } |
673 | ||
a339970a VZ |
674 | static void TestFileCopy() |
675 | { | |
456ae26d | 676 | wxPuts(_T("*** Testing wxCopyFile ***")); |
a339970a VZ |
677 | |
678 | static const wxChar *filename1 = _T("testdata.fc"); | |
679 | static const wxChar *filename2 = _T("test2"); | |
680 | if ( !wxCopyFile(filename1, filename2) ) | |
681 | { | |
456ae26d | 682 | wxPuts(_T("ERROR: failed to copy file")); |
a339970a VZ |
683 | } |
684 | else | |
685 | { | |
f2cb8a17 JS |
686 | wxFFile f1(filename1, _T("rb")), |
687 | f2(filename2, _T("rb")); | |
a339970a VZ |
688 | |
689 | if ( !f1.IsOpened() || !f2.IsOpened() ) | |
690 | { | |
456ae26d | 691 | wxPuts(_T("ERROR: failed to open file(s)")); |
a339970a VZ |
692 | } |
693 | else | |
694 | { | |
695 | wxString s1, s2; | |
696 | if ( !f1.ReadAll(&s1) || !f2.ReadAll(&s2) ) | |
697 | { | |
456ae26d | 698 | wxPuts(_T("ERROR: failed to read file(s)")); |
a339970a VZ |
699 | } |
700 | else | |
701 | { | |
702 | if ( (s1.length() != s2.length()) || | |
703 | (memcmp(s1.c_str(), s2.c_str(), s1.length()) != 0) ) | |
704 | { | |
456ae26d | 705 | wxPuts(_T("ERROR: copy error!")); |
a339970a VZ |
706 | } |
707 | else | |
708 | { | |
456ae26d | 709 | wxPuts(_T("File was copied ok.")); |
a339970a VZ |
710 | } |
711 | } | |
712 | } | |
713 | } | |
714 | ||
715 | if ( !wxRemoveFile(filename2) ) | |
716 | { | |
456ae26d | 717 | wxPuts(_T("ERROR: failed to remove the file")); |
a339970a VZ |
718 | } |
719 | ||
e9d2bb6f | 720 | wxPuts(wxEmptyString); |
a339970a VZ |
721 | } |
722 | ||
59062ec1 VZ |
723 | static void TestTempFile() |
724 | { | |
725 | wxPuts(_T("*** wxTempFile test ***")); | |
726 | ||
727 | wxTempFile tmpFile; | |
728 | if ( tmpFile.Open(_T("test2")) && tmpFile.Write(_T("the answer is 42")) ) | |
729 | { | |
730 | if ( tmpFile.Commit() ) | |
731 | wxPuts(_T("File committed.")); | |
732 | else | |
733 | wxPuts(_T("ERROR: could't commit temp file.")); | |
734 | ||
735 | wxRemoveFile(_T("test2")); | |
736 | } | |
737 | ||
738 | wxPuts(wxEmptyString); | |
739 | } | |
740 | ||
f6bcfd97 BP |
741 | #endif // TEST_FILE |
742 | ||
ee6e1b1d VZ |
743 | // ---------------------------------------------------------------------------- |
744 | // wxFileConfig | |
745 | // ---------------------------------------------------------------------------- | |
746 | ||
747 | #ifdef TEST_FILECONF | |
748 | ||
e84010cf GD |
749 | #include "wx/confbase.h" |
750 | #include "wx/fileconf.h" | |
ee6e1b1d VZ |
751 | |
752 | static const struct FileConfTestData | |
753 | { | |
754 | const wxChar *name; // value name | |
755 | const wxChar *value; // the value from the file | |
756 | } fcTestData[] = | |
757 | { | |
758 | { _T("value1"), _T("one") }, | |
759 | { _T("value2"), _T("two") }, | |
760 | { _T("novalue"), _T("default") }, | |
761 | }; | |
762 | ||
763 | static void TestFileConfRead() | |
764 | { | |
456ae26d | 765 | wxPuts(_T("*** testing wxFileConfig loading/reading ***")); |
ee6e1b1d VZ |
766 | |
767 | wxFileConfig fileconf(_T("test"), wxEmptyString, | |
768 | _T("testdata.fc"), wxEmptyString, | |
769 | wxCONFIG_USE_RELATIVE_PATH); | |
770 | ||
771 | // test simple reading | |
456ae26d | 772 | wxPuts(_T("\nReading config file:")); |
ee6e1b1d VZ |
773 | wxString defValue(_T("default")), value; |
774 | for ( size_t n = 0; n < WXSIZEOF(fcTestData); n++ ) | |
775 | { | |
776 | const FileConfTestData& data = fcTestData[n]; | |
777 | value = fileconf.Read(data.name, defValue); | |
456ae26d | 778 | wxPrintf(_T("\t%s = %s "), data.name, value.c_str()); |
ee6e1b1d VZ |
779 | if ( value == data.value ) |
780 | { | |
456ae26d | 781 | wxPuts(_T("(ok)")); |
ee6e1b1d VZ |
782 | } |
783 | else | |
784 | { | |
456ae26d | 785 | wxPrintf(_T("(ERROR: should be %s)\n"), data.value); |
ee6e1b1d VZ |
786 | } |
787 | } | |
788 | ||
789 | // test enumerating the entries | |
456ae26d | 790 | wxPuts(_T("\nEnumerating all root entries:")); |
ee6e1b1d VZ |
791 | long dummy; |
792 | wxString name; | |
793 | bool cont = fileconf.GetFirstEntry(name, dummy); | |
794 | while ( cont ) | |
795 | { | |
456ae26d | 796 | wxPrintf(_T("\t%s = %s\n"), |
ee6e1b1d VZ |
797 | name.c_str(), |
798 | fileconf.Read(name.c_str(), _T("ERROR")).c_str()); | |
799 | ||
800 | cont = fileconf.GetNextEntry(name, dummy); | |
801 | } | |
7e0777da VZ |
802 | |
803 | static const wxChar *testEntry = _T("TestEntry"); | |
804 | wxPrintf(_T("\nTesting deletion of newly created \"Test\" entry: ")); | |
805 | fileconf.Write(testEntry, _T("A value")); | |
806 | fileconf.DeleteEntry(testEntry); | |
807 | wxPrintf(fileconf.HasEntry(testEntry) ? _T("ERROR\n") : _T("ok\n")); | |
ee6e1b1d VZ |
808 | } |
809 | ||
810 | #endif // TEST_FILECONF | |
811 | ||
844f90fb VZ |
812 | // ---------------------------------------------------------------------------- |
813 | // wxFileName | |
814 | // ---------------------------------------------------------------------------- | |
815 | ||
816 | #ifdef TEST_FILENAME | |
817 | ||
e84010cf | 818 | #include "wx/filename.h" |
844f90fb | 819 | |
e9d2bb6f | 820 | #if 0 |
5bc1deeb | 821 | static void DumpFileName(const wxChar *desc, const wxFileName& fn) |
81f25632 | 822 | { |
5bc1deeb VZ |
823 | wxPuts(desc); |
824 | ||
81f25632 VZ |
825 | wxString full = fn.GetFullPath(); |
826 | ||
827 | wxString vol, path, name, ext; | |
828 | wxFileName::SplitPath(full, &vol, &path, &name, &ext); | |
829 | ||
a5b7374f | 830 | wxPrintf(_T("'%s'-> vol '%s', path '%s', name '%s', ext '%s'\n"), |
81f25632 | 831 | full.c_str(), vol.c_str(), path.c_str(), name.c_str(), ext.c_str()); |
a5b7374f VZ |
832 | |
833 | wxFileName::SplitPath(full, &path, &name, &ext); | |
834 | wxPrintf(_T("or\t\t-> path '%s', name '%s', ext '%s'\n"), | |
835 | path.c_str(), name.c_str(), ext.c_str()); | |
836 | ||
837 | wxPrintf(_T("path is also:\t'%s'\n"), fn.GetPath().c_str()); | |
838 | wxPrintf(_T("with volume: \t'%s'\n"), | |
839 | fn.GetPath(wxPATH_GET_VOLUME).c_str()); | |
840 | wxPrintf(_T("with separator:\t'%s'\n"), | |
841 | fn.GetPath(wxPATH_GET_SEPARATOR).c_str()); | |
842 | wxPrintf(_T("with both: \t'%s'\n"), | |
843 | fn.GetPath(wxPATH_GET_SEPARATOR | wxPATH_GET_VOLUME).c_str()); | |
9cb47ea2 VZ |
844 | |
845 | wxPuts(_T("The directories in the path are:")); | |
846 | wxArrayString dirs = fn.GetDirs(); | |
847 | size_t count = dirs.GetCount(); | |
848 | for ( size_t n = 0; n < count; n++ ) | |
849 | { | |
850 | wxPrintf(_T("\t%u: %s\n"), n, dirs[n].c_str()); | |
851 | } | |
81f25632 | 852 | } |
e9d2bb6f | 853 | #endif |
81f25632 | 854 | |
ade35f11 VZ |
855 | static void TestFileNameTemp() |
856 | { | |
456ae26d | 857 | wxPuts(_T("*** testing wxFileName temp file creation ***")); |
ade35f11 | 858 | |
456ae26d | 859 | static const wxChar *tmpprefixes[] = |
ade35f11 | 860 | { |
456ae26d VZ |
861 | _T(""), |
862 | _T("foo"), | |
863 | _T(".."), | |
864 | _T("../bar"), | |
a2fa5040 | 865 | #ifdef __UNIX__ |
456ae26d VZ |
866 | _T("/tmp/foo"), |
867 | _T("/tmp/foo/bar"), // this one must be an error | |
a2fa5040 | 868 | #endif // __UNIX__ |
ade35f11 VZ |
869 | }; |
870 | ||
871 | for ( size_t n = 0; n < WXSIZEOF(tmpprefixes); n++ ) | |
872 | { | |
873 | wxString path = wxFileName::CreateTempFileName(tmpprefixes[n]); | |
2db991f4 VZ |
874 | if ( path.empty() ) |
875 | { | |
876 | // "error" is not in upper case because it may be ok | |
456ae26d | 877 | wxPrintf(_T("Prefix '%s'\t-> error\n"), tmpprefixes[n]); |
2db991f4 VZ |
878 | } |
879 | else | |
ade35f11 | 880 | { |
456ae26d | 881 | wxPrintf(_T("Prefix '%s'\t-> temp file '%s'\n"), |
ade35f11 VZ |
882 | tmpprefixes[n], path.c_str()); |
883 | ||
884 | if ( !wxRemoveFile(path) ) | |
885 | { | |
456ae26d VZ |
886 | wxLogWarning(_T("Failed to remove temp file '%s'"), |
887 | path.c_str()); | |
ade35f11 VZ |
888 | } |
889 | } | |
890 | } | |
891 | } | |
892 | ||
0aa29b6b VZ |
893 | static void TestFileNameDirManip() |
894 | { | |
895 | // TODO: test AppendDir(), RemoveDir(), ... | |
896 | } | |
897 | ||
844f90fb VZ |
898 | static void TestFileNameComparison() |
899 | { | |
900 | // TODO! | |
901 | } | |
902 | ||
903 | static void TestFileNameOperations() | |
904 | { | |
905 | // TODO! | |
906 | } | |
907 | ||
908 | static void TestFileNameCwd() | |
909 | { | |
910 | // TODO! | |
911 | } | |
912 | ||
913 | #endif // TEST_FILENAME | |
914 | ||
d56e2b97 VZ |
915 | // ---------------------------------------------------------------------------- |
916 | // wxFileName time functions | |
917 | // ---------------------------------------------------------------------------- | |
918 | ||
919 | #ifdef TEST_FILETIME | |
920 | ||
b20edf8b WS |
921 | #include "wx/filename.h" |
922 | #include "wx/datetime.h" | |
d56e2b97 VZ |
923 | |
924 | static void TestFileGetTimes() | |
925 | { | |
926 | wxFileName fn(_T("testdata.fc")); | |
927 | ||
6dbb903b VZ |
928 | wxDateTime dtAccess, dtMod, dtCreate; |
929 | if ( !fn.GetTimes(&dtAccess, &dtMod, &dtCreate) ) | |
d56e2b97 VZ |
930 | { |
931 | wxPrintf(_T("ERROR: GetTimes() failed.\n")); | |
932 | } | |
933 | else | |
934 | { | |
935 | static const wxChar *fmt = _T("%Y-%b-%d %H:%M:%S"); | |
936 | ||
937 | wxPrintf(_T("File times for '%s':\n"), fn.GetFullPath().c_str()); | |
6dbb903b VZ |
938 | wxPrintf(_T("Creation: \t%s\n"), dtCreate.Format(fmt).c_str()); |
939 | wxPrintf(_T("Last read: \t%s\n"), dtAccess.Format(fmt).c_str()); | |
940 | wxPrintf(_T("Last write: \t%s\n"), dtMod.Format(fmt).c_str()); | |
d56e2b97 VZ |
941 | } |
942 | } | |
943 | ||
e9d2bb6f | 944 | #if 0 |
d56e2b97 VZ |
945 | static void TestFileSetTimes() |
946 | { | |
947 | wxFileName fn(_T("testdata.fc")); | |
948 | ||
d56e2b97 VZ |
949 | if ( !fn.Touch() ) |
950 | { | |
951 | wxPrintf(_T("ERROR: Touch() failed.\n")); | |
952 | } | |
953 | } | |
e9d2bb6f | 954 | #endif |
d56e2b97 VZ |
955 | |
956 | #endif // TEST_FILETIME | |
957 | ||
ec37df57 VZ |
958 | // ---------------------------------------------------------------------------- |
959 | // wxLocale | |
960 | // ---------------------------------------------------------------------------- | |
961 | ||
962 | #ifdef TEST_LOCALE | |
963 | ||
964 | #include "wx/intl.h" | |
965 | #include "wx/utils.h" // for wxSetEnv | |
966 | ||
967 | static wxLocale gs_localeDefault(wxLANGUAGE_ENGLISH); | |
968 | ||
969 | // find the name of the language from its value | |
456ae26d VZ |
970 | static const wxChar *GetLangName(int lang) |
971 | { | |
972 | static const wxChar *languageNames[] = | |
973 | { | |
974 | _T("DEFAULT"), | |
975 | _T("UNKNOWN"), | |
976 | _T("ABKHAZIAN"), | |
977 | _T("AFAR"), | |
978 | _T("AFRIKAANS"), | |
979 | _T("ALBANIAN"), | |
980 | _T("AMHARIC"), | |
981 | _T("ARABIC"), | |
982 | _T("ARABIC_ALGERIA"), | |
983 | _T("ARABIC_BAHRAIN"), | |
984 | _T("ARABIC_EGYPT"), | |
985 | _T("ARABIC_IRAQ"), | |
986 | _T("ARABIC_JORDAN"), | |
987 | _T("ARABIC_KUWAIT"), | |
988 | _T("ARABIC_LEBANON"), | |
989 | _T("ARABIC_LIBYA"), | |
990 | _T("ARABIC_MOROCCO"), | |
991 | _T("ARABIC_OMAN"), | |
992 | _T("ARABIC_QATAR"), | |
993 | _T("ARABIC_SAUDI_ARABIA"), | |
994 | _T("ARABIC_SUDAN"), | |
995 | _T("ARABIC_SYRIA"), | |
996 | _T("ARABIC_TUNISIA"), | |
997 | _T("ARABIC_UAE"), | |
998 | _T("ARABIC_YEMEN"), | |
999 | _T("ARMENIAN"), | |
1000 | _T("ASSAMESE"), | |
1001 | _T("AYMARA"), | |
1002 | _T("AZERI"), | |
1003 | _T("AZERI_CYRILLIC"), | |
1004 | _T("AZERI_LATIN"), | |
1005 | _T("BASHKIR"), | |
1006 | _T("BASQUE"), | |
1007 | _T("BELARUSIAN"), | |
1008 | _T("BENGALI"), | |
1009 | _T("BHUTANI"), | |
1010 | _T("BIHARI"), | |
1011 | _T("BISLAMA"), | |
1012 | _T("BRETON"), | |
1013 | _T("BULGARIAN"), | |
1014 | _T("BURMESE"), | |
1015 | _T("CAMBODIAN"), | |
1016 | _T("CATALAN"), | |
1017 | _T("CHINESE"), | |
1018 | _T("CHINESE_SIMPLIFIED"), | |
1019 | _T("CHINESE_TRADITIONAL"), | |
1020 | _T("CHINESE_HONGKONG"), | |
1021 | _T("CHINESE_MACAU"), | |
1022 | _T("CHINESE_SINGAPORE"), | |
1023 | _T("CHINESE_TAIWAN"), | |
1024 | _T("CORSICAN"), | |
1025 | _T("CROATIAN"), | |
1026 | _T("CZECH"), | |
1027 | _T("DANISH"), | |
1028 | _T("DUTCH"), | |
1029 | _T("DUTCH_BELGIAN"), | |
1030 | _T("ENGLISH"), | |
1031 | _T("ENGLISH_UK"), | |
1032 | _T("ENGLISH_US"), | |
1033 | _T("ENGLISH_AUSTRALIA"), | |
1034 | _T("ENGLISH_BELIZE"), | |
1035 | _T("ENGLISH_BOTSWANA"), | |
1036 | _T("ENGLISH_CANADA"), | |
1037 | _T("ENGLISH_CARIBBEAN"), | |
1038 | _T("ENGLISH_DENMARK"), | |
1039 | _T("ENGLISH_EIRE"), | |
1040 | _T("ENGLISH_JAMAICA"), | |
1041 | _T("ENGLISH_NEW_ZEALAND"), | |
1042 | _T("ENGLISH_PHILIPPINES"), | |
1043 | _T("ENGLISH_SOUTH_AFRICA"), | |
1044 | _T("ENGLISH_TRINIDAD"), | |
1045 | _T("ENGLISH_ZIMBABWE"), | |
1046 | _T("ESPERANTO"), | |
1047 | _T("ESTONIAN"), | |
1048 | _T("FAEROESE"), | |
1049 | _T("FARSI"), | |
1050 | _T("FIJI"), | |
1051 | _T("FINNISH"), | |
1052 | _T("FRENCH"), | |
1053 | _T("FRENCH_BELGIAN"), | |
1054 | _T("FRENCH_CANADIAN"), | |
1055 | _T("FRENCH_LUXEMBOURG"), | |
1056 | _T("FRENCH_MONACO"), | |
1057 | _T("FRENCH_SWISS"), | |
1058 | _T("FRISIAN"), | |
1059 | _T("GALICIAN"), | |
1060 | _T("GEORGIAN"), | |
1061 | _T("GERMAN"), | |
1062 | _T("GERMAN_AUSTRIAN"), | |
1063 | _T("GERMAN_BELGIUM"), | |
1064 | _T("GERMAN_LIECHTENSTEIN"), | |
1065 | _T("GERMAN_LUXEMBOURG"), | |
1066 | _T("GERMAN_SWISS"), | |
1067 | _T("GREEK"), | |
1068 | _T("GREENLANDIC"), | |
1069 | _T("GUARANI"), | |
1070 | _T("GUJARATI"), | |
1071 | _T("HAUSA"), | |
1072 | _T("HEBREW"), | |
1073 | _T("HINDI"), | |
1074 | _T("HUNGARIAN"), | |
1075 | _T("ICELANDIC"), | |
1076 | _T("INDONESIAN"), | |
1077 | _T("INTERLINGUA"), | |
1078 | _T("INTERLINGUE"), | |
1079 | _T("INUKTITUT"), | |
1080 | _T("INUPIAK"), | |
1081 | _T("IRISH"), | |
1082 | _T("ITALIAN"), | |
1083 | _T("ITALIAN_SWISS"), | |
1084 | _T("JAPANESE"), | |
1085 | _T("JAVANESE"), | |
1086 | _T("KANNADA"), | |
1087 | _T("KASHMIRI"), | |
1088 | _T("KASHMIRI_INDIA"), | |
1089 | _T("KAZAKH"), | |
1090 | _T("KERNEWEK"), | |
1091 | _T("KINYARWANDA"), | |
1092 | _T("KIRGHIZ"), | |
1093 | _T("KIRUNDI"), | |
1094 | _T("KONKANI"), | |
1095 | _T("KOREAN"), | |
1096 | _T("KURDISH"), | |
1097 | _T("LAOTHIAN"), | |
1098 | _T("LATIN"), | |
1099 | _T("LATVIAN"), | |
1100 | _T("LINGALA"), | |
1101 | _T("LITHUANIAN"), | |
1102 | _T("MACEDONIAN"), | |
1103 | _T("MALAGASY"), | |
1104 | _T("MALAY"), | |
1105 | _T("MALAYALAM"), | |
1106 | _T("MALAY_BRUNEI_DARUSSALAM"), | |
1107 | _T("MALAY_MALAYSIA"), | |
1108 | _T("MALTESE"), | |
1109 | _T("MANIPURI"), | |
1110 | _T("MAORI"), | |
1111 | _T("MARATHI"), | |
1112 | _T("MOLDAVIAN"), | |
1113 | _T("MONGOLIAN"), | |
1114 | _T("NAURU"), | |
1115 | _T("NEPALI"), | |
1116 | _T("NEPALI_INDIA"), | |
1117 | _T("NORWEGIAN_BOKMAL"), | |
1118 | _T("NORWEGIAN_NYNORSK"), | |
1119 | _T("OCCITAN"), | |
1120 | _T("ORIYA"), | |
1121 | _T("OROMO"), | |
1122 | _T("PASHTO"), | |
1123 | _T("POLISH"), | |
1124 | _T("PORTUGUESE"), | |
1125 | _T("PORTUGUESE_BRAZILIAN"), | |
1126 | _T("PUNJABI"), | |
1127 | _T("QUECHUA"), | |
1128 | _T("RHAETO_ROMANCE"), | |
1129 | _T("ROMANIAN"), | |
1130 | _T("RUSSIAN"), | |
1131 | _T("RUSSIAN_UKRAINE"), | |
1132 | _T("SAMOAN"), | |
1133 | _T("SANGHO"), | |
1134 | _T("SANSKRIT"), | |
1135 | _T("SCOTS_GAELIC"), | |
1136 | _T("SERBIAN"), | |
1137 | _T("SERBIAN_CYRILLIC"), | |
1138 | _T("SERBIAN_LATIN"), | |
1139 | _T("SERBO_CROATIAN"), | |
1140 | _T("SESOTHO"), | |
1141 | _T("SETSWANA"), | |
1142 | _T("SHONA"), | |
1143 | _T("SINDHI"), | |
1144 | _T("SINHALESE"), | |
1145 | _T("SISWATI"), | |
1146 | _T("SLOVAK"), | |
1147 | _T("SLOVENIAN"), | |
1148 | _T("SOMALI"), | |
1149 | _T("SPANISH"), | |
1150 | _T("SPANISH_ARGENTINA"), | |
1151 | _T("SPANISH_BOLIVIA"), | |
1152 | _T("SPANISH_CHILE"), | |
1153 | _T("SPANISH_COLOMBIA"), | |
1154 | _T("SPANISH_COSTA_RICA"), | |
1155 | _T("SPANISH_DOMINICAN_REPUBLIC"), | |
1156 | _T("SPANISH_ECUADOR"), | |
1157 | _T("SPANISH_EL_SALVADOR"), | |
1158 | _T("SPANISH_GUATEMALA"), | |
1159 | _T("SPANISH_HONDURAS"), | |
1160 | _T("SPANISH_MEXICAN"), | |
1161 | _T("SPANISH_MODERN"), | |
1162 | _T("SPANISH_NICARAGUA"), | |
1163 | _T("SPANISH_PANAMA"), | |
1164 | _T("SPANISH_PARAGUAY"), | |
1165 | _T("SPANISH_PERU"), | |
1166 | _T("SPANISH_PUERTO_RICO"), | |
1167 | _T("SPANISH_URUGUAY"), | |
1168 | _T("SPANISH_US"), | |
1169 | _T("SPANISH_VENEZUELA"), | |
1170 | _T("SUNDANESE"), | |
1171 | _T("SWAHILI"), | |
1172 | _T("SWEDISH"), | |
1173 | _T("SWEDISH_FINLAND"), | |
1174 | _T("TAGALOG"), | |
1175 | _T("TAJIK"), | |
1176 | _T("TAMIL"), | |
1177 | _T("TATAR"), | |
1178 | _T("TELUGU"), | |
1179 | _T("THAI"), | |
1180 | _T("TIBETAN"), | |
1181 | _T("TIGRINYA"), | |
1182 | _T("TONGA"), | |
1183 | _T("TSONGA"), | |
1184 | _T("TURKISH"), | |
1185 | _T("TURKMEN"), | |
1186 | _T("TWI"), | |
1187 | _T("UIGHUR"), | |
1188 | _T("UKRAINIAN"), | |
1189 | _T("URDU"), | |
1190 | _T("URDU_INDIA"), | |
1191 | _T("URDU_PAKISTAN"), | |
1192 | _T("UZBEK"), | |
1193 | _T("UZBEK_CYRILLIC"), | |
1194 | _T("UZBEK_LATIN"), | |
1195 | _T("VIETNAMESE"), | |
1196 | _T("VOLAPUK"), | |
1197 | _T("WELSH"), | |
1198 | _T("WOLOF"), | |
1199 | _T("XHOSA"), | |
1200 | _T("YIDDISH"), | |
1201 | _T("YORUBA"), | |
1202 | _T("ZHUANG"), | |
1203 | _T("ZULU"), | |
ec37df57 VZ |
1204 | }; |
1205 | ||
1206 | if ( (size_t)lang < WXSIZEOF(languageNames) ) | |
1207 | return languageNames[lang]; | |
1208 | else | |
456ae26d | 1209 | return _T("INVALID"); |
ec37df57 VZ |
1210 | } |
1211 | ||
1212 | static void TestDefaultLang() | |
1213 | { | |
456ae26d | 1214 | wxPuts(_T("*** Testing wxLocale::GetSystemLanguage ***")); |
ec37df57 VZ |
1215 | |
1216 | static const wxChar *langStrings[] = | |
1217 | { | |
1218 | NULL, // system default | |
1219 | _T("C"), | |
1220 | _T("fr"), | |
1221 | _T("fr_FR"), | |
1222 | _T("en"), | |
1223 | _T("en_GB"), | |
1224 | _T("en_US"), | |
1225 | _T("de_DE.iso88591"), | |
1226 | _T("german"), | |
1227 | _T("?"), // invalid lang spec | |
1228 | _T("klingonese"), // I bet on some systems it does exist... | |
1229 | }; | |
1230 | ||
dccce9ea VZ |
1231 | wxPrintf(_T("The default system encoding is %s (%d)\n"), |
1232 | wxLocale::GetSystemEncodingName().c_str(), | |
1233 | wxLocale::GetSystemEncoding()); | |
1234 | ||
ec37df57 VZ |
1235 | for ( size_t n = 0; n < WXSIZEOF(langStrings); n++ ) |
1236 | { | |
456ae26d | 1237 | const wxChar *langStr = langStrings[n]; |
ec37df57 | 1238 | if ( langStr ) |
dccce9ea VZ |
1239 | { |
1240 | // FIXME: this doesn't do anything at all under Windows, we need | |
1241 | // to create a new wxLocale! | |
ec37df57 | 1242 | wxSetEnv(_T("LC_ALL"), langStr); |
dccce9ea | 1243 | } |
ec37df57 VZ |
1244 | |
1245 | int lang = gs_localeDefault.GetSystemLanguage(); | |
456ae26d VZ |
1246 | wxPrintf(_T("Locale for '%s' is %s.\n"), |
1247 | langStr ? langStr : _T("system default"), GetLangName(lang)); | |
ec37df57 VZ |
1248 | } |
1249 | } | |
1250 | ||
1251 | #endif // TEST_LOCALE | |
1252 | ||
696e1ea0 VZ |
1253 | // ---------------------------------------------------------------------------- |
1254 | // MIME types | |
1255 | // ---------------------------------------------------------------------------- | |
1256 | ||
1257 | #ifdef TEST_MIME | |
1258 | ||
e84010cf | 1259 | #include "wx/mimetype.h" |
696e1ea0 VZ |
1260 | |
1261 | static void TestMimeEnum() | |
1262 | { | |
a6c65e88 VZ |
1263 | wxPuts(_T("*** Testing wxMimeTypesManager::EnumAllFileTypes() ***\n")); |
1264 | ||
696e1ea0 VZ |
1265 | wxArrayString mimetypes; |
1266 | ||
39189b9d | 1267 | size_t count = wxTheMimeTypesManager->EnumAllFileTypes(mimetypes); |
696e1ea0 | 1268 | |
456ae26d | 1269 | wxPrintf(_T("*** All %u known filetypes: ***\n"), count); |
696e1ea0 VZ |
1270 | |
1271 | wxArrayString exts; | |
1272 | wxString desc; | |
1273 | ||
1274 | for ( size_t n = 0; n < count; n++ ) | |
1275 | { | |
39189b9d VZ |
1276 | wxFileType *filetype = |
1277 | wxTheMimeTypesManager->GetFileTypeFromMimeType(mimetypes[n]); | |
696e1ea0 | 1278 | if ( !filetype ) |
c61f4f6d | 1279 | { |
456ae26d | 1280 | wxPrintf(_T("nothing known about the filetype '%s'!\n"), |
97e0ceea | 1281 | mimetypes[n].c_str()); |
696e1ea0 | 1282 | continue; |
c61f4f6d VZ |
1283 | } |
1284 | ||
696e1ea0 VZ |
1285 | filetype->GetDescription(&desc); |
1286 | filetype->GetExtensions(exts); | |
1287 | ||
299fcbfe VZ |
1288 | filetype->GetIcon(NULL); |
1289 | ||
696e1ea0 VZ |
1290 | wxString extsAll; |
1291 | for ( size_t e = 0; e < exts.GetCount(); e++ ) | |
1292 | { | |
1293 | if ( e > 0 ) | |
1294 | extsAll << _T(", "); | |
1295 | extsAll += exts[e]; | |
1296 | } | |
1297 | ||
456ae26d | 1298 | wxPrintf(_T("\t%s: %s (%s)\n"), |
54acce90 | 1299 | mimetypes[n].c_str(), desc.c_str(), extsAll.c_str()); |
696e1ea0 | 1300 | } |
39189b9d | 1301 | |
e9d2bb6f | 1302 | wxPuts(wxEmptyString); |
696e1ea0 VZ |
1303 | } |
1304 | ||
f6bcfd97 BP |
1305 | static void TestMimeOverride() |
1306 | { | |
1307 | wxPuts(_T("*** Testing wxMimeTypesManager additional files loading ***\n")); | |
1308 | ||
39189b9d VZ |
1309 | static const wxChar *mailcap = _T("/tmp/mailcap"); |
1310 | static const wxChar *mimetypes = _T("/tmp/mime.types"); | |
1311 | ||
1312 | if ( wxFile::Exists(mailcap) ) | |
1313 | wxPrintf(_T("Loading mailcap from '%s': %s\n"), | |
1314 | mailcap, | |
1315 | wxTheMimeTypesManager->ReadMailcap(mailcap) ? _T("ok") : _T("ERROR")); | |
1316 | else | |
1317 | wxPrintf(_T("WARN: mailcap file '%s' doesn't exist, not loaded.\n"), | |
1318 | mailcap); | |
f6bcfd97 | 1319 | |
39189b9d VZ |
1320 | if ( wxFile::Exists(mimetypes) ) |
1321 | wxPrintf(_T("Loading mime.types from '%s': %s\n"), | |
1322 | mimetypes, | |
1323 | wxTheMimeTypesManager->ReadMimeTypes(mimetypes) ? _T("ok") : _T("ERROR")); | |
1324 | else | |
1325 | wxPrintf(_T("WARN: mime.types file '%s' doesn't exist, not loaded.\n"), | |
1326 | mimetypes); | |
1327 | ||
e9d2bb6f | 1328 | wxPuts(wxEmptyString); |
f6bcfd97 BP |
1329 | } |
1330 | ||
1331 | static void TestMimeFilename() | |
1332 | { | |
1333 | wxPuts(_T("*** Testing MIME type from filename query ***\n")); | |
1334 | ||
1335 | static const wxChar *filenames[] = | |
1336 | { | |
1337 | _T("readme.txt"), | |
1338 | _T("document.pdf"), | |
1339 | _T("image.gif"), | |
f06ef5f4 | 1340 | _T("picture.jpeg"), |
f6bcfd97 BP |
1341 | }; |
1342 | ||
1343 | for ( size_t n = 0; n < WXSIZEOF(filenames); n++ ) | |
1344 | { | |
1345 | const wxString fname = filenames[n]; | |
1346 | wxString ext = fname.AfterLast(_T('.')); | |
39189b9d | 1347 | wxFileType *ft = wxTheMimeTypesManager->GetFileTypeFromExtension(ext); |
f6bcfd97 BP |
1348 | if ( !ft ) |
1349 | { | |
1350 | wxPrintf(_T("WARNING: extension '%s' is unknown.\n"), ext.c_str()); | |
1351 | } | |
1352 | else | |
1353 | { | |
1354 | wxString desc; | |
1355 | if ( !ft->GetDescription(&desc) ) | |
1356 | desc = _T("<no description>"); | |
1357 | ||
1358 | wxString cmd; | |
1359 | if ( !ft->GetOpenCommand(&cmd, | |
e9d2bb6f | 1360 | wxFileType::MessageParameters(fname, wxEmptyString)) ) |
f6bcfd97 | 1361 | cmd = _T("<no command available>"); |
7aeebdcd | 1362 | else |
2b5f62a0 | 1363 | cmd = wxString(_T('"')) + cmd + _T('"'); |
f6bcfd97 | 1364 | |
7aeebdcd | 1365 | wxPrintf(_T("To open %s (%s) do %s.\n"), |
f6bcfd97 BP |
1366 | fname.c_str(), desc.c_str(), cmd.c_str()); |
1367 | ||
1368 | delete ft; | |
1369 | } | |
1370 | } | |
39189b9d | 1371 | |
e9d2bb6f | 1372 | wxPuts(wxEmptyString); |
f6bcfd97 BP |
1373 | } |
1374 | ||
c7ce8392 VZ |
1375 | static void TestMimeAssociate() |
1376 | { | |
1377 | wxPuts(_T("*** Testing creation of filetype association ***\n")); | |
1378 | ||
a6c65e88 VZ |
1379 | wxFileTypeInfo ftInfo( |
1380 | _T("application/x-xyz"), | |
1381 | _T("xyzview '%s'"), // open cmd | |
1382 | _T(""), // print cmd | |
df0dc216 VZ |
1383 | _T("XYZ File"), // description |
1384 | _T(".xyz"), // extensions | |
1385 | NULL // end of extensions | |
a6c65e88 VZ |
1386 | ); |
1387 | ftInfo.SetShortDesc(_T("XYZFile")); // used under Win32 only | |
1388 | ||
39189b9d | 1389 | wxFileType *ft = wxTheMimeTypesManager->Associate(ftInfo); |
c7ce8392 VZ |
1390 | if ( !ft ) |
1391 | { | |
1392 | wxPuts(_T("ERROR: failed to create association!")); | |
1393 | } | |
1394 | else | |
1395 | { | |
a6c65e88 | 1396 | // TODO: read it back |
c7ce8392 VZ |
1397 | delete ft; |
1398 | } | |
39189b9d | 1399 | |
e9d2bb6f | 1400 | wxPuts(wxEmptyString); |
c7ce8392 VZ |
1401 | } |
1402 | ||
696e1ea0 VZ |
1403 | #endif // TEST_MIME |
1404 | ||
af266e5b VZ |
1405 | // ---------------------------------------------------------------------------- |
1406 | // module dependencies feature | |
1407 | // ---------------------------------------------------------------------------- | |
1408 | ||
1409 | #ifdef TEST_MODULE | |
1410 | ||
1411 | #include "wx/module.h" | |
1412 | ||
1413 | class wxTestModule : public wxModule | |
1414 | { | |
1415 | protected: | |
1416 | virtual bool OnInit() { wxPrintf(_T("Load module: %s\n"), GetClassInfo()->GetClassName()); return true; } | |
1417 | virtual void OnExit() { wxPrintf(_T("Unload module: %s\n"), GetClassInfo()->GetClassName()); } | |
1418 | }; | |
1419 | ||
1420 | class wxTestModuleA : public wxTestModule | |
1421 | { | |
1422 | public: | |
1423 | wxTestModuleA(); | |
1424 | private: | |
1425 | DECLARE_DYNAMIC_CLASS(wxTestModuleA) | |
1426 | }; | |
1427 | ||
1428 | class wxTestModuleB : public wxTestModule | |
1429 | { | |
1430 | public: | |
1431 | wxTestModuleB(); | |
1432 | private: | |
1433 | DECLARE_DYNAMIC_CLASS(wxTestModuleB) | |
1434 | }; | |
1435 | ||
1436 | class wxTestModuleC : public wxTestModule | |
1437 | { | |
1438 | public: | |
1439 | wxTestModuleC(); | |
1440 | private: | |
1441 | DECLARE_DYNAMIC_CLASS(wxTestModuleC) | |
1442 | }; | |
1443 | ||
1444 | class wxTestModuleD : public wxTestModule | |
1445 | { | |
1446 | public: | |
1447 | wxTestModuleD(); | |
1448 | private: | |
1449 | DECLARE_DYNAMIC_CLASS(wxTestModuleD) | |
1450 | }; | |
1451 | ||
1452 | IMPLEMENT_DYNAMIC_CLASS(wxTestModuleC, wxModule) | |
1453 | wxTestModuleC::wxTestModuleC() | |
1454 | { | |
1455 | AddDependency(CLASSINFO(wxTestModuleD)); | |
1456 | } | |
1457 | ||
1458 | IMPLEMENT_DYNAMIC_CLASS(wxTestModuleA, wxModule) | |
1459 | wxTestModuleA::wxTestModuleA() | |
1460 | { | |
1461 | AddDependency(CLASSINFO(wxTestModuleB)); | |
1462 | AddDependency(CLASSINFO(wxTestModuleD)); | |
1463 | } | |
1464 | ||
1465 | IMPLEMENT_DYNAMIC_CLASS(wxTestModuleD, wxModule) | |
1466 | wxTestModuleD::wxTestModuleD() | |
1467 | { | |
1468 | } | |
1469 | ||
1470 | IMPLEMENT_DYNAMIC_CLASS(wxTestModuleB, wxModule) | |
1471 | wxTestModuleB::wxTestModuleB() | |
1472 | { | |
1473 | AddDependency(CLASSINFO(wxTestModuleD)); | |
1474 | AddDependency(CLASSINFO(wxTestModuleC)); | |
1475 | } | |
1476 | ||
1477 | #endif // TEST_MODULE | |
1478 | ||
89e60357 VZ |
1479 | // ---------------------------------------------------------------------------- |
1480 | // misc information functions | |
1481 | // ---------------------------------------------------------------------------- | |
1482 | ||
1483 | #ifdef TEST_INFO_FUNCTIONS | |
1484 | ||
e84010cf | 1485 | #include "wx/utils.h" |
89e60357 | 1486 | |
0219fd2f | 1487 | #if TEST_INTERACTIVE |
3a994742 VZ |
1488 | static void TestDiskInfo() |
1489 | { | |
456ae26d | 1490 | wxPuts(_T("*** Testing wxGetDiskSpace() ***")); |
3a994742 VZ |
1491 | |
1492 | for ( ;; ) | |
1493 | { | |
456ae26d VZ |
1494 | wxChar pathname[128]; |
1495 | wxPrintf(_T("\nEnter a directory name: ")); | |
1496 | if ( !wxFgets(pathname, WXSIZEOF(pathname), stdin) ) | |
3a994742 VZ |
1497 | break; |
1498 | ||
1499 | // kill the last '\n' | |
456ae26d | 1500 | pathname[wxStrlen(pathname) - 1] = 0; |
3a994742 VZ |
1501 | |
1502 | wxLongLong total, free; | |
1503 | if ( !wxGetDiskSpace(pathname, &total, &free) ) | |
1504 | { | |
1505 | wxPuts(_T("ERROR: wxGetDiskSpace failed.")); | |
1506 | } | |
1507 | else | |
1508 | { | |
eadd7bd2 VZ |
1509 | wxPrintf(_T("%sKb total, %sKb free on '%s'.\n"), |
1510 | (total / 1024).ToString().c_str(), | |
1511 | (free / 1024).ToString().c_str(), | |
3a994742 VZ |
1512 | pathname); |
1513 | } | |
1514 | } | |
1515 | } | |
0219fd2f | 1516 | #endif // TEST_INTERACTIVE |
3a994742 | 1517 | |
89e60357 VZ |
1518 | static void TestOsInfo() |
1519 | { | |
456ae26d | 1520 | wxPuts(_T("*** Testing OS info functions ***\n")); |
89e60357 VZ |
1521 | |
1522 | int major, minor; | |
1523 | wxGetOsVersion(&major, &minor); | |
456ae26d | 1524 | wxPrintf(_T("Running under: %s, version %d.%d\n"), |
89e60357 VZ |
1525 | wxGetOsDescription().c_str(), major, minor); |
1526 | ||
10d878a9 | 1527 | wxPrintf(_T("%ld free bytes of memory left.\n"), wxGetFreeMemory().ToLong()); |
89e60357 | 1528 | |
456ae26d | 1529 | wxPrintf(_T("Host name is %s (%s).\n"), |
89e60357 | 1530 | wxGetHostName().c_str(), wxGetFullHostName().c_str()); |
bd3277fe | 1531 | |
e9d2bb6f | 1532 | wxPuts(wxEmptyString); |
89e60357 VZ |
1533 | } |
1534 | ||
8bb6b2c0 VZ |
1535 | static void TestPlatformInfo() |
1536 | { | |
1537 | wxPuts(_T("*** Testing wxPlatformInfo functions ***\n")); | |
1538 | ||
1539 | // get this platform | |
1540 | wxPlatformInfo plat; | |
1541 | ||
1542 | wxPrintf(_T("Operating system family name is: %s\n"), plat.GetOperatingSystemFamilyName().c_str()); | |
1543 | wxPrintf(_T("Operating system name is: %s\n"), plat.GetOperatingSystemIdName().c_str()); | |
1544 | wxPrintf(_T("Port ID name is: %s\n"), plat.GetPortIdName().c_str()); | |
1545 | wxPrintf(_T("Port ID short name is: %s\n"), plat.GetPortIdShortName().c_str()); | |
1546 | wxPrintf(_T("Architecture is: %s\n"), plat.GetArchName().c_str()); | |
1547 | wxPrintf(_T("Endianness is: %s\n"), plat.GetEndiannessName().c_str()); | |
1548 | ||
1549 | wxPuts(wxEmptyString); | |
1550 | } | |
1551 | ||
89e60357 VZ |
1552 | static void TestUserInfo() |
1553 | { | |
456ae26d | 1554 | wxPuts(_T("*** Testing user info functions ***\n")); |
89e60357 | 1555 | |
456ae26d VZ |
1556 | wxPrintf(_T("User id is:\t%s\n"), wxGetUserId().c_str()); |
1557 | wxPrintf(_T("User name is:\t%s\n"), wxGetUserName().c_str()); | |
1558 | wxPrintf(_T("Home dir is:\t%s\n"), wxGetHomeDir().c_str()); | |
1559 | wxPrintf(_T("Email address:\t%s\n"), wxGetEmailAddress().c_str()); | |
bd3277fe | 1560 | |
e9d2bb6f | 1561 | wxPuts(wxEmptyString); |
89e60357 VZ |
1562 | } |
1563 | ||
1564 | #endif // TEST_INFO_FUNCTIONS | |
1565 | ||
39189b9d VZ |
1566 | // ---------------------------------------------------------------------------- |
1567 | // path list | |
1568 | // ---------------------------------------------------------------------------- | |
1569 | ||
1570 | #ifdef TEST_PATHLIST | |
1571 | ||
ee3ef281 VZ |
1572 | #ifdef __UNIX__ |
1573 | #define CMD_IN_PATH _T("ls") | |
1574 | #else | |
1575 | #define CMD_IN_PATH _T("command.com") | |
1576 | #endif | |
1577 | ||
39189b9d VZ |
1578 | static void TestPathList() |
1579 | { | |
456ae26d | 1580 | wxPuts(_T("*** Testing wxPathList ***\n")); |
39189b9d VZ |
1581 | |
1582 | wxPathList pathlist; | |
ee3ef281 VZ |
1583 | pathlist.AddEnvList(_T("PATH")); |
1584 | wxString path = pathlist.FindValidPath(CMD_IN_PATH); | |
39189b9d VZ |
1585 | if ( path.empty() ) |
1586 | { | |
456ae26d | 1587 | wxPrintf(_T("ERROR: command not found in the path.\n")); |
39189b9d VZ |
1588 | } |
1589 | else | |
1590 | { | |
456ae26d | 1591 | wxPrintf(_T("Command found in the path as '%s'.\n"), path.c_str()); |
39189b9d VZ |
1592 | } |
1593 | } | |
1594 | ||
1595 | #endif // TEST_PATHLIST | |
1596 | ||
07a56e45 VZ |
1597 | // ---------------------------------------------------------------------------- |
1598 | // regular expressions | |
1599 | // ---------------------------------------------------------------------------- | |
1600 | ||
1601 | #ifdef TEST_REGEX | |
1602 | ||
e84010cf | 1603 | #include "wx/regex.h" |
07a56e45 | 1604 | |
07a56e45 VZ |
1605 | static void TestRegExInteractive() |
1606 | { | |
1607 | wxPuts(_T("*** Testing RE interactively ***")); | |
1608 | ||
1609 | for ( ;; ) | |
1610 | { | |
456ae26d VZ |
1611 | wxChar pattern[128]; |
1612 | wxPrintf(_T("\nEnter a pattern: ")); | |
1613 | if ( !wxFgets(pattern, WXSIZEOF(pattern), stdin) ) | |
07a56e45 VZ |
1614 | break; |
1615 | ||
1616 | // kill the last '\n' | |
456ae26d | 1617 | pattern[wxStrlen(pattern) - 1] = 0; |
07a56e45 VZ |
1618 | |
1619 | wxRegEx re; | |
1620 | if ( !re.Compile(pattern) ) | |
1621 | { | |
1622 | continue; | |
1623 | } | |
1624 | ||
456ae26d | 1625 | wxChar text[128]; |
07a56e45 VZ |
1626 | for ( ;; ) |
1627 | { | |
456ae26d VZ |
1628 | wxPrintf(_T("Enter text to match: ")); |
1629 | if ( !wxFgets(text, WXSIZEOF(text), stdin) ) | |
07a56e45 VZ |
1630 | break; |
1631 | ||
1632 | // kill the last '\n' | |
456ae26d | 1633 | text[wxStrlen(text) - 1] = 0; |
07a56e45 VZ |
1634 | |
1635 | if ( !re.Matches(text) ) | |
1636 | { | |
456ae26d | 1637 | wxPrintf(_T("No match.\n")); |
07a56e45 VZ |
1638 | } |
1639 | else | |
1640 | { | |
456ae26d | 1641 | wxPrintf(_T("Pattern matches at '%s'\n"), re.GetMatch(text).c_str()); |
07a56e45 VZ |
1642 | |
1643 | size_t start, len; | |
1644 | for ( size_t n = 1; ; n++ ) | |
1645 | { | |
1646 | if ( !re.GetMatch(&start, &len, n) ) | |
1647 | { | |
1648 | break; | |
1649 | } | |
1650 | ||
456ae26d VZ |
1651 | wxPrintf(_T("Subexpr %u matched '%s'\n"), |
1652 | n, wxString(text + start, len).c_str()); | |
07a56e45 VZ |
1653 | } |
1654 | } | |
1655 | } | |
1656 | } | |
1657 | } | |
1658 | ||
1659 | #endif // TEST_REGEX | |
1660 | ||
8d5eff60 VZ |
1661 | // ---------------------------------------------------------------------------- |
1662 | // database | |
1663 | // ---------------------------------------------------------------------------- | |
1664 | ||
ba6ea19e VZ |
1665 | #if !wxUSE_ODBC |
1666 | #undef TEST_ODBC | |
1667 | #endif | |
1668 | ||
8d5eff60 VZ |
1669 | #ifdef TEST_ODBC |
1670 | ||
b20edf8b | 1671 | #include "wx/db.h" |
8d5eff60 VZ |
1672 | |
1673 | static void TestDbOpen() | |
1674 | { | |
1675 | HENV henv; | |
1676 | wxDb db(henv); | |
1677 | } | |
1678 | ||
1679 | #endif // TEST_ODBC | |
1680 | ||
7aeebdcd VZ |
1681 | // ---------------------------------------------------------------------------- |
1682 | // printf() tests | |
1683 | // ---------------------------------------------------------------------------- | |
1684 | ||
1685 | /* | |
1686 | NB: this stuff was taken from the glibc test suite and modified to build | |
be5a51fb | 1687 | in wxWidgets: if I read the copyright below properly, this shouldn't |
7aeebdcd VZ |
1688 | be a problem |
1689 | */ | |
1690 | ||
1691 | #ifdef TEST_PRINTF | |
1692 | ||
1693 | #ifdef wxTEST_PRINTF | |
1694 | // use our functions from wxchar.cpp | |
1695 | #undef wxPrintf | |
1696 | #undef wxSprintf | |
1697 | ||
1698 | // NB: do _not_ use ATTRIBUTE_PRINTF here, we have some invalid formats | |
1699 | // in the tests below | |
1700 | int wxPrintf( const wxChar *format, ... ); | |
1701 | int wxSprintf( wxChar *str, const wxChar *format, ... ); | |
1702 | #endif | |
1703 | ||
f1389d46 VZ |
1704 | #include "wx/longlong.h" |
1705 | ||
7aeebdcd VZ |
1706 | #include <float.h> |
1707 | ||
1708 | static void rfg1 (void); | |
1709 | static void rfg2 (void); | |
1710 | ||
1711 | ||
1712 | static void | |
1713 | fmtchk (const wxChar *fmt) | |
1714 | { | |
1715 | (void) wxPrintf(_T("%s:\t`"), fmt); | |
1716 | (void) wxPrintf(fmt, 0x12); | |
1717 | (void) wxPrintf(_T("'\n")); | |
1718 | } | |
1719 | ||
1720 | static void | |
1721 | fmtst1chk (const wxChar *fmt) | |
1722 | { | |
1723 | (void) wxPrintf(_T("%s:\t`"), fmt); | |
1724 | (void) wxPrintf(fmt, 4, 0x12); | |
1725 | (void) wxPrintf(_T("'\n")); | |
1726 | } | |
1727 | ||
1728 | static void | |
1729 | fmtst2chk (const wxChar *fmt) | |
1730 | { | |
1731 | (void) wxPrintf(_T("%s:\t`"), fmt); | |
1732 | (void) wxPrintf(fmt, 4, 4, 0x12); | |
1733 | (void) wxPrintf(_T("'\n")); | |
1734 | } | |
1735 | ||
1736 | /* This page is covered by the following copyright: */ | |
1737 | ||
1738 | /* (C) Copyright C E Chew | |
1739 | * | |
1740 | * Feel free to copy, use and distribute this software provided: | |
1741 | * | |
1742 | * 1. you do not pretend that you wrote it | |
1743 | * 2. you leave this copyright notice intact. | |
1744 | */ | |
1745 | ||
1746 | /* | |
1747 | * Extracted from exercise.c for glibc-1.05 bug report by Bruce Evans. | |
1748 | */ | |
1749 | ||
1750 | #define DEC -123 | |
1751 | #define INT 255 | |
1752 | #define UNS (~0) | |
1753 | ||
1754 | /* Formatted Output Test | |
1755 | * | |
1756 | * This exercises the output formatting code. | |
1757 | */ | |
1758 | ||
e9d2bb6f DS |
1759 | wxChar *PointerNull = NULL; |
1760 | ||
7aeebdcd VZ |
1761 | static void |
1762 | fp_test (void) | |
1763 | { | |
1764 | int i, j, k, l; | |
1765 | wxChar buf[7]; | |
1766 | wxChar *prefix = buf; | |
1767 | wxChar tp[20]; | |
1768 | ||
1769 | wxPuts(_T("\nFormatted output test")); | |
1770 | wxPrintf(_T("prefix 6d 6o 6x 6X 6u\n")); | |
1771 | wxStrcpy(prefix, _T("%")); | |
1772 | for (i = 0; i < 2; i++) { | |
1773 | for (j = 0; j < 2; j++) { | |
1774 | for (k = 0; k < 2; k++) { | |
1775 | for (l = 0; l < 2; l++) { | |
1776 | wxStrcpy(prefix, _T("%")); | |
1777 | if (i == 0) wxStrcat(prefix, _T("-")); | |
1778 | if (j == 0) wxStrcat(prefix, _T("+")); | |
1779 | if (k == 0) wxStrcat(prefix, _T("#")); | |
1780 | if (l == 0) wxStrcat(prefix, _T("0")); | |
1781 | wxPrintf(_T("%5s |"), prefix); | |
1782 | wxStrcpy(tp, prefix); | |
1783 | wxStrcat(tp, _T("6d |")); | |
1784 | wxPrintf(tp, DEC); | |
1785 | wxStrcpy(tp, prefix); | |
1786 | wxStrcat(tp, _T("6o |")); | |
1787 | wxPrintf(tp, INT); | |
1788 | wxStrcpy(tp, prefix); | |
1789 | wxStrcat(tp, _T("6x |")); | |
1790 | wxPrintf(tp, INT); | |
1791 | wxStrcpy(tp, prefix); | |
1792 | wxStrcat(tp, _T("6X |")); | |
1793 | wxPrintf(tp, INT); | |
1794 | wxStrcpy(tp, prefix); | |
1795 | wxStrcat(tp, _T("6u |")); | |
1796 | wxPrintf(tp, UNS); | |
1797 | wxPrintf(_T("\n")); | |
1798 | } | |
1799 | } | |
1800 | } | |
1801 | } | |
e9d2bb6f DS |
1802 | wxPrintf(_T("%10s\n"), PointerNull); |
1803 | wxPrintf(_T("%-10s\n"), PointerNull); | |
7aeebdcd VZ |
1804 | } |
1805 | ||
1806 | static void TestPrintf() | |
1807 | { | |
1808 | static wxChar shortstr[] = _T("Hi, Z."); | |
f1389d46 VZ |
1809 | static wxChar longstr[] = _T("Good morning, Doctor Chandra. This is Hal. \ |
1810 | I am ready for my first lesson today."); | |
7aeebdcd | 1811 | int result = 0; |
e9d2bb6f | 1812 | wxString test_format; |
7aeebdcd VZ |
1813 | |
1814 | fmtchk(_T("%.4x")); | |
1815 | fmtchk(_T("%04x")); | |
1816 | fmtchk(_T("%4.4x")); | |
1817 | fmtchk(_T("%04.4x")); | |
1818 | fmtchk(_T("%4.3x")); | |
1819 | fmtchk(_T("%04.3x")); | |
1820 | ||
1821 | fmtst1chk(_T("%.*x")); | |
1822 | fmtst1chk(_T("%0*x")); | |
1823 | fmtst2chk(_T("%*.*x")); | |
1824 | fmtst2chk(_T("%0*.*x")); | |
1825 | ||
e9d2bb6f DS |
1826 | wxString bad_format = _T("bad format:\t\"%b\"\n"); |
1827 | wxPrintf(bad_format.c_str()); | |
7aeebdcd VZ |
1828 | wxPrintf(_T("nil pointer (padded):\t\"%10p\"\n"), (void *) NULL); |
1829 | ||
1830 | wxPrintf(_T("decimal negative:\t\"%d\"\n"), -2345); | |
1831 | wxPrintf(_T("octal negative:\t\"%o\"\n"), -2345); | |
1832 | wxPrintf(_T("hex negative:\t\"%x\"\n"), -2345); | |
1833 | wxPrintf(_T("long decimal number:\t\"%ld\"\n"), -123456L); | |
1834 | wxPrintf(_T("long octal negative:\t\"%lo\"\n"), -2345L); | |
1835 | wxPrintf(_T("long unsigned decimal number:\t\"%lu\"\n"), -123456L); | |
1836 | wxPrintf(_T("zero-padded LDN:\t\"%010ld\"\n"), -123456L); | |
e9d2bb6f DS |
1837 | test_format = _T("left-adjusted ZLDN:\t\"%-010ld\"\n"); |
1838 | wxPrintf(test_format.c_str(), -123456); | |
7aeebdcd VZ |
1839 | wxPrintf(_T("space-padded LDN:\t\"%10ld\"\n"), -123456L); |
1840 | wxPrintf(_T("left-adjusted SLDN:\t\"%-10ld\"\n"), -123456L); | |
1841 | ||
e9d2bb6f DS |
1842 | test_format = _T("zero-padded string:\t\"%010s\"\n"); |
1843 | wxPrintf(test_format.c_str(), shortstr); | |
1844 | test_format = _T("left-adjusted Z string:\t\"%-010s\"\n"); | |
1845 | wxPrintf(test_format.c_str(), shortstr); | |
7aeebdcd VZ |
1846 | wxPrintf(_T("space-padded string:\t\"%10s\"\n"), shortstr); |
1847 | wxPrintf(_T("left-adjusted S string:\t\"%-10s\"\n"), shortstr); | |
e9d2bb6f | 1848 | wxPrintf(_T("null string:\t\"%s\"\n"), PointerNull); |
7aeebdcd VZ |
1849 | wxPrintf(_T("limited string:\t\"%.22s\"\n"), longstr); |
1850 | ||
1851 | wxPrintf(_T("e-style >= 1:\t\"%e\"\n"), 12.34); | |
1852 | wxPrintf(_T("e-style >= .1:\t\"%e\"\n"), 0.1234); | |
1853 | wxPrintf(_T("e-style < .1:\t\"%e\"\n"), 0.001234); | |
1854 | wxPrintf(_T("e-style big:\t\"%.60e\"\n"), 1e20); | |
1855 | wxPrintf(_T("e-style == .1:\t\"%e\"\n"), 0.1); | |
1856 | wxPrintf(_T("f-style >= 1:\t\"%f\"\n"), 12.34); | |
1857 | wxPrintf(_T("f-style >= .1:\t\"%f\"\n"), 0.1234); | |
1858 | wxPrintf(_T("f-style < .1:\t\"%f\"\n"), 0.001234); | |
1859 | wxPrintf(_T("g-style >= 1:\t\"%g\"\n"), 12.34); | |
1860 | wxPrintf(_T("g-style >= .1:\t\"%g\"\n"), 0.1234); | |
1861 | wxPrintf(_T("g-style < .1:\t\"%g\"\n"), 0.001234); | |
1862 | wxPrintf(_T("g-style big:\t\"%.60g\"\n"), 1e20); | |
1863 | ||
1864 | wxPrintf (_T(" %6.5f\n"), .099999999860301614); | |
1865 | wxPrintf (_T(" %6.5f\n"), .1); | |
1866 | wxPrintf (_T("x%5.4fx\n"), .5); | |
1867 | ||
1868 | wxPrintf (_T("%#03x\n"), 1); | |
1869 | ||
1870 | //wxPrintf (_T("something really insane: %.10000f\n"), 1.0); | |
1871 | ||
1872 | { | |
1873 | double d = FLT_MIN; | |
1874 | int niter = 17; | |
1875 | ||
1876 | while (niter-- != 0) | |
1877 | wxPrintf (_T("%.17e\n"), d / 2); | |
1878 | fflush (stdout); | |
1879 | } | |
1880 | ||
e9d2bb6f DS |
1881 | #ifndef __WATCOMC__ |
1882 | // Open Watcom cause compiler error here | |
1883 | // Error! E173: col(24) floating-point constant too small to represent | |
7aeebdcd | 1884 | wxPrintf (_T("%15.5e\n"), 4.9406564584124654e-324); |
e9d2bb6f | 1885 | #endif |
7aeebdcd VZ |
1886 | |
1887 | #define FORMAT _T("|%12.4f|%12.4e|%12.4g|\n") | |
1888 | wxPrintf (FORMAT, 0.0, 0.0, 0.0); | |
1889 | wxPrintf (FORMAT, 1.0, 1.0, 1.0); | |
1890 | wxPrintf (FORMAT, -1.0, -1.0, -1.0); | |
1891 | wxPrintf (FORMAT, 100.0, 100.0, 100.0); | |
1892 | wxPrintf (FORMAT, 1000.0, 1000.0, 1000.0); | |
1893 | wxPrintf (FORMAT, 10000.0, 10000.0, 10000.0); | |
1894 | wxPrintf (FORMAT, 12345.0, 12345.0, 12345.0); | |
1895 | wxPrintf (FORMAT, 100000.0, 100000.0, 100000.0); | |
1896 | wxPrintf (FORMAT, 123456.0, 123456.0, 123456.0); | |
1897 | #undef FORMAT | |
1898 | ||
1899 | { | |
1900 | wxChar buf[20]; | |
1901 | int rc = wxSnprintf (buf, WXSIZEOF(buf), _T("%30s"), _T("foo")); | |
1902 | ||
1903 | wxPrintf(_T("snprintf (\"%%30s\", \"foo\") == %d, \"%.*s\"\n"), | |
1904 | rc, WXSIZEOF(buf), buf); | |
1905 | #if 0 | |
1906 | wxChar buf2[512]; | |
1907 | wxPrintf ("snprintf (\"%%.999999u\", 10)\n", | |
1908 | wxSnprintf(buf2, WXSIZEOFbuf2), "%.999999u", 10)); | |
1909 | #endif | |
1910 | } | |
1911 | ||
1912 | fp_test (); | |
1913 | ||
1914 | wxPrintf (_T("%e should be 1.234568e+06\n"), 1234567.8); | |
1915 | wxPrintf (_T("%f should be 1234567.800000\n"), 1234567.8); | |
1916 | wxPrintf (_T("%g should be 1.23457e+06\n"), 1234567.8); | |
1917 | wxPrintf (_T("%g should be 123.456\n"), 123.456); | |
1918 | wxPrintf (_T("%g should be 1e+06\n"), 1000000.0); | |
1919 | wxPrintf (_T("%g should be 10\n"), 10.0); | |
1920 | wxPrintf (_T("%g should be 0.02\n"), 0.02); | |
1921 | ||
1922 | { | |
1923 | double x=1.0; | |
1924 | wxPrintf(_T("%.17f\n"),(1.0/x/10.0+1.0)*x-x); | |
1925 | } | |
1926 | ||
1927 | { | |
1928 | wxChar buf[200]; | |
1929 | ||
1930 | wxSprintf(buf,_T("%*s%*s%*s"),-1,_T("one"),-20,_T("two"),-30,_T("three")); | |
1931 | ||
1932 | result |= wxStrcmp (buf, | |
1933 | _T("onetwo three ")); | |
1934 | ||
1935 | wxPuts (result != 0 ? _T("Test failed!") : _T("Test ok.")); | |
1936 | } | |
1937 | ||
f1389d46 | 1938 | #ifdef wxLongLong_t |
7aeebdcd | 1939 | { |
f1389d46 | 1940 | wxChar buf[200]; |
7aeebdcd | 1941 | |
2b5f62a0 | 1942 | wxSprintf(buf, _T("%07") wxLongLongFmtSpec _T("o"), wxLL(040000000000)); |
f2cb8a17 JS |
1943 | #if 0 |
1944 | // for some reason below line fails under Borland | |
f1389d46 | 1945 | wxPrintf (_T("sprintf (buf, \"%%07Lo\", 040000000000ll) = %s"), buf); |
f2cb8a17 | 1946 | #endif |
7aeebdcd | 1947 | |
f1389d46 | 1948 | if (wxStrcmp (buf, _T("40000000000")) != 0) |
7aeebdcd | 1949 | { |
f1389d46 VZ |
1950 | result = 1; |
1951 | wxPuts (_T("\tFAILED")); | |
7aeebdcd | 1952 | } |
e9d2bb6f DS |
1953 | wxUnusedVar(result); |
1954 | wxPuts (wxEmptyString); | |
7aeebdcd | 1955 | } |
f1389d46 | 1956 | #endif // wxLongLong_t |
7aeebdcd VZ |
1957 | |
1958 | wxPrintf (_T("printf (\"%%hhu\", %u) = %hhu\n"), UCHAR_MAX + 2, UCHAR_MAX + 2); | |
1959 | wxPrintf (_T("printf (\"%%hu\", %u) = %hu\n"), USHRT_MAX + 2, USHRT_MAX + 2); | |
1960 | ||
1961 | wxPuts (_T("--- Should be no further output. ---")); | |
1962 | rfg1 (); | |
1963 | rfg2 (); | |
1964 | ||
1965 | #if 0 | |
1966 | { | |
1967 | wxChar bytes[7]; | |
1968 | wxChar buf[20]; | |
1969 | ||
1970 | memset (bytes, '\xff', sizeof bytes); | |
1971 | wxSprintf (buf, _T("foo%hhn\n"), &bytes[3]); | |
1972 | if (bytes[0] != '\xff' || bytes[1] != '\xff' || bytes[2] != '\xff' | |
1973 | || bytes[4] != '\xff' || bytes[5] != '\xff' || bytes[6] != '\xff') | |
1974 | { | |
1975 | wxPuts (_T("%hhn overwrite more bytes")); | |
1976 | result = 1; | |
1977 | } | |
1978 | if (bytes[3] != 3) | |
1979 | { | |
1980 | wxPuts (_T("%hhn wrote incorrect value")); | |
1981 | result = 1; | |
1982 | } | |
1983 | } | |
1984 | #endif | |
1985 | } | |
1986 | ||
1987 | static void | |
1988 | rfg1 (void) | |
1989 | { | |
1990 | wxChar buf[100]; | |
1991 | ||
1992 | wxSprintf (buf, _T("%5.s"), _T("xyz")); | |
1993 | if (wxStrcmp (buf, _T(" ")) != 0) | |
1994 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" ")); | |
1995 | wxSprintf (buf, _T("%5.f"), 33.3); | |
1996 | if (wxStrcmp (buf, _T(" 33")) != 0) | |
1997 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 33")); | |
1998 | wxSprintf (buf, _T("%8.e"), 33.3e7); | |
1999 | if (wxStrcmp (buf, _T(" 3e+08")) != 0) | |
2000 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 3e+08")); | |
2001 | wxSprintf (buf, _T("%8.E"), 33.3e7); | |
2002 | if (wxStrcmp (buf, _T(" 3E+08")) != 0) | |
2003 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 3E+08")); | |
2004 | wxSprintf (buf, _T("%.g"), 33.3); | |
2005 | if (wxStrcmp (buf, _T("3e+01")) != 0) | |
2006 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T("3e+01")); | |
2007 | wxSprintf (buf, _T("%.G"), 33.3); | |
2008 | if (wxStrcmp (buf, _T("3E+01")) != 0) | |
2009 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T("3E+01")); | |
2010 | } | |
2011 | ||
2012 | static void | |
2013 | rfg2 (void) | |
2014 | { | |
2015 | int prec; | |
2016 | wxChar buf[100]; | |
e9d2bb6f | 2017 | wxString test_format; |
7aeebdcd VZ |
2018 | |
2019 | prec = 0; | |
2020 | wxSprintf (buf, _T("%.*g"), prec, 3.3); | |
2021 | if (wxStrcmp (buf, _T("3")) != 0) | |
2022 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T("3")); | |
2023 | prec = 0; | |
2024 | wxSprintf (buf, _T("%.*G"), prec, 3.3); | |
2025 | if (wxStrcmp (buf, _T("3")) != 0) | |
2026 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T("3")); | |
2027 | prec = 0; | |
2028 | wxSprintf (buf, _T("%7.*G"), prec, 3.33); | |
2029 | if (wxStrcmp (buf, _T(" 3")) != 0) | |
2030 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 3")); | |
2031 | prec = 3; | |
e9d2bb6f DS |
2032 | test_format = _T("%04.*o"); |
2033 | wxSprintf (buf, test_format.c_str(), prec, 33); | |
7aeebdcd VZ |
2034 | if (wxStrcmp (buf, _T(" 041")) != 0) |
2035 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 041")); | |
2036 | prec = 7; | |
e9d2bb6f DS |
2037 | test_format = _T("%09.*u"); |
2038 | wxSprintf (buf, test_format.c_str(), prec, 33); | |
7aeebdcd VZ |
2039 | if (wxStrcmp (buf, _T(" 0000033")) != 0) |
2040 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 0000033")); | |
2041 | prec = 3; | |
e9d2bb6f DS |
2042 | test_format = _T("%04.*x"); |
2043 | wxSprintf (buf, test_format.c_str(), prec, 33); | |
7aeebdcd VZ |
2044 | if (wxStrcmp (buf, _T(" 021")) != 0) |
2045 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 021")); | |
2046 | prec = 3; | |
e9d2bb6f DS |
2047 | test_format = _T("%04.*X"); |
2048 | wxSprintf (buf, test_format.c_str(), prec, 33); | |
7aeebdcd VZ |
2049 | if (wxStrcmp (buf, _T(" 021")) != 0) |
2050 | wxPrintf (_T("got: '%s', expected: '%s'\n"), buf, _T(" 021")); | |
2051 | } | |
2052 | ||
2053 | #endif // TEST_PRINTF | |
2054 | ||
6dfec4b8 | 2055 | // ---------------------------------------------------------------------------- |
7ba4fbeb | 2056 | // registry and related stuff |
6dfec4b8 VZ |
2057 | // ---------------------------------------------------------------------------- |
2058 | ||
2059 | // this is for MSW only | |
2060 | #ifndef __WXMSW__ | |
7ba4fbeb | 2061 | #undef TEST_REGCONF |
6dfec4b8 VZ |
2062 | #undef TEST_REGISTRY |
2063 | #endif | |
2064 | ||
7ba4fbeb VZ |
2065 | #ifdef TEST_REGCONF |
2066 | ||
e84010cf GD |
2067 | #include "wx/confbase.h" |
2068 | #include "wx/msw/regconf.h" | |
7ba4fbeb | 2069 | |
e9d2bb6f | 2070 | #if 0 |
7ba4fbeb VZ |
2071 | static void TestRegConfWrite() |
2072 | { | |
e9d2bb6f DS |
2073 | wxConfig *config = new wxConfig(_T("myapp")); |
2074 | config->SetPath(_T("/group1")); | |
2075 | config->Write(_T("entry1"), _T("foo")); | |
2076 | config->SetPath(_T("/group2")); | |
2077 | config->Write(_T("entry1"), _T("bar")); | |
0aa29b6b | 2078 | } |
e9d2bb6f | 2079 | #endif |
0aa29b6b VZ |
2080 | |
2081 | static void TestRegConfRead() | |
2082 | { | |
e9d2bb6f | 2083 | wxConfig *config = new wxConfig(_T("myapp")); |
0aa29b6b VZ |
2084 | |
2085 | wxString str; | |
2086 | long dummy; | |
e9d2bb6f DS |
2087 | config->SetPath(_T("/")); |
2088 | wxPuts(_T("Enumerating / subgroups:")); | |
0aa29b6b VZ |
2089 | bool bCont = config->GetFirstGroup(str, dummy); |
2090 | while(bCont) | |
2091 | { | |
e9d2bb6f | 2092 | wxPuts(str); |
0aa29b6b VZ |
2093 | bCont = config->GetNextGroup(str, dummy); |
2094 | } | |
7ba4fbeb VZ |
2095 | } |
2096 | ||
2097 | #endif // TEST_REGCONF | |
2098 | ||
6dfec4b8 VZ |
2099 | #ifdef TEST_REGISTRY |
2100 | ||
e84010cf | 2101 | #include "wx/msw/registry.h" |
6dfec4b8 VZ |
2102 | |
2103 | // I chose this one because I liked its name, but it probably only exists under | |
2104 | // NT | |
2105 | static const wxChar *TESTKEY = | |
2106 | _T("HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\CrashControl"); | |
2107 | ||
2108 | static void TestRegistryRead() | |
2109 | { | |
456ae26d | 2110 | wxPuts(_T("*** testing registry reading ***")); |
6dfec4b8 VZ |
2111 | |
2112 | wxRegKey key(TESTKEY); | |
456ae26d | 2113 | wxPrintf(_T("The test key name is '%s'.\n"), key.GetName().c_str()); |
6dfec4b8 VZ |
2114 | if ( !key.Open() ) |
2115 | { | |
456ae26d | 2116 | wxPuts(_T("ERROR: test key can't be opened, aborting test.")); |
6dfec4b8 VZ |
2117 | |
2118 | return; | |
2119 | } | |
2120 | ||
2121 | size_t nSubKeys, nValues; | |
2122 | if ( key.GetKeyInfo(&nSubKeys, NULL, &nValues, NULL) ) | |
2123 | { | |
456ae26d | 2124 | wxPrintf(_T("It has %u subkeys and %u values.\n"), nSubKeys, nValues); |
6dfec4b8 VZ |
2125 | } |
2126 | ||
456ae26d | 2127 | wxPrintf(_T("Enumerating values:\n")); |
6dfec4b8 VZ |
2128 | |
2129 | long dummy; | |
2130 | wxString value; | |
2131 | bool cont = key.GetFirstValue(value, dummy); | |
2132 | while ( cont ) | |
2133 | { | |
456ae26d | 2134 | wxPrintf(_T("Value '%s': type "), value.c_str()); |
6dfec4b8 VZ |
2135 | switch ( key.GetValueType(value) ) |
2136 | { | |
456ae26d VZ |
2137 | case wxRegKey::Type_None: wxPrintf(_T("ERROR (none)")); break; |
2138 | case wxRegKey::Type_String: wxPrintf(_T("SZ")); break; | |
2139 | case wxRegKey::Type_Expand_String: wxPrintf(_T("EXPAND_SZ")); break; | |
2140 | case wxRegKey::Type_Binary: wxPrintf(_T("BINARY")); break; | |
2141 | case wxRegKey::Type_Dword: wxPrintf(_T("DWORD")); break; | |
2142 | case wxRegKey::Type_Multi_String: wxPrintf(_T("MULTI_SZ")); break; | |
2143 | default: wxPrintf(_T("other (unknown)")); break; | |
6dfec4b8 VZ |
2144 | } |
2145 | ||
456ae26d | 2146 | wxPrintf(_T(", value = ")); |
6dfec4b8 VZ |
2147 | if ( key.IsNumericValue(value) ) |
2148 | { | |
2149 | long val; | |
2150 | key.QueryValue(value, &val); | |
456ae26d | 2151 | wxPrintf(_T("%ld"), val); |
6dfec4b8 VZ |
2152 | } |
2153 | else // string | |
2154 | { | |
2155 | wxString val; | |
2156 | key.QueryValue(value, val); | |
456ae26d | 2157 | wxPrintf(_T("'%s'"), val.c_str()); |
6dfec4b8 VZ |
2158 | |
2159 | key.QueryRawValue(value, val); | |
456ae26d | 2160 | wxPrintf(_T(" (raw value '%s')"), val.c_str()); |
6dfec4b8 VZ |
2161 | } |
2162 | ||
e9d2bb6f | 2163 | wxPutchar('\n'); |
6dfec4b8 VZ |
2164 | |
2165 | cont = key.GetNextValue(value, dummy); | |
2166 | } | |
2167 | } | |
2168 | ||
6ba63600 VZ |
2169 | static void TestRegistryAssociation() |
2170 | { | |
2171 | /* | |
2172 | The second call to deleteself genertaes an error message, with a | |
2173 | messagebox saying .flo is crucial to system operation, while the .ddf | |
2174 | call also fails, but with no error message | |
2175 | */ | |
2176 | ||
2177 | wxRegKey key; | |
2178 | ||
f2cb8a17 | 2179 | key.SetName(_T("HKEY_CLASSES_ROOT\\.ddf") ); |
6ba63600 | 2180 | key.Create(); |
f2cb8a17 JS |
2181 | key = _T("ddxf_auto_file") ; |
2182 | key.SetName(_T("HKEY_CLASSES_ROOT\\.flo") ); | |
6ba63600 | 2183 | key.Create(); |
f2cb8a17 JS |
2184 | key = _T("ddxf_auto_file") ; |
2185 | key.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\DefaultIcon")); | |
6ba63600 | 2186 | key.Create(); |
f2cb8a17 JS |
2187 | key = _T("program,0") ; |
2188 | key.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\shell\\open\\command")); | |
6ba63600 | 2189 | key.Create(); |
f2cb8a17 | 2190 | key = _T("program \"%1\"") ; |
6ba63600 | 2191 | |
f2cb8a17 | 2192 | key.SetName(_T("HKEY_CLASSES_ROOT\\.ddf") ); |
6ba63600 | 2193 | key.DeleteSelf(); |
f2cb8a17 | 2194 | key.SetName(_T("HKEY_CLASSES_ROOT\\.flo") ); |
6ba63600 | 2195 | key.DeleteSelf(); |
f2cb8a17 | 2196 | key.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\DefaultIcon")); |
6ba63600 | 2197 | key.DeleteSelf(); |
f2cb8a17 | 2198 | key.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\shell\\open\\command")); |
6ba63600 VZ |
2199 | key.DeleteSelf(); |
2200 | } | |
2201 | ||
6dfec4b8 VZ |
2202 | #endif // TEST_REGISTRY |
2203 | ||
c66cca2a VZ |
2204 | // ---------------------------------------------------------------------------- |
2205 | // scope guard | |
2206 | // ---------------------------------------------------------------------------- | |
2207 | ||
df5168c4 MB |
2208 | #ifdef TEST_SCOPEGUARD |
2209 | ||
c66cca2a VZ |
2210 | #include "wx/scopeguard.h" |
2211 | ||
2212 | static void function0() { puts("function0()"); } | |
2213 | static void function1(int n) { printf("function1(%d)\n", n); } | |
2214 | static void function2(double x, char c) { printf("function2(%g, %c)\n", x, c); } | |
2215 | ||
2216 | struct Object | |
2217 | { | |
2218 | void method0() { printf("method0()\n"); } | |
2219 | void method1(int n) { printf("method1(%d)\n", n); } | |
2220 | void method2(double x, char c) { printf("method2(%g, %c)\n", x, c); } | |
2221 | }; | |
2222 | ||
2223 | static void TestScopeGuard() | |
2224 | { | |
24c8053b RN |
2225 | wxON_BLOCK_EXIT0(function0); |
2226 | wxON_BLOCK_EXIT1(function1, 17); | |
2227 | wxON_BLOCK_EXIT2(function2, 3.14, 'p'); | |
c66cca2a VZ |
2228 | |
2229 | Object obj; | |
eb42e596 VZ |
2230 | wxON_BLOCK_EXIT_OBJ0(obj, Object::method0); |
2231 | wxON_BLOCK_EXIT_OBJ1(obj, Object::method1, 7); | |
2232 | wxON_BLOCK_EXIT_OBJ2(obj, Object::method2, 2.71, 'e'); | |
c66cca2a VZ |
2233 | |
2234 | wxScopeGuard dismissed = wxMakeGuard(function0); | |
2235 | dismissed.Dismiss(); | |
2236 | } | |
2237 | ||
df5168c4 MB |
2238 | #endif |
2239 | ||
2c8e4738 VZ |
2240 | // ---------------------------------------------------------------------------- |
2241 | // sockets | |
2242 | // ---------------------------------------------------------------------------- | |
2243 | ||
2244 | #ifdef TEST_SOCKETS | |
2245 | ||
e84010cf GD |
2246 | #include "wx/socket.h" |
2247 | #include "wx/protocol/protocol.h" | |
2248 | #include "wx/protocol/http.h" | |
8e907a13 VZ |
2249 | |
2250 | static void TestSocketServer() | |
2251 | { | |
456ae26d | 2252 | wxPuts(_T("*** Testing wxSocketServer ***\n")); |
8e907a13 | 2253 | |
ccdb23df VZ |
2254 | static const int PORT = 3000; |
2255 | ||
8e907a13 | 2256 | wxIPV4address addr; |
ccdb23df | 2257 | addr.Service(PORT); |
8e907a13 VZ |
2258 | |
2259 | wxSocketServer *server = new wxSocketServer(addr); | |
2260 | if ( !server->Ok() ) | |
2261 | { | |
456ae26d | 2262 | wxPuts(_T("ERROR: failed to bind")); |
ccdb23df VZ |
2263 | |
2264 | return; | |
8e907a13 | 2265 | } |
8dfea369 | 2266 | |
cab8f76e VZ |
2267 | bool quit = false; |
2268 | while ( !quit ) | |
8dfea369 | 2269 | { |
456ae26d | 2270 | wxPrintf(_T("Server: waiting for connection on port %d...\n"), PORT); |
8dfea369 VZ |
2271 | |
2272 | wxSocketBase *socket = server->Accept(); | |
2273 | if ( !socket ) | |
2274 | { | |
456ae26d | 2275 | wxPuts(_T("ERROR: wxSocketServer::Accept() failed.")); |
8dfea369 VZ |
2276 | break; |
2277 | } | |
2278 | ||
456ae26d | 2279 | wxPuts(_T("Server: got a client.")); |
8dfea369 | 2280 | |
ccdb23df VZ |
2281 | server->SetTimeout(60); // 1 min |
2282 | ||
cab8f76e VZ |
2283 | bool close = false; |
2284 | while ( !close && socket->IsConnected() ) | |
8dfea369 | 2285 | { |
ccdb23df | 2286 | wxString s; |
456ae26d | 2287 | wxChar ch = _T('\0'); |
ccdb23df | 2288 | for ( ;; ) |
8dfea369 | 2289 | { |
ccdb23df VZ |
2290 | if ( socket->Read(&ch, sizeof(ch)).Error() ) |
2291 | { | |
2292 | // don't log error if the client just close the connection | |
2293 | if ( socket->IsConnected() ) | |
2294 | { | |
456ae26d | 2295 | wxPuts(_T("ERROR: in wxSocket::Read.")); |
ccdb23df | 2296 | } |
8dfea369 | 2297 | |
ccdb23df VZ |
2298 | break; |
2299 | } | |
8dfea369 | 2300 | |
ccdb23df VZ |
2301 | if ( ch == '\r' ) |
2302 | continue; | |
8dfea369 | 2303 | |
ccdb23df VZ |
2304 | if ( ch == '\n' ) |
2305 | break; | |
8dfea369 | 2306 | |
ccdb23df VZ |
2307 | s += ch; |
2308 | } | |
8dfea369 | 2309 | |
ccdb23df VZ |
2310 | if ( ch != '\n' ) |
2311 | { | |
2312 | break; | |
2313 | } | |
8dfea369 | 2314 | |
456ae26d | 2315 | wxPrintf(_T("Server: got '%s'.\n"), s.c_str()); |
cab8f76e | 2316 | if ( s == _T("close") ) |
ccdb23df | 2317 | { |
cab8f76e | 2318 | wxPuts(_T("Closing connection")); |
8dfea369 | 2319 | |
cab8f76e | 2320 | close = true; |
ccdb23df | 2321 | } |
cab8f76e VZ |
2322 | else if ( s == _T("quit") ) |
2323 | { | |
2324 | close = | |
2325 | quit = true; | |
ccdb23df | 2326 | |
cab8f76e VZ |
2327 | wxPuts(_T("Shutting down the server")); |
2328 | } | |
2329 | else // not a special command | |
2330 | { | |
2331 | socket->Write(s.MakeUpper().c_str(), s.length()); | |
2332 | socket->Write("\r\n", 2); | |
2333 | wxPrintf(_T("Server: wrote '%s'.\n"), s.c_str()); | |
2334 | } | |
8dfea369 VZ |
2335 | } |
2336 | ||
cab8f76e VZ |
2337 | if ( !close ) |
2338 | { | |
2339 | wxPuts(_T("Server: lost a client unexpectedly.")); | |
2340 | } | |
8dfea369 | 2341 | |
ccdb23df | 2342 | socket->Destroy(); |
8dfea369 | 2343 | } |
9fc3cba7 | 2344 | |
ccdb23df VZ |
2345 | // same as "delete server" but is consistent with GUI programs |
2346 | server->Destroy(); | |
8e907a13 | 2347 | } |
2c8e4738 VZ |
2348 | |
2349 | static void TestSocketClient() | |
2350 | { | |
456ae26d | 2351 | wxPuts(_T("*** Testing wxSocketClient ***\n")); |
2c8e4738 | 2352 | |
be5a51fb | 2353 | static const wxChar *hostname = _T("www.wxwidgets.org"); |
8e907a13 VZ |
2354 | |
2355 | wxIPV4address addr; | |
2356 | addr.Hostname(hostname); | |
2357 | addr.Service(80); | |
2358 | ||
456ae26d | 2359 | wxPrintf(_T("--- Attempting to connect to %s:80...\n"), hostname); |
2c8e4738 VZ |
2360 | |
2361 | wxSocketClient client; | |
8e907a13 | 2362 | if ( !client.Connect(addr) ) |
2c8e4738 | 2363 | { |
456ae26d | 2364 | wxPrintf(_T("ERROR: failed to connect to %s\n"), hostname); |
2c8e4738 VZ |
2365 | } |
2366 | else | |
2367 | { | |
456ae26d | 2368 | wxPrintf(_T("--- Connected to %s:%u...\n"), |
8e907a13 VZ |
2369 | addr.Hostname().c_str(), addr.Service()); |
2370 | ||
456ae26d | 2371 | wxChar buf[8192]; |
2c8e4738 | 2372 | |
8e907a13 VZ |
2373 | // could use simply "GET" here I suppose |
2374 | wxString cmdGet = | |
456ae26d | 2375 | wxString::Format(_T("GET http://%s/\r\n"), hostname); |
8e907a13 | 2376 | client.Write(cmdGet, cmdGet.length()); |
456ae26d | 2377 | wxPrintf(_T("--- Sent command '%s' to the server\n"), |
8e907a13 | 2378 | MakePrintable(cmdGet).c_str()); |
2c8e4738 | 2379 | client.Read(buf, WXSIZEOF(buf)); |
456ae26d | 2380 | wxPrintf(_T("--- Server replied:\n%s"), buf); |
8e907a13 VZ |
2381 | } |
2382 | } | |
2383 | ||
2e907fab VZ |
2384 | #endif // TEST_SOCKETS |
2385 | ||
b92fd37c VZ |
2386 | // ---------------------------------------------------------------------------- |
2387 | // FTP | |
2388 | // ---------------------------------------------------------------------------- | |
2389 | ||
2e907fab VZ |
2390 | #ifdef TEST_FTP |
2391 | ||
e84010cf | 2392 | #include "wx/protocol/ftp.h" |
2e907fab | 2393 | |
b92fd37c VZ |
2394 | static wxFTP ftp; |
2395 | ||
2396 | #define FTP_ANONYMOUS | |
2397 | ||
2398 | #ifdef FTP_ANONYMOUS | |
456ae26d VZ |
2399 | static const wxChar *directory = _T("/pub"); |
2400 | static const wxChar *filename = _T("welcome.msg"); | |
b92fd37c | 2401 | #else |
456ae26d VZ |
2402 | static const wxChar *directory = _T("/etc"); |
2403 | static const wxChar *filename = _T("issue"); | |
b92fd37c VZ |
2404 | #endif |
2405 | ||
2406 | static bool TestFtpConnect() | |
8e907a13 | 2407 | { |
456ae26d | 2408 | wxPuts(_T("*** Testing FTP connect ***")); |
8e907a13 | 2409 | |
b92fd37c | 2410 | #ifdef FTP_ANONYMOUS |
be5a51fb | 2411 | static const wxChar *hostname = _T("ftp.wxwidgets.org"); |
b92fd37c | 2412 | |
456ae26d | 2413 | wxPrintf(_T("--- Attempting to connect to %s:21 anonymously...\n"), hostname); |
b92fd37c | 2414 | #else // !FTP_ANONYMOUS |
456ae26d | 2415 | static const wxChar *hostname = "localhost"; |
b92fd37c | 2416 | |
456ae26d VZ |
2417 | wxChar user[256]; |
2418 | wxFgets(user, WXSIZEOF(user), stdin); | |
2419 | user[wxStrlen(user) - 1] = '\0'; // chop off '\n' | |
b92fd37c VZ |
2420 | ftp.SetUser(user); |
2421 | ||
456ae26d VZ |
2422 | wxChar password[256]; |
2423 | wxPrintf(_T("Password for %s: "), password); | |
2424 | wxFgets(password, WXSIZEOF(password), stdin); | |
2425 | password[wxStrlen(password) - 1] = '\0'; // chop off '\n' | |
b92fd37c VZ |
2426 | ftp.SetPassword(password); |
2427 | ||
456ae26d | 2428 | wxPrintf(_T("--- Attempting to connect to %s:21 as %s...\n"), hostname, user); |
b92fd37c VZ |
2429 | #endif // FTP_ANONYMOUS/!FTP_ANONYMOUS |
2430 | ||
2431 | if ( !ftp.Connect(hostname) ) | |
2432 | { | |
456ae26d | 2433 | wxPrintf(_T("ERROR: failed to connect to %s\n"), hostname); |
b92fd37c | 2434 | |
cab8f76e | 2435 | return false; |
b92fd37c VZ |
2436 | } |
2437 | else | |
2438 | { | |
456ae26d | 2439 | wxPrintf(_T("--- Connected to %s, current directory is '%s'\n"), |
af33b199 VZ |
2440 | hostname, ftp.Pwd().c_str()); |
2441 | ftp.Close(); | |
b92fd37c VZ |
2442 | } |
2443 | ||
cab8f76e | 2444 | return true; |
b92fd37c | 2445 | } |
b1229561 | 2446 | |
b92fd37c VZ |
2447 | // test (fixed?) wxFTP bug with wu-ftpd >= 2.6.0? |
2448 | static void TestFtpWuFtpd() | |
2449 | { | |
2450 | wxFTP ftp; | |
456ae26d | 2451 | static const wxChar *hostname = _T("ftp.eudora.com"); |
b1229561 VZ |
2452 | if ( !ftp.Connect(hostname) ) |
2453 | { | |
456ae26d | 2454 | wxPrintf(_T("ERROR: failed to connect to %s\n"), hostname); |
b1229561 VZ |
2455 | } |
2456 | else | |
2457 | { | |
456ae26d | 2458 | static const wxChar *filename = _T("eudora/pubs/draft-gellens-submit-09.txt"); |
b1229561 VZ |
2459 | wxInputStream *in = ftp.GetInputStream(filename); |
2460 | if ( !in ) | |
2461 | { | |
456ae26d | 2462 | wxPrintf(_T("ERROR: couldn't get input stream for %s\n"), filename); |
b1229561 VZ |
2463 | } |
2464 | else | |
2465 | { | |
4c51b688 | 2466 | size_t size = in->GetSize(); |
456ae26d | 2467 | wxPrintf(_T("Reading file %s (%u bytes)..."), filename, size); |
b1229561 | 2468 | |
456ae26d | 2469 | wxChar *data = new wxChar[size]; |
b1229561 VZ |
2470 | if ( !in->Read(data, size) ) |
2471 | { | |
456ae26d | 2472 | wxPuts(_T("ERROR: read error")); |
b1229561 VZ |
2473 | } |
2474 | else | |
2475 | { | |
456ae26d | 2476 | wxPrintf(_T("Successfully retrieved the file.\n")); |
b1229561 VZ |
2477 | } |
2478 | ||
2479 | delete [] data; | |
2480 | delete in; | |
2481 | } | |
2482 | } | |
b92fd37c | 2483 | } |
b1229561 | 2484 | |
b92fd37c VZ |
2485 | static void TestFtpList() |
2486 | { | |
456ae26d | 2487 | wxPuts(_T("*** Testing wxFTP file listing ***\n")); |
8e907a13 | 2488 | |
b92fd37c VZ |
2489 | // test CWD |
2490 | if ( !ftp.ChDir(directory) ) | |
2491 | { | |
456ae26d | 2492 | wxPrintf(_T("ERROR: failed to cd to %s\n"), directory); |
b92fd37c | 2493 | } |
2e907fab | 2494 | |
456ae26d | 2495 | wxPrintf(_T("Current directory is '%s'\n"), ftp.Pwd().c_str()); |
2e907fab | 2496 | |
b92fd37c VZ |
2497 | // test NLIST and LIST |
2498 | wxArrayString files; | |
2499 | if ( !ftp.GetFilesList(files) ) | |
8e907a13 | 2500 | { |
456ae26d | 2501 | wxPuts(_T("ERROR: failed to get NLIST of files")); |
8e907a13 VZ |
2502 | } |
2503 | else | |
2504 | { | |
456ae26d | 2505 | wxPrintf(_T("Brief list of files under '%s':\n"), ftp.Pwd().c_str()); |
b92fd37c VZ |
2506 | size_t count = files.GetCount(); |
2507 | for ( size_t n = 0; n < count; n++ ) | |
8e907a13 | 2508 | { |
456ae26d | 2509 | wxPrintf(_T("\t%s\n"), files[n].c_str()); |
8e907a13 | 2510 | } |
456ae26d | 2511 | wxPuts(_T("End of the file list")); |
b92fd37c | 2512 | } |
8e907a13 | 2513 | |
b92fd37c VZ |
2514 | if ( !ftp.GetDirList(files) ) |
2515 | { | |
456ae26d | 2516 | wxPuts(_T("ERROR: failed to get LIST of files")); |
b92fd37c VZ |
2517 | } |
2518 | else | |
2519 | { | |
456ae26d | 2520 | wxPrintf(_T("Detailed list of files under '%s':\n"), ftp.Pwd().c_str()); |
b92fd37c VZ |
2521 | size_t count = files.GetCount(); |
2522 | for ( size_t n = 0; n < count; n++ ) | |
8e907a13 | 2523 | { |
456ae26d | 2524 | wxPrintf(_T("\t%s\n"), files[n].c_str()); |
2e907fab | 2525 | } |
456ae26d | 2526 | wxPuts(_T("End of the file list")); |
b92fd37c VZ |
2527 | } |
2528 | ||
2529 | if ( !ftp.ChDir(_T("..")) ) | |
2530 | { | |
456ae26d | 2531 | wxPuts(_T("ERROR: failed to cd to ..")); |
b92fd37c | 2532 | } |
2e907fab | 2533 | |
456ae26d | 2534 | wxPrintf(_T("Current directory is '%s'\n"), ftp.Pwd().c_str()); |
b92fd37c VZ |
2535 | } |
2536 | ||
2537 | static void TestFtpDownload() | |
2538 | { | |
456ae26d | 2539 | wxPuts(_T("*** Testing wxFTP download ***\n")); |
b92fd37c VZ |
2540 | |
2541 | // test RETR | |
2542 | wxInputStream *in = ftp.GetInputStream(filename); | |
2543 | if ( !in ) | |
2544 | { | |
456ae26d | 2545 | wxPrintf(_T("ERROR: couldn't get input stream for %s\n"), filename); |
b92fd37c VZ |
2546 | } |
2547 | else | |
2548 | { | |
4c51b688 | 2549 | size_t size = in->GetSize(); |
456ae26d | 2550 | wxPrintf(_T("Reading file %s (%u bytes)..."), filename, size); |
b92fd37c VZ |
2551 | fflush(stdout); |
2552 | ||
456ae26d | 2553 | wxChar *data = new wxChar[size]; |
b92fd37c | 2554 | if ( !in->Read(data, size) ) |
2e907fab | 2555 | { |
456ae26d | 2556 | wxPuts(_T("ERROR: read error")); |
2e907fab VZ |
2557 | } |
2558 | else | |
2559 | { | |
456ae26d | 2560 | wxPrintf(_T("\nContents of %s:\n%s\n"), filename, data); |
8e907a13 VZ |
2561 | } |
2562 | ||
b92fd37c VZ |
2563 | delete [] data; |
2564 | delete in; | |
2565 | } | |
2566 | } | |
8e907a13 | 2567 | |
b92fd37c VZ |
2568 | static void TestFtpFileSize() |
2569 | { | |
456ae26d | 2570 | wxPuts(_T("*** Testing FTP SIZE command ***")); |
b92fd37c VZ |
2571 | |
2572 | if ( !ftp.ChDir(directory) ) | |
2573 | { | |
456ae26d | 2574 | wxPrintf(_T("ERROR: failed to cd to %s\n"), directory); |
b92fd37c VZ |
2575 | } |
2576 | ||
456ae26d | 2577 | wxPrintf(_T("Current directory is '%s'\n"), ftp.Pwd().c_str()); |
b92fd37c VZ |
2578 | |
2579 | if ( ftp.FileExists(filename) ) | |
2580 | { | |
2581 | int size = ftp.GetFileSize(filename); | |
2582 | if ( size == -1 ) | |
456ae26d | 2583 | wxPrintf(_T("ERROR: couldn't get size of '%s'\n"), filename); |
8e907a13 | 2584 | else |
456ae26d | 2585 | wxPrintf(_T("Size of '%s' is %d bytes.\n"), filename, size); |
b92fd37c VZ |
2586 | } |
2587 | else | |
2588 | { | |
456ae26d | 2589 | wxPrintf(_T("ERROR: '%s' doesn't exist\n"), filename); |
b92fd37c VZ |
2590 | } |
2591 | } | |
2592 | ||
2593 | static void TestFtpMisc() | |
2594 | { | |
456ae26d | 2595 | wxPuts(_T("*** Testing miscellaneous wxFTP functions ***")); |
b92fd37c | 2596 | |
f2cb8a17 | 2597 | if ( ftp.SendCommand(_T("STAT")) != '2' ) |
b92fd37c | 2598 | { |
456ae26d | 2599 | wxPuts(_T("ERROR: STAT failed")); |
b92fd37c VZ |
2600 | } |
2601 | else | |
2602 | { | |
456ae26d | 2603 | wxPrintf(_T("STAT returned:\n\n%s\n"), ftp.GetLastResult().c_str()); |
b92fd37c VZ |
2604 | } |
2605 | ||
f2cb8a17 | 2606 | if ( ftp.SendCommand(_T("HELP SITE")) != '2' ) |
b92fd37c | 2607 | { |
456ae26d | 2608 | wxPuts(_T("ERROR: HELP SITE failed")); |
b92fd37c VZ |
2609 | } |
2610 | else | |
2611 | { | |
456ae26d | 2612 | wxPrintf(_T("The list of site-specific commands:\n\n%s\n"), |
b92fd37c VZ |
2613 | ftp.GetLastResult().c_str()); |
2614 | } | |
2615 | } | |
2616 | ||
2617 | static void TestFtpInteractive() | |
2618 | { | |
456ae26d | 2619 | wxPuts(_T("\n*** Interactive wxFTP test ***")); |
b92fd37c | 2620 | |
456ae26d | 2621 | wxChar buf[128]; |
b92fd37c VZ |
2622 | |
2623 | for ( ;; ) | |
2624 | { | |
456ae26d VZ |
2625 | wxPrintf(_T("Enter FTP command: ")); |
2626 | if ( !wxFgets(buf, WXSIZEOF(buf), stdin) ) | |
b92fd37c VZ |
2627 | break; |
2628 | ||
2629 | // kill the last '\n' | |
456ae26d | 2630 | buf[wxStrlen(buf) - 1] = 0; |
b92fd37c VZ |
2631 | |
2632 | // special handling of LIST and NLST as they require data connection | |
2633 | wxString start(buf, 4); | |
2634 | start.MakeUpper(); | |
f2cb8a17 | 2635 | if ( start == _T("LIST") || start == _T("NLST") ) |
8e907a13 | 2636 | { |
b92fd37c | 2637 | wxString wildcard; |
456ae26d | 2638 | if ( wxStrlen(buf) > 4 ) |
b92fd37c | 2639 | wildcard = buf + 5; |
8e907a13 | 2640 | |
b92fd37c | 2641 | wxArrayString files; |
f2cb8a17 | 2642 | if ( !ftp.GetList(files, wildcard, start == _T("LIST")) ) |
8e907a13 | 2643 | { |
456ae26d | 2644 | wxPrintf(_T("ERROR: failed to get %s of files\n"), start.c_str()); |
8e907a13 VZ |
2645 | } |
2646 | else | |
2647 | { | |
456ae26d | 2648 | wxPrintf(_T("--- %s of '%s' under '%s':\n"), |
b92fd37c VZ |
2649 | start.c_str(), wildcard.c_str(), ftp.Pwd().c_str()); |
2650 | size_t count = files.GetCount(); | |
2651 | for ( size_t n = 0; n < count; n++ ) | |
2652 | { | |
456ae26d | 2653 | wxPrintf(_T("\t%s\n"), files[n].c_str()); |
b92fd37c | 2654 | } |
456ae26d | 2655 | wxPuts(_T("--- End of the file list")); |
8e907a13 | 2656 | } |
2e907fab | 2657 | } |
b92fd37c | 2658 | else // !list |
2e907fab | 2659 | { |
456ae26d VZ |
2660 | wxChar ch = ftp.SendCommand(buf); |
2661 | wxPrintf(_T("Command %s"), ch ? _T("succeeded") : _T("failed")); | |
b92fd37c VZ |
2662 | if ( ch ) |
2663 | { | |
456ae26d | 2664 | wxPrintf(_T(" (return code %c)"), ch); |
b92fd37c | 2665 | } |
2e907fab | 2666 | |
456ae26d | 2667 | wxPrintf(_T(", server reply:\n%s\n\n"), ftp.GetLastResult().c_str()); |
2e907fab | 2668 | } |
2c8e4738 | 2669 | } |
b92fd37c | 2670 | |
456ae26d | 2671 | wxPuts(_T("\n*** done ***")); |
2c8e4738 VZ |
2672 | } |
2673 | ||
b92fd37c | 2674 | static void TestFtpUpload() |
f6bcfd97 | 2675 | { |
456ae26d | 2676 | wxPuts(_T("*** Testing wxFTP uploading ***\n")); |
f6bcfd97 | 2677 | |
b92fd37c | 2678 | // upload a file |
456ae26d VZ |
2679 | static const wxChar *file1 = _T("test1"); |
2680 | static const wxChar *file2 = _T("test2"); | |
b92fd37c VZ |
2681 | wxOutputStream *out = ftp.GetOutputStream(file1); |
2682 | if ( out ) | |
2683 | { | |
456ae26d | 2684 | wxPrintf(_T("--- Uploading to %s ---\n"), file1); |
b92fd37c VZ |
2685 | out->Write("First hello", 11); |
2686 | delete out; | |
2687 | } | |
f6bcfd97 | 2688 | |
b92fd37c | 2689 | // send a command to check the remote file |
f2cb8a17 | 2690 | if ( ftp.SendCommand(wxString(_T("STAT ")) + file1) != '2' ) |
f6bcfd97 | 2691 | { |
456ae26d | 2692 | wxPrintf(_T("ERROR: STAT %s failed\n"), file1); |
f6bcfd97 BP |
2693 | } |
2694 | else | |
2695 | { | |
456ae26d | 2696 | wxPrintf(_T("STAT %s returned:\n\n%s\n"), |
b92fd37c VZ |
2697 | file1, ftp.GetLastResult().c_str()); |
2698 | } | |
2e907fab | 2699 | |
b92fd37c VZ |
2700 | out = ftp.GetOutputStream(file2); |
2701 | if ( out ) | |
2702 | { | |
456ae26d | 2703 | wxPrintf(_T("--- Uploading to %s ---\n"), file1); |
b92fd37c VZ |
2704 | out->Write("Second hello", 12); |
2705 | delete out; | |
f6bcfd97 BP |
2706 | } |
2707 | } | |
2708 | ||
2e907fab | 2709 | #endif // TEST_FTP |
2c8e4738 | 2710 | |
eaff0f0d VZ |
2711 | // ---------------------------------------------------------------------------- |
2712 | // stack backtrace | |
2713 | // ---------------------------------------------------------------------------- | |
2714 | ||
2715 | #ifdef TEST_STACKWALKER | |
2716 | ||
74e2116a MB |
2717 | #if wxUSE_STACKWALKER |
2718 | ||
eaff0f0d VZ |
2719 | #include "wx/stackwalk.h" |
2720 | ||
2721 | class StackDump : public wxStackWalker | |
2722 | { | |
2723 | public: | |
2724 | StackDump(const char *argv0) | |
2725 | : wxStackWalker(argv0) | |
2726 | { | |
2727 | } | |
2728 | ||
5ba95b79 | 2729 | virtual void Walk(size_t skip = 1) |
eaff0f0d VZ |
2730 | { |
2731 | wxPuts(_T("Stack dump:")); | |
2732 | ||
5ba95b79 | 2733 | wxStackWalker::Walk(skip); |
eaff0f0d VZ |
2734 | } |
2735 | ||
2736 | protected: | |
2737 | virtual void OnStackFrame(const wxStackFrame& frame) | |
2738 | { | |
2739 | printf("[%2d] ", frame.GetLevel()); | |
2740 | ||
2741 | wxString name = frame.GetName(); | |
2742 | if ( !name.empty() ) | |
2743 | { | |
2744 | printf("%-20.40s", name.mb_str()); | |
2745 | } | |
2746 | else | |
2747 | { | |
2748 | printf("0x%08lx", (unsigned long)frame.GetAddress()); | |
2749 | } | |
2750 | ||
2751 | if ( frame.HasSourceLocation() ) | |
2752 | { | |
2753 | printf("\t%s:%d", | |
2754 | frame.GetFileName().mb_str(), | |
2755 | frame.GetLine()); | |
2756 | } | |
2757 | ||
2758 | puts(""); | |
2759 | ||
2760 | wxString type, val; | |
2761 | for ( size_t n = 0; frame.GetParam(n, &type, &name, &val); n++ ) | |
2762 | { | |
2763 | printf("\t%s %s = %s\n", type.mb_str(), name.mb_str(), val.mb_str()); | |
2764 | } | |
2765 | } | |
2766 | }; | |
2767 | ||
2768 | static void TestStackWalk(const char *argv0) | |
2769 | { | |
2770 | wxPuts(_T("*** Testing wxStackWalker ***\n")); | |
2771 | ||
2772 | StackDump dump(argv0); | |
2773 | dump.Walk(); | |
2774 | } | |
2775 | ||
74e2116a MB |
2776 | #endif // wxUSE_STACKWALKER |
2777 | ||
eaff0f0d VZ |
2778 | #endif // TEST_STACKWALKER |
2779 | ||
af33b199 VZ |
2780 | // ---------------------------------------------------------------------------- |
2781 | // standard paths | |
2782 | // ---------------------------------------------------------------------------- | |
2783 | ||
2784 | #ifdef TEST_STDPATHS | |
2785 | ||
2786 | #include "wx/stdpaths.h" | |
2787 | ||
2788 | static void TestStandardPaths() | |
2789 | { | |
2790 | wxPuts(_T("*** Testing wxStandardPaths ***\n")); | |
2791 | ||
2792 | wxTheApp->SetAppName(_T("console")); | |
2793 | ||
5ba95b79 | 2794 | wxStandardPathsBase& stdp = wxStandardPaths::Get(); |
af33b199 VZ |
2795 | wxPrintf(_T("Config dir (sys):\t%s\n"), stdp.GetConfigDir().c_str()); |
2796 | wxPrintf(_T("Config dir (user):\t%s\n"), stdp.GetUserConfigDir().c_str()); | |
2797 | wxPrintf(_T("Data dir (sys):\t\t%s\n"), stdp.GetDataDir().c_str()); | |
2798 | wxPrintf(_T("Data dir (sys local):\t%s\n"), stdp.GetLocalDataDir().c_str()); | |
2799 | wxPrintf(_T("Data dir (user):\t%s\n"), stdp.GetUserDataDir().c_str()); | |
2800 | wxPrintf(_T("Data dir (user local):\t%s\n"), stdp.GetUserLocalDataDir().c_str()); | |
17af82fb | 2801 | wxPrintf(_T("Documents dir:\t\t%s\n"), stdp.GetDocumentsDir().c_str()); |
ac7ad70d | 2802 | wxPrintf(_T("Executable path:\t%s\n"), stdp.GetExecutablePath().c_str()); |
af33b199 | 2803 | wxPrintf(_T("Plugins dir:\t\t%s\n"), stdp.GetPluginsDir().c_str()); |
3af9f2de VZ |
2804 | wxPrintf(_T("Resources dir:\t\t%s\n"), stdp.GetResourcesDir().c_str()); |
2805 | wxPrintf(_T("Localized res. dir:\t%s\n"), | |
2806 | stdp.GetLocalizedResourcesDir(_T("fr")).c_str()); | |
2807 | wxPrintf(_T("Message catalogs dir:\t%s\n"), | |
2808 | stdp.GetLocalizedResourcesDir | |
2809 | ( | |
2810 | _T("fr"), | |
2811 | wxStandardPaths::ResourceCat_Messages | |
2812 | ).c_str()); | |
af33b199 VZ |
2813 | } |
2814 | ||
2815 | #endif // TEST_STDPATHS | |
2816 | ||
83141d3a VZ |
2817 | // ---------------------------------------------------------------------------- |
2818 | // streams | |
2819 | // ---------------------------------------------------------------------------- | |
2820 | ||
2821 | #ifdef TEST_STREAMS | |
2822 | ||
e84010cf GD |
2823 | #include "wx/wfstream.h" |
2824 | #include "wx/mstream.h" | |
83141d3a | 2825 | |
24f25c8a VZ |
2826 | static void TestFileStream() |
2827 | { | |
456ae26d | 2828 | wxPuts(_T("*** Testing wxFileInputStream ***")); |
24f25c8a | 2829 | |
e9d2bb6f | 2830 | static const wxString filename = _T("testdata.fs"); |
24f25c8a VZ |
2831 | { |
2832 | wxFileOutputStream fsOut(filename); | |
2833 | fsOut.Write("foo", 3); | |
2834 | } | |
2835 | ||
24f25c8a | 2836 | { |
5df663af VZ |
2837 | wxFileInputStream fsIn(filename); |
2838 | wxPrintf(_T("File stream size: %u\n"), fsIn.GetSize()); | |
2839 | while ( !fsIn.Eof() ) | |
2840 | { | |
2841 | wxPutchar(fsIn.GetC()); | |
2842 | } | |
24f25c8a VZ |
2843 | } |
2844 | ||
2845 | if ( !wxRemoveFile(filename) ) | |
2846 | { | |
e9d2bb6f | 2847 | wxPrintf(_T("ERROR: failed to remove the file '%s'.\n"), filename.c_str()); |
24f25c8a VZ |
2848 | } |
2849 | ||
456ae26d | 2850 | wxPuts(_T("\n*** wxFileInputStream test done ***")); |
24f25c8a VZ |
2851 | } |
2852 | ||
83141d3a VZ |
2853 | static void TestMemoryStream() |
2854 | { | |
99a5af7f VZ |
2855 | wxPuts(_T("*** Testing wxMemoryOutputStream ***")); |
2856 | ||
2857 | wxMemoryOutputStream memOutStream; | |
2858 | wxPrintf(_T("Initially out stream offset: %lu\n"), | |
2859 | (unsigned long)memOutStream.TellO()); | |
2860 | ||
2861 | for ( const wxChar *p = _T("Hello, stream!"); *p; p++ ) | |
2862 | { | |
2863 | memOutStream.PutC(*p); | |
2864 | } | |
2865 | ||
2866 | wxPrintf(_T("Final out stream offset: %lu\n"), | |
2867 | (unsigned long)memOutStream.TellO()); | |
2868 | ||
2869 | wxPuts(_T("*** Testing wxMemoryInputStream ***")); | |
83141d3a VZ |
2870 | |
2871 | wxChar buf[1024]; | |
99a5af7f | 2872 | size_t len = memOutStream.CopyTo(buf, WXSIZEOF(buf)); |
83141d3a | 2873 | |
99a5af7f VZ |
2874 | wxMemoryInputStream memInpStream(buf, len); |
2875 | wxPrintf(_T("Memory stream size: %u\n"), memInpStream.GetSize()); | |
83141d3a VZ |
2876 | while ( !memInpStream.Eof() ) |
2877 | { | |
e9d2bb6f | 2878 | wxPutchar(memInpStream.GetC()); |
83141d3a VZ |
2879 | } |
2880 | ||
456ae26d | 2881 | wxPuts(_T("\n*** wxMemoryInputStream test done ***")); |
83141d3a VZ |
2882 | } |
2883 | ||
2884 | #endif // TEST_STREAMS | |
2885 | ||
d31b7b68 VZ |
2886 | // ---------------------------------------------------------------------------- |
2887 | // timers | |
2888 | // ---------------------------------------------------------------------------- | |
2889 | ||
2890 | #ifdef TEST_TIMER | |
2891 | ||
5ba95b79 | 2892 | #include "wx/stopwatch.h" |
e84010cf | 2893 | #include "wx/utils.h" |
d31b7b68 VZ |
2894 | |
2895 | static void TestStopWatch() | |
2896 | { | |
456ae26d | 2897 | wxPuts(_T("*** Testing wxStopWatch ***\n")); |
d31b7b68 VZ |
2898 | |
2899 | wxStopWatch sw; | |
677eff07 | 2900 | sw.Pause(); |
456ae26d | 2901 | wxPrintf(_T("Initially paused, after 2 seconds time is...")); |
677eff07 VZ |
2902 | fflush(stdout); |
2903 | wxSleep(2); | |
456ae26d | 2904 | wxPrintf(_T("\t%ldms\n"), sw.Time()); |
677eff07 | 2905 | |
456ae26d | 2906 | wxPrintf(_T("Resuming stopwatch and sleeping 3 seconds...")); |
677eff07 VZ |
2907 | fflush(stdout); |
2908 | sw.Resume(); | |
d31b7b68 | 2909 | wxSleep(3); |
456ae26d | 2910 | wxPrintf(_T("\telapsed time: %ldms\n"), sw.Time()); |
d31b7b68 VZ |
2911 | |
2912 | sw.Pause(); | |
456ae26d | 2913 | wxPrintf(_T("Pausing agan and sleeping 2 more seconds...")); |
677eff07 | 2914 | fflush(stdout); |
d31b7b68 | 2915 | wxSleep(2); |
456ae26d | 2916 | wxPrintf(_T("\telapsed time: %ldms\n"), sw.Time()); |
d31b7b68 VZ |
2917 | |
2918 | sw.Resume(); | |
456ae26d | 2919 | wxPrintf(_T("Finally resuming and sleeping 2 more seconds...")); |
677eff07 VZ |
2920 | fflush(stdout); |
2921 | wxSleep(2); | |
456ae26d | 2922 | wxPrintf(_T("\telapsed time: %ldms\n"), sw.Time()); |
87798c00 VZ |
2923 | |
2924 | wxStopWatch sw2; | |
456ae26d | 2925 | wxPuts(_T("\nChecking for 'backwards clock' bug...")); |
87798c00 VZ |
2926 | for ( size_t n = 0; n < 70; n++ ) |
2927 | { | |
2928 | sw2.Start(); | |
89e6463c GRG |
2929 | |
2930 | for ( size_t m = 0; m < 100000; m++ ) | |
87798c00 | 2931 | { |
89e6463c GRG |
2932 | if ( sw.Time() < 0 || sw2.Time() < 0 ) |
2933 | { | |
456ae26d | 2934 | wxPuts(_T("\ntime is negative - ERROR!")); |
89e6463c | 2935 | } |
87798c00 VZ |
2936 | } |
2937 | ||
e9d2bb6f | 2938 | wxPutchar('.'); |
677eff07 | 2939 | fflush(stdout); |
87798c00 VZ |
2940 | } |
2941 | ||
456ae26d | 2942 | wxPuts(_T(", ok.")); |
d31b7b68 VZ |
2943 | } |
2944 | ||
2945 | #endif // TEST_TIMER | |
2946 | ||
f6bcfd97 BP |
2947 | // ---------------------------------------------------------------------------- |
2948 | // vCard support | |
2949 | // ---------------------------------------------------------------------------- | |
2950 | ||
2951 | #ifdef TEST_VCARD | |
2952 | ||
e84010cf | 2953 | #include "wx/vcard.h" |
f6bcfd97 BP |
2954 | |
2955 | static void DumpVObject(size_t level, const wxVCardObject& vcard) | |
2956 | { | |
2957 | void *cookie; | |
2958 | wxVCardObject *vcObj = vcard.GetFirstProp(&cookie); | |
2959 | while ( vcObj ) | |
2960 | { | |
456ae26d | 2961 | wxPrintf(_T("%s%s"), |
f6bcfd97 BP |
2962 | wxString(_T('\t'), level).c_str(), |
2963 | vcObj->GetName().c_str()); | |
2964 | ||
2965 | wxString value; | |
2966 | switch ( vcObj->GetType() ) | |
2967 | { | |
2968 | case wxVCardObject::String: | |
2969 | case wxVCardObject::UString: | |
2970 | { | |
2971 | wxString val; | |
2972 | vcObj->GetValue(&val); | |
2973 | value << _T('"') << val << _T('"'); | |
2974 | } | |
2975 | break; | |
2976 | ||
2977 | case wxVCardObject::Int: | |
2978 | { | |
2979 | unsigned int i; | |
2980 | vcObj->GetValue(&i); | |
2981 | value.Printf(_T("%u"), i); | |
2982 | } | |
2983 | break; | |
2984 | ||
2985 | case wxVCardObject::Long: | |
2986 | { | |
2987 | unsigned long l; | |
2988 | vcObj->GetValue(&l); | |
2989 | value.Printf(_T("%lu"), l); | |
2990 | } | |
2991 | break; | |
2992 | ||
2993 | case wxVCardObject::None: | |
2994 | break; | |
2995 | ||
2996 | case wxVCardObject::Object: | |
2997 | value = _T("<node>"); | |
2998 | break; | |
2999 | ||
3000 | default: | |
3001 | value = _T("<unknown value type>"); | |
3002 | } | |
3003 | ||
3004 | if ( !!value ) | |
456ae26d | 3005 | wxPrintf(_T(" = %s"), value.c_str()); |
e9d2bb6f | 3006 | wxPutchar('\n'); |
f6bcfd97 BP |
3007 | |
3008 | DumpVObject(level + 1, *vcObj); | |
3009 | ||
3010 | delete vcObj; | |
3011 | vcObj = vcard.GetNextProp(&cookie); | |
3012 | } | |
3013 | } | |
3014 | ||
3015 | static void DumpVCardAddresses(const wxVCard& vcard) | |
3016 | { | |
456ae26d | 3017 | wxPuts(_T("\nShowing all addresses from vCard:\n")); |
f6bcfd97 BP |
3018 | |
3019 | size_t nAdr = 0; | |
3020 | void *cookie; | |
3021 | wxVCardAddress *addr = vcard.GetFirstAddress(&cookie); | |
3022 | while ( addr ) | |
3023 | { | |
3024 | wxString flagsStr; | |
3025 | int flags = addr->GetFlags(); | |
3026 | if ( flags & wxVCardAddress::Domestic ) | |
3027 | { | |
3028 | flagsStr << _T("domestic "); | |
3029 | } | |
3030 | if ( flags & wxVCardAddress::Intl ) | |
3031 | { | |
3032 | flagsStr << _T("international "); | |
3033 | } | |
3034 | if ( flags & wxVCardAddress::Postal ) | |
3035 | { | |
3036 | flagsStr << _T("postal "); | |
3037 | } | |
3038 | if ( flags & wxVCardAddress::Parcel ) | |
3039 | { | |
3040 | flagsStr << _T("parcel "); | |
3041 | } | |
3042 | if ( flags & wxVCardAddress::Home ) | |
3043 | { | |
3044 | flagsStr << _T("home "); | |
3045 | } | |
3046 | if ( flags & wxVCardAddress::Work ) | |
3047 | { | |
3048 | flagsStr << _T("work "); | |
3049 | } | |
3050 | ||
456ae26d | 3051 | wxPrintf(_T("Address %u:\n") |
f6bcfd97 BP |
3052 | "\tflags = %s\n" |
3053 | "\tvalue = %s;%s;%s;%s;%s;%s;%s\n", | |
3054 | ++nAdr, | |
3055 | flagsStr.c_str(), | |
3056 | addr->GetPostOffice().c_str(), | |
3057 | addr->GetExtAddress().c_str(), | |
3058 | addr->GetStreet().c_str(), | |
3059 | addr->GetLocality().c_str(), | |
3060 | addr->GetRegion().c_str(), | |
3061 | addr->GetPostalCode().c_str(), | |
3062 | addr->GetCountry().c_str() | |
3063 | ); | |
3064 | ||
3065 | delete addr; | |
3066 | addr = vcard.GetNextAddress(&cookie); | |
3067 | } | |
3068 | } | |
3069 | ||
3070 | static void DumpVCardPhoneNumbers(const wxVCard& vcard) | |
3071 | { | |
456ae26d | 3072 | wxPuts(_T("\nShowing all phone numbers from vCard:\n")); |
f6bcfd97 BP |
3073 | |
3074 | size_t nPhone = 0; | |
3075 | void *cookie; | |
3076 | wxVCardPhoneNumber *phone = vcard.GetFirstPhoneNumber(&cookie); | |
3077 | while ( phone ) | |
3078 | { | |
3079 | wxString flagsStr; | |
3080 | int flags = phone->GetFlags(); | |
3081 | if ( flags & wxVCardPhoneNumber::Voice ) | |
3082 | { | |
3083 | flagsStr << _T("voice "); | |
3084 | } | |
3085 | if ( flags & wxVCardPhoneNumber::Fax ) | |
3086 | { | |
3087 | flagsStr << _T("fax "); | |
3088 | } | |
3089 | if ( flags & wxVCardPhoneNumber::Cellular ) | |
3090 | { | |
3091 | flagsStr << _T("cellular "); | |
3092 | } | |
3093 | if ( flags & wxVCardPhoneNumber::Modem ) | |
3094 | { | |
3095 | flagsStr << _T("modem "); | |
3096 | } | |
3097 | if ( flags & wxVCardPhoneNumber::Home ) | |
3098 | { | |
3099 | flagsStr << _T("home "); | |
3100 | } | |
3101 | if ( flags & wxVCardPhoneNumber::Work ) | |
3102 | { | |
3103 | flagsStr << _T("work "); | |
3104 | } | |
3105 | ||
456ae26d | 3106 | wxPrintf(_T("Phone number %u:\n") |
f6bcfd97 BP |
3107 | "\tflags = %s\n" |
3108 | "\tvalue = %s\n", | |
3109 | ++nPhone, | |
3110 | flagsStr.c_str(), | |
3111 | phone->GetNumber().c_str() | |
3112 | ); | |
3113 | ||
3114 | delete phone; | |
3115 | phone = vcard.GetNextPhoneNumber(&cookie); | |
3116 | } | |
3117 | } | |
3118 | ||
3119 | static void TestVCardRead() | |
3120 | { | |
456ae26d | 3121 | wxPuts(_T("*** Testing wxVCard reading ***\n")); |
f6bcfd97 BP |
3122 | |
3123 | wxVCard vcard(_T("vcard.vcf")); | |
3124 | if ( !vcard.IsOk() ) | |
3125 | { | |
456ae26d | 3126 | wxPuts(_T("ERROR: couldn't load vCard.")); |
f6bcfd97 BP |
3127 | } |
3128 | else | |
3129 | { | |
3130 | // read individual vCard properties | |
3131 | wxVCardObject *vcObj = vcard.GetProperty("FN"); | |
3132 | wxString value; | |
3133 | if ( vcObj ) | |
3134 | { | |
3135 | vcObj->GetValue(&value); | |
3136 | delete vcObj; | |
3137 | } | |
3138 | else | |
3139 | { | |
3140 | value = _T("<none>"); | |
3141 | } | |
3142 | ||
456ae26d | 3143 | wxPrintf(_T("Full name retrieved directly: %s\n"), value.c_str()); |
f6bcfd97 BP |
3144 | |
3145 | ||
3146 | if ( !vcard.GetFullName(&value) ) | |
3147 | { | |
3148 | value = _T("<none>"); | |
3149 | } | |
3150 | ||
456ae26d | 3151 | wxPrintf(_T("Full name from wxVCard API: %s\n"), value.c_str()); |
f6bcfd97 | 3152 | |
3103e8a9 | 3153 | // now show how to deal with multiply occurring properties |
f6bcfd97 BP |
3154 | DumpVCardAddresses(vcard); |
3155 | DumpVCardPhoneNumbers(vcard); | |
3156 | ||
3157 | // and finally show all | |
456ae26d | 3158 | wxPuts(_T("\nNow dumping the entire vCard:\n") |
f6bcfd97 BP |
3159 | "-----------------------------\n"); |
3160 | ||
3161 | DumpVObject(0, vcard); | |
3162 | } | |
3163 | } | |
3164 | ||
3165 | static void TestVCardWrite() | |
3166 | { | |
456ae26d | 3167 | wxPuts(_T("*** Testing wxVCard writing ***\n")); |
f6bcfd97 BP |
3168 | |
3169 | wxVCard vcard; | |
3170 | if ( !vcard.IsOk() ) | |
3171 | { | |
456ae26d | 3172 | wxPuts(_T("ERROR: couldn't create vCard.")); |
f6bcfd97 BP |
3173 | } |
3174 | else | |
3175 | { | |
3176 | // set some fields | |
3177 | vcard.SetName("Zeitlin", "Vadim"); | |
3178 | vcard.SetFullName("Vadim Zeitlin"); | |
be5a51fb | 3179 | vcard.SetOrganization("wxWidgets", "R&D"); |
f6bcfd97 BP |
3180 | |
3181 | // just dump the vCard back | |
456ae26d VZ |
3182 | wxPuts(_T("Entire vCard follows:\n")); |
3183 | wxPuts(vcard.Write()); | |
f6bcfd97 BP |
3184 | } |
3185 | } | |
3186 | ||
3187 | #endif // TEST_VCARD | |
3188 | ||
0e2c5534 VZ |
3189 | // ---------------------------------------------------------------------------- |
3190 | // wxVolume tests | |
3191 | // ---------------------------------------------------------------------------- | |
3192 | ||
ba6ea19e | 3193 | #if !defined(__WIN32__) || !wxUSE_FSVOLUME |
0e2c5534 VZ |
3194 | #undef TEST_VOLUME |
3195 | #endif | |
3196 | ||
3197 | #ifdef TEST_VOLUME | |
3198 | ||
3199 | #include "wx/volume.h" | |
3200 | ||
3201 | static const wxChar *volumeKinds[] = | |
3202 | { | |
3203 | _T("floppy"), | |
3204 | _T("hard disk"), | |
3205 | _T("CD-ROM"), | |
3206 | _T("DVD-ROM"), | |
3207 | _T("network volume"), | |
3208 | _T("other volume"), | |
3209 | }; | |
3210 | ||
3211 | static void TestFSVolume() | |
3212 | { | |
3213 | wxPuts(_T("*** Testing wxFSVolume class ***")); | |
3214 | ||
3215 | wxArrayString volumes = wxFSVolume::GetVolumes(); | |
3216 | size_t count = volumes.GetCount(); | |
3217 | ||
3218 | if ( !count ) | |
3219 | { | |
3220 | wxPuts(_T("ERROR: no mounted volumes?")); | |
3221 | return; | |
3222 | } | |
3223 | ||
3224 | wxPrintf(_T("%u mounted volumes found:\n"), count); | |
3225 | ||
3226 | for ( size_t n = 0; n < count; n++ ) | |
3227 | { | |
3228 | wxFSVolume vol(volumes[n]); | |
3229 | if ( !vol.IsOk() ) | |
3230 | { | |
3231 | wxPuts(_T("ERROR: couldn't create volume")); | |
3232 | continue; | |
3233 | } | |
3234 | ||
3235 | wxPrintf(_T("%u: %s (%s), %s, %s, %s\n"), | |
3236 | n + 1, | |
3237 | vol.GetDisplayName().c_str(), | |
3238 | vol.GetName().c_str(), | |
3239 | volumeKinds[vol.GetKind()], | |
3240 | vol.IsWritable() ? _T("rw") : _T("ro"), | |
3241 | vol.GetFlags() & wxFS_VOL_REMOVABLE ? _T("removable") | |
3242 | : _T("fixed")); | |
3243 | } | |
3244 | } | |
3245 | ||
3246 | #endif // TEST_VOLUME | |
3247 | ||
f6bcfd97 | 3248 | // ---------------------------------------------------------------------------- |
e7d41190 | 3249 | // wide char and Unicode support |
f6bcfd97 BP |
3250 | // ---------------------------------------------------------------------------- |
3251 | ||
3252 | #ifdef TEST_WCHAR | |
3253 | ||
e84010cf GD |
3254 | #include "wx/strconv.h" |
3255 | #include "wx/fontenc.h" | |
3256 | #include "wx/encconv.h" | |
3257 | #include "wx/buffer.h" | |
f6bcfd97 | 3258 | |
2b5f62a0 | 3259 | static const unsigned char utf8koi8r[] = |
ac511156 VZ |
3260 | { |
3261 | 208, 157, 208, 181, 209, 129, 208, 186, 208, 176, 208, 183, 208, 176, | |
3262 | 208, 189, 208, 189, 208, 190, 32, 208, 191, 208, 190, 209, 128, 208, | |
3263 | 176, 208, 180, 208, 190, 208, 178, 208, 176, 208, 187, 32, 208, 188, | |
3264 | 208, 181, 208, 189, 209, 143, 32, 209, 129, 208, 178, 208, 190, 208, | |
3265 | 181, 208, 185, 32, 208, 186, 209, 128, 209, 131, 209, 130, 208, 181, | |
3266 | 208, 185, 209, 136, 208, 181, 208, 185, 32, 208, 189, 208, 190, 208, | |
3267 | 178, 208, 190, 209, 129, 209, 130, 209, 140, 209, 142, 0 | |
3268 | }; | |
3269 | ||
2b5f62a0 VZ |
3270 | static const unsigned char utf8iso8859_1[] = |
3271 | { | |
3272 | 0x53, 0x79, 0x73, 0x74, 0xc3, 0xa8, 0x6d, 0x65, 0x73, 0x20, 0x49, 0x6e, | |
3273 | 0x74, 0xc3, 0xa9, 0x67, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x20, 0x65, | |
3274 | 0x6e, 0x20, 0x4d, 0xc3, 0xa9, 0x63, 0x61, 0x6e, 0x69, 0x71, 0x75, 0x65, | |
3275 | 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x69, 0x71, 0x75, 0x65, 0x20, 0x65, | |
3276 | 0x74, 0x20, 0x51, 0x75, 0x61, 0x6e, 0x74, 0x69, 0x71, 0x75, 0x65, 0 | |
3277 | }; | |
3278 | ||
3279 | static const unsigned char utf8Invalid[] = | |
3280 | { | |
3281 | 0x3c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3e, 0x32, 0x30, 0x30, | |
3282 | 0x32, 0xe5, 0xb9, 0xb4, 0x30, 0x39, 0xe6, 0x9c, 0x88, 0x32, 0x35, 0xe6, | |
3283 | 0x97, 0xa5, 0x20, 0x30, 0x37, 0xe6, 0x99, 0x82, 0x33, 0x39, 0xe5, 0x88, | |
3284 | 0x86, 0x35, 0x37, 0xe7, 0xa7, 0x92, 0x3c, 0x2f, 0x64, 0x69, 0x73, 0x70, | |
3285 | 0x6c, 0x61, 0x79, 0 | |
3286 | }; | |
3287 | ||
3288 | static const struct Utf8Data | |
3289 | { | |
3290 | const unsigned char *text; | |
3291 | size_t len; | |
3292 | const wxChar *charset; | |
3293 | wxFontEncoding encoding; | |
3294 | } utf8data[] = | |
3295 | { | |
3296 | { utf8Invalid, WXSIZEOF(utf8Invalid), _T("iso8859-1"), wxFONTENCODING_ISO8859_1 }, | |
3297 | { utf8koi8r, WXSIZEOF(utf8koi8r), _T("koi8-r"), wxFONTENCODING_KOI8 }, | |
3298 | { utf8iso8859_1, WXSIZEOF(utf8iso8859_1), _T("iso8859-1"), wxFONTENCODING_ISO8859_1 }, | |
3299 | }; | |
456ae26d | 3300 | |
f6bcfd97 BP |
3301 | static void TestUtf8() |
3302 | { | |
456ae26d | 3303 | wxPuts(_T("*** Testing UTF8 support ***\n")); |
f6bcfd97 | 3304 | |
24f25c8a VZ |
3305 | char buf[1024]; |
3306 | wchar_t wbuf[1024]; | |
2b5f62a0 VZ |
3307 | |
3308 | for ( size_t n = 0; n < WXSIZEOF(utf8data); n++ ) | |
24f25c8a | 3309 | { |
2b5f62a0 VZ |
3310 | const Utf8Data& u8d = utf8data[n]; |
3311 | if ( wxConvUTF8.MB2WC(wbuf, (const char *)u8d.text, | |
3312 | WXSIZEOF(wbuf)) == (size_t)-1 ) | |
24f25c8a | 3313 | { |
2b5f62a0 | 3314 | wxPuts(_T("ERROR: UTF-8 decoding failed.")); |
24f25c8a VZ |
3315 | } |
3316 | else | |
ac511156 | 3317 | { |
2b5f62a0 VZ |
3318 | wxCSConv conv(u8d.charset); |
3319 | if ( conv.WC2MB(buf, wbuf, WXSIZEOF(buf)) == (size_t)-1 ) | |
3320 | { | |
3321 | wxPrintf(_T("ERROR: conversion to %s failed.\n"), u8d.charset); | |
3322 | } | |
3323 | else | |
3324 | { | |
3325 | wxPrintf(_T("String in %s: %s\n"), u8d.charset, buf); | |
3326 | } | |
ac511156 | 3327 | } |
ac511156 | 3328 | |
5bc1deeb | 3329 | wxString s(wxConvUTF8.cMB2WC((const char *)u8d.text)); |
2b5f62a0 VZ |
3330 | if ( s.empty() ) |
3331 | s = _T("<< conversion failed >>"); | |
3332 | wxPrintf(_T("String in current cset: %s\n"), s.c_str()); | |
3333 | ||
ac511156 VZ |
3334 | } |
3335 | ||
e9d2bb6f | 3336 | wxPuts(wxEmptyString); |
ac511156 | 3337 | } |
f6bcfd97 | 3338 | |
ac511156 VZ |
3339 | static void TestEncodingConverter() |
3340 | { | |
3341 | wxPuts(_T("*** Testing wxEncodingConverter ***\n")); | |
3342 | ||
3343 | // using wxEncodingConverter should give the same result as above | |
3344 | char buf[1024]; | |
3345 | wchar_t wbuf[1024]; | |
2b5f62a0 VZ |
3346 | if ( wxConvUTF8.MB2WC(wbuf, (const char *)utf8koi8r, |
3347 | WXSIZEOF(utf8koi8r)) == (size_t)-1 ) | |
ac511156 | 3348 | { |
456ae26d | 3349 | wxPuts(_T("ERROR: UTF-8 decoding failed.")); |
ac511156 VZ |
3350 | } |
3351 | else | |
3352 | { | |
3353 | wxEncodingConverter ec; | |
3354 | ec.Init(wxFONTENCODING_UNICODE, wxFONTENCODING_KOI8); | |
3355 | ec.Convert(wbuf, buf); | |
2b5f62a0 | 3356 | wxPrintf(_T("The same KOI8-R string using wxEC: %s\n"), buf); |
24f25c8a | 3357 | } |
ac511156 | 3358 | |
e9d2bb6f | 3359 | wxPuts(wxEmptyString); |
f6bcfd97 BP |
3360 | } |
3361 | ||
3362 | #endif // TEST_WCHAR | |
3363 | ||
3364 | // ---------------------------------------------------------------------------- | |
3365 | // ZIP stream | |
3366 | // ---------------------------------------------------------------------------- | |
3367 | ||
3368 | #ifdef TEST_ZIP | |
3369 | ||
2ca8b884 VZ |
3370 | #include "wx/filesys.h" |
3371 | #include "wx/fs_zip.h" | |
f6bcfd97 BP |
3372 | #include "wx/zipstrm.h" |
3373 | ||
2ca8b884 VZ |
3374 | static const wxChar *TESTFILE_ZIP = _T("testdata.zip"); |
3375 | ||
f6bcfd97 BP |
3376 | static void TestZipStreamRead() |
3377 | { | |
456ae26d | 3378 | wxPuts(_T("*** Testing ZIP reading ***\n")); |
f6bcfd97 | 3379 | |
e9d2bb6f | 3380 | static const wxString filename = _T("foo"); |
2ca8b884 | 3381 | wxZipInputStream istr(TESTFILE_ZIP, filename); |
456ae26d | 3382 | wxPrintf(_T("Archive size: %u\n"), istr.GetSize()); |
f6bcfd97 | 3383 | |
e9d2bb6f | 3384 | wxPrintf(_T("Dumping the file '%s':\n"), filename.c_str()); |
f6bcfd97 BP |
3385 | while ( !istr.Eof() ) |
3386 | { | |
e9d2bb6f | 3387 | wxPutchar(istr.GetC()); |
f6bcfd97 BP |
3388 | fflush(stdout); |
3389 | } | |
3390 | ||
456ae26d | 3391 | wxPuts(_T("\n----- done ------")); |
f6bcfd97 BP |
3392 | } |
3393 | ||
2ca8b884 VZ |
3394 | static void DumpZipDirectory(wxFileSystem& fs, |
3395 | const wxString& dir, | |
3396 | const wxString& indent) | |
3397 | { | |
3398 | wxString prefix = wxString::Format(_T("%s#zip:%s"), | |
3399 | TESTFILE_ZIP, dir.c_str()); | |
3400 | wxString wildcard = prefix + _T("/*"); | |
3401 | ||
3402 | wxString dirname = fs.FindFirst(wildcard, wxDIR); | |
3403 | while ( !dirname.empty() ) | |
3404 | { | |
3405 | if ( !dirname.StartsWith(prefix + _T('/'), &dirname) ) | |
3406 | { | |
3407 | wxPrintf(_T("ERROR: unexpected wxFileSystem::FindNext result\n")); | |
3408 | ||
3409 | break; | |
3410 | } | |
3411 | ||
3412 | wxPrintf(_T("%s%s\n"), indent.c_str(), dirname.c_str()); | |
3413 | ||
3414 | DumpZipDirectory(fs, dirname, | |
3415 | indent + wxString(_T(' '), 4)); | |
3416 | ||
3417 | dirname = fs.FindNext(); | |
3418 | } | |
3419 | ||
3420 | wxString filename = fs.FindFirst(wildcard, wxFILE); | |
3421 | while ( !filename.empty() ) | |
3422 | { | |
3423 | if ( !filename.StartsWith(prefix, &filename) ) | |
3424 | { | |
3425 | wxPrintf(_T("ERROR: unexpected wxFileSystem::FindNext result\n")); | |
3426 | ||
3427 | break; | |
3428 | } | |
3429 | ||
3430 | wxPrintf(_T("%s%s\n"), indent.c_str(), filename.c_str()); | |
3431 | ||
3432 | filename = fs.FindNext(); | |
3433 | } | |
3434 | } | |
3435 | ||
3436 | static void TestZipFileSystem() | |
3437 | { | |
456ae26d | 3438 | wxPuts(_T("*** Testing ZIP file system ***\n")); |
2ca8b884 VZ |
3439 | |
3440 | wxFileSystem::AddHandler(new wxZipFSHandler); | |
3441 | wxFileSystem fs; | |
3442 | wxPrintf(_T("Dumping all files in the archive %s:\n"), TESTFILE_ZIP); | |
3443 | ||
3444 | DumpZipDirectory(fs, _T(""), wxString(_T(' '), 4)); | |
3445 | } | |
3446 | ||
f6bcfd97 BP |
3447 | #endif // TEST_ZIP |
3448 | ||
b76b015e VZ |
3449 | // ---------------------------------------------------------------------------- |
3450 | // date time | |
3451 | // ---------------------------------------------------------------------------- | |
3452 | ||
d31b7b68 | 3453 | #ifdef TEST_DATETIME |
b76b015e | 3454 | |
b713f891 | 3455 | #include "wx/math.h" |
e84010cf | 3456 | #include "wx/datetime.h" |
b76b015e | 3457 | |
2f02cb89 | 3458 | // this test miscellaneous static wxDateTime functions |
4b586201 WS |
3459 | |
3460 | #if TEST_ALL | |
3461 | ||
2f02cb89 VZ |
3462 | static void TestTimeStatic() |
3463 | { | |
456ae26d | 3464 | wxPuts(_T("\n*** wxDateTime static methods test ***")); |
2f02cb89 VZ |
3465 | |
3466 | // some info about the current date | |
3467 | int year = wxDateTime::GetCurrentYear(); | |
456ae26d | 3468 | wxPrintf(_T("Current year %d is %sa leap one and has %d days.\n"), |
2f02cb89 VZ |
3469 | year, |
3470 | wxDateTime::IsLeapYear(year) ? "" : "not ", | |
3471 | wxDateTime::GetNumberOfDays(year)); | |
3472 | ||
3473 | wxDateTime::Month month = wxDateTime::GetCurrentMonth(); | |
456ae26d | 3474 | wxPrintf(_T("Current month is '%s' ('%s') and it has %d days\n"), |
f0f951fa | 3475 | wxDateTime::GetMonthName(month, wxDateTime::Name_Abbr).c_str(), |
2f02cb89 VZ |
3476 | wxDateTime::GetMonthName(month).c_str(), |
3477 | wxDateTime::GetNumberOfDays(month)); | |
2f02cb89 VZ |
3478 | } |
3479 | ||
fcc3d7cb VZ |
3480 | // test time zones stuff |
3481 | static void TestTimeZones() | |
3482 | { | |
456ae26d | 3483 | wxPuts(_T("\n*** wxDateTime timezone test ***")); |
fcc3d7cb VZ |
3484 | |
3485 | wxDateTime now = wxDateTime::Now(); | |
3486 | ||
456ae26d VZ |
3487 | wxPrintf(_T("Current GMT time:\t%s\n"), now.Format(_T("%c"), wxDateTime::GMT0).c_str()); |
3488 | wxPrintf(_T("Unix epoch (GMT):\t%s\n"), wxDateTime((time_t)0).Format(_T("%c"), wxDateTime::GMT0).c_str()); | |
3489 | wxPrintf(_T("Unix epoch (EST):\t%s\n"), wxDateTime((time_t)0).Format(_T("%c"), wxDateTime::EST).c_str()); | |
3490 | wxPrintf(_T("Current time in Paris:\t%s\n"), now.Format(_T("%c"), wxDateTime::CET).c_str()); | |
3491 | wxPrintf(_T(" Moscow:\t%s\n"), now.Format(_T("%c"), wxDateTime::MSK).c_str()); | |
3492 | wxPrintf(_T(" New York:\t%s\n"), now.Format(_T("%c"), wxDateTime::EST).c_str()); | |
9d9b7755 | 3493 | |
ccd6aacd VZ |
3494 | wxPrintf(_T("%s\n"), wxDateTime::Now().Format(_T("Our timezone is %Z")).c_str()); |
3495 | ||
9d9b7755 VZ |
3496 | wxDateTime::Tm tm = now.GetTm(); |
3497 | if ( wxDateTime(tm) != now ) | |
3498 | { | |
456ae26d VZ |
3499 | wxPrintf(_T("ERROR: got %s instead of %s\n"), |
3500 | wxDateTime(tm).Format().c_str(), now.Format().c_str()); | |
9d9b7755 | 3501 | } |
fcc3d7cb VZ |
3502 | } |
3503 | ||
e6ec579c VZ |
3504 | // test some minimal support for the dates outside the standard range |
3505 | static void TestTimeRange() | |
3506 | { | |
456ae26d | 3507 | wxPuts(_T("\n*** wxDateTime out-of-standard-range dates test ***")); |
e6ec579c | 3508 | |
456ae26d | 3509 | static const wxChar *fmt = _T("%d-%b-%Y %H:%M:%S"); |
211c2250 | 3510 | |
456ae26d VZ |
3511 | wxPrintf(_T("Unix epoch:\t%s\n"), |
3512 | wxDateTime(2440587.5).Format(fmt).c_str()); | |
3513 | wxPrintf(_T("Feb 29, 0: \t%s\n"), | |
3514 | wxDateTime(29, wxDateTime::Feb, 0).Format(fmt).c_str()); | |
3515 | wxPrintf(_T("JDN 0: \t%s\n"), | |
3516 | wxDateTime(0.0).Format(fmt).c_str()); | |
3517 | wxPrintf(_T("Jan 1, 1AD:\t%s\n"), | |
3518 | wxDateTime(1, wxDateTime::Jan, 1).Format(fmt).c_str()); | |
3519 | wxPrintf(_T("May 29, 2099:\t%s\n"), | |
3520 | wxDateTime(29, wxDateTime::May, 2099).Format(fmt).c_str()); | |
e6ec579c VZ |
3521 | } |
3522 | ||
239446b4 VZ |
3523 | // test DST calculations |
3524 | static void TestTimeDST() | |
3525 | { | |
456ae26d | 3526 | wxPuts(_T("\n*** wxDateTime DST test ***")); |
239446b4 | 3527 | |
456ae26d | 3528 | wxPrintf(_T("DST is%s in effect now.\n\n"), |
e9d2bb6f | 3529 | wxDateTime::Now().IsDST() ? wxEmptyString : _T(" not")); |
239446b4 | 3530 | |
ccd6aacd | 3531 | for ( int year = 1990; year < 2005; year++ ) |
239446b4 | 3532 | { |
456ae26d VZ |
3533 | wxPrintf(_T("DST period in Europe for year %d: from %s to %s\n"), |
3534 | year, | |
3535 | wxDateTime::GetBeginDST(year, wxDateTime::Country_EEC).Format().c_str(), | |
3536 | wxDateTime::GetEndDST(year, wxDateTime::Country_EEC).Format().c_str()); | |
239446b4 VZ |
3537 | } |
3538 | } | |
3539 | ||
4b586201 WS |
3540 | #endif // TEST_ALL |
3541 | ||
3542 | #if TEST_INTERACTIVE | |
3543 | ||
b92fd37c | 3544 | static void TestDateTimeInteractive() |
9d9b7755 | 3545 | { |
456ae26d | 3546 | wxPuts(_T("\n*** interactive wxDateTime tests ***")); |
9d9b7755 | 3547 | |
456ae26d | 3548 | wxChar buf[128]; |
9d9b7755 VZ |
3549 | |
3550 | for ( ;; ) | |
3551 | { | |
456ae26d VZ |
3552 | wxPrintf(_T("Enter a date: ")); |
3553 | if ( !wxFgets(buf, WXSIZEOF(buf), stdin) ) | |
9d9b7755 VZ |
3554 | break; |
3555 | ||
f6bcfd97 | 3556 | // kill the last '\n' |
456ae26d | 3557 | buf[wxStrlen(buf) - 1] = 0; |
f6bcfd97 | 3558 | |
9d9b7755 | 3559 | wxDateTime dt; |
456ae26d | 3560 | const wxChar *p = dt.ParseDate(buf); |
f6bcfd97 | 3561 | if ( !p ) |
9d9b7755 | 3562 | { |
456ae26d | 3563 | wxPrintf(_T("ERROR: failed to parse the date '%s'.\n"), buf); |
9d9b7755 VZ |
3564 | |
3565 | continue; | |
3566 | } | |
f6bcfd97 BP |
3567 | else if ( *p ) |
3568 | { | |
456ae26d | 3569 | wxPrintf(_T("WARNING: parsed only first %u characters.\n"), p - buf); |
f6bcfd97 | 3570 | } |
9d9b7755 | 3571 | |
456ae26d VZ |
3572 | wxPrintf(_T("%s: day %u, week of month %u/%u, week of year %u\n"), |
3573 | dt.Format(_T("%b %d, %Y")).c_str(), | |
3574 | dt.GetDayOfYear(), | |
3575 | dt.GetWeekOfMonth(wxDateTime::Monday_First), | |
3576 | dt.GetWeekOfMonth(wxDateTime::Sunday_First), | |
3577 | dt.GetWeekOfYear(wxDateTime::Monday_First)); | |
9d9b7755 VZ |
3578 | } |
3579 | ||
456ae26d | 3580 | wxPuts(_T("\n*** done ***")); |
9d9b7755 VZ |
3581 | } |
3582 | ||
4b586201 WS |
3583 | #endif // TEST_INTERACTIVE |
3584 | ||
3585 | #if TEST_ALL | |
3586 | ||
f6bcfd97 BP |
3587 | static void TestTimeMS() |
3588 | { | |
456ae26d | 3589 | wxPuts(_T("*** testing millisecond-resolution support in wxDateTime ***")); |
f6bcfd97 BP |
3590 | |
3591 | wxDateTime dt1 = wxDateTime::Now(), | |
3592 | dt2 = wxDateTime::UNow(); | |
3593 | ||
456ae26d VZ |
3594 | wxPrintf(_T("Now = %s\n"), dt1.Format(_T("%H:%M:%S:%l")).c_str()); |
3595 | wxPrintf(_T("UNow = %s\n"), dt2.Format(_T("%H:%M:%S:%l")).c_str()); | |
3596 | wxPrintf(_T("Dummy loop: ")); | |
3ca6a5f0 BP |
3597 | for ( int i = 0; i < 6000; i++ ) |
3598 | { | |
3599 | //for ( int j = 0; j < 10; j++ ) | |
3600 | { | |
3601 | wxString s; | |
ccd6aacd | 3602 | s.Printf(_T("%g"), sqrt((float)i)); |
3ca6a5f0 BP |
3603 | } |
3604 | ||
3605 | if ( !(i % 100) ) | |
e9d2bb6f | 3606 | wxPutchar('.'); |
3ca6a5f0 | 3607 | } |
456ae26d | 3608 | wxPuts(_T(", done")); |
3ca6a5f0 BP |
3609 | |
3610 | dt1 = dt2; | |
3611 | dt2 = wxDateTime::UNow(); | |
456ae26d | 3612 | wxPrintf(_T("UNow = %s\n"), dt2.Format(_T("%H:%M:%S:%l")).c_str()); |
3ca6a5f0 | 3613 | |
456ae26d | 3614 | wxPrintf(_T("Loop executed in %s ms\n"), (dt2 - dt1).Format(_T("%l")).c_str()); |
f6bcfd97 | 3615 | |
456ae26d | 3616 | wxPuts(_T("\n*** done ***")); |
f6bcfd97 BP |
3617 | } |
3618 | ||
0de868d9 VZ |
3619 | static void TestTimeHolidays() |
3620 | { | |
456ae26d | 3621 | wxPuts(_T("\n*** testing wxDateTimeHolidayAuthority ***\n")); |
0de868d9 VZ |
3622 | |
3623 | wxDateTime::Tm tm = wxDateTime(29, wxDateTime::May, 2000).GetTm(); | |
3624 | wxDateTime dtStart(1, tm.mon, tm.year), | |
3625 | dtEnd = dtStart.GetLastMonthDay(); | |
3626 | ||
3627 | wxDateTimeArray hol; | |
3628 | wxDateTimeHolidayAuthority::GetHolidaysInRange(dtStart, dtEnd, hol); | |
3629 | ||
456ae26d | 3630 | const wxChar *format = _T("%d-%b-%Y (%a)"); |
0de868d9 | 3631 | |
456ae26d | 3632 | wxPrintf(_T("All holidays between %s and %s:\n"), |
0de868d9 VZ |
3633 | dtStart.Format(format).c_str(), dtEnd.Format(format).c_str()); |
3634 | ||
3635 | size_t count = hol.GetCount(); | |
3636 | for ( size_t n = 0; n < count; n++ ) | |
3637 | { | |
456ae26d | 3638 | wxPrintf(_T("\t%s\n"), hol[n].Format(format).c_str()); |
0de868d9 VZ |
3639 | } |
3640 | ||
e9d2bb6f | 3641 | wxPuts(wxEmptyString); |
0de868d9 VZ |
3642 | } |
3643 | ||
f6bcfd97 BP |
3644 | static void TestTimeZoneBug() |
3645 | { | |
456ae26d | 3646 | wxPuts(_T("\n*** testing for DST/timezone bug ***\n")); |
f6bcfd97 BP |
3647 | |
3648 | wxDateTime date = wxDateTime(1, wxDateTime::Mar, 2000); | |
3649 | for ( int i = 0; i < 31; i++ ) | |
3650 | { | |
456ae26d | 3651 | wxPrintf(_T("Date %s: week day %s.\n"), |
f6bcfd97 BP |
3652 | date.Format(_T("%d-%m-%Y")).c_str(), |
3653 | date.GetWeekDayName(date.GetWeekDay()).c_str()); | |
3654 | ||
3655 | date += wxDateSpan::Day(); | |
3656 | } | |
3657 | ||
e9d2bb6f | 3658 | wxPuts(wxEmptyString); |
f6bcfd97 BP |
3659 | } |
3660 | ||
df05cdc5 VZ |
3661 | static void TestTimeSpanFormat() |
3662 | { | |
456ae26d | 3663 | wxPuts(_T("\n*** wxTimeSpan tests ***")); |
df05cdc5 | 3664 | |
456ae26d | 3665 | static const wxChar *formats[] = |
df05cdc5 VZ |
3666 | { |
3667 | _T("(default) %H:%M:%S"), | |
3668 | _T("%E weeks and %D days"), | |
3669 | _T("%l milliseconds"), | |
3670 | _T("(with ms) %H:%M:%S:%l"), | |
3671 | _T("100%% of minutes is %M"), // test "%%" | |
3672 | _T("%D days and %H hours"), | |
a8625337 | 3673 | _T("or also %S seconds"), |
df05cdc5 VZ |
3674 | }; |
3675 | ||
3676 | wxTimeSpan ts1(1, 2, 3, 4), | |
3677 | ts2(111, 222, 333); | |
3678 | for ( size_t n = 0; n < WXSIZEOF(formats); n++ ) | |
3679 | { | |
456ae26d | 3680 | wxPrintf(_T("ts1 = %s\tts2 = %s\n"), |
df05cdc5 VZ |
3681 | ts1.Format(formats[n]).c_str(), |
3682 | ts2.Format(formats[n]).c_str()); | |
3683 | } | |
3684 | ||
e9d2bb6f | 3685 | wxPuts(wxEmptyString); |
df05cdc5 VZ |
3686 | } |
3687 | ||
4b586201 WS |
3688 | #endif // TEST_ALL |
3689 | ||
d31b7b68 | 3690 | #endif // TEST_DATETIME |
b76b015e | 3691 | |
39937656 VZ |
3692 | // ---------------------------------------------------------------------------- |
3693 | // wxTextInput/OutputStream | |
3694 | // ---------------------------------------------------------------------------- | |
3695 | ||
3696 | #ifdef TEST_TEXTSTREAM | |
3697 | ||
3698 | #include "wx/txtstrm.h" | |
3699 | #include "wx/wfstream.h" | |
3700 | ||
3701 | static void TestTextInputStream() | |
3702 | { | |
3703 | wxPuts(_T("\n*** wxTextInputStream test ***")); | |
3704 | ||
e9d2bb6f DS |
3705 | wxString filename = _T("testdata.fc"); |
3706 | wxFileInputStream fsIn(filename); | |
39937656 VZ |
3707 | if ( !fsIn.Ok() ) |
3708 | { | |
3709 | wxPuts(_T("ERROR: couldn't open file.")); | |
3710 | } | |
3711 | else | |
3712 | { | |
3713 | wxTextInputStream tis(fsIn); | |
3714 | ||
3715 | size_t line = 1; | |
3716 | for ( ;; ) | |
3717 | { | |
3718 | const wxString s = tis.ReadLine(); | |
3719 | ||
3720 | // line could be non empty if the last line of the file isn't | |
3721 | // terminated with EOL | |
3722 | if ( fsIn.Eof() && s.empty() ) | |
3723 | break; | |
3724 | ||
3725 | wxPrintf(_T("Line %d: %s\n"), line++, s.c_str()); | |
3726 | } | |
3727 | } | |
3728 | } | |
3729 | ||
3730 | #endif // TEST_TEXTSTREAM | |
3731 | ||
e87271f3 VZ |
3732 | // ---------------------------------------------------------------------------- |
3733 | // threads | |
3734 | // ---------------------------------------------------------------------------- | |
3735 | ||
3736 | #ifdef TEST_THREADS | |
3737 | ||
e84010cf | 3738 | #include "wx/thread.h" |
37667812 | 3739 | |
bbfa0322 VZ |
3740 | static size_t gs_counter = (size_t)-1; |
3741 | static wxCriticalSection gs_critsect; | |
c112e100 | 3742 | static wxSemaphore gs_cond; |
bbfa0322 | 3743 | |
b568d04f | 3744 | class MyJoinableThread : public wxThread |
bbfa0322 VZ |
3745 | { |
3746 | public: | |
b568d04f VZ |
3747 | MyJoinableThread(size_t n) : wxThread(wxTHREAD_JOINABLE) |
3748 | { m_n = n; Create(); } | |
bbfa0322 VZ |
3749 | |
3750 | // thread execution starts here | |
b568d04f | 3751 | virtual ExitCode Entry(); |
bbfa0322 | 3752 | |
b568d04f VZ |
3753 | private: |
3754 | size_t m_n; | |
bbfa0322 VZ |
3755 | }; |
3756 | ||
b568d04f | 3757 | wxThread::ExitCode MyJoinableThread::Entry() |
bbfa0322 | 3758 | { |
b568d04f VZ |
3759 | unsigned long res = 1; |
3760 | for ( size_t n = 1; n < m_n; n++ ) | |
3761 | { | |
3762 | res *= n; | |
3763 | ||
3764 | // it's a loooong calculation :-) | |
3765 | Sleep(100); | |
3766 | } | |
bbfa0322 | 3767 | |
b568d04f | 3768 | return (ExitCode)res; |
bbfa0322 VZ |
3769 | } |
3770 | ||
b568d04f VZ |
3771 | class MyDetachedThread : public wxThread |
3772 | { | |
3773 | public: | |
456ae26d | 3774 | MyDetachedThread(size_t n, wxChar ch) |
fcc3d7cb VZ |
3775 | { |
3776 | m_n = n; | |
3777 | m_ch = ch; | |
cab8f76e | 3778 | m_cancelled = false; |
fcc3d7cb VZ |
3779 | |
3780 | Create(); | |
3781 | } | |
b568d04f VZ |
3782 | |
3783 | // thread execution starts here | |
3784 | virtual ExitCode Entry(); | |
3785 | ||
3786 | // and stops here | |
3787 | virtual void OnExit(); | |
3788 | ||
3789 | private: | |
9fc3ad34 | 3790 | size_t m_n; // number of characters to write |
456ae26d | 3791 | wxChar m_ch; // character to write |
fcc3d7cb | 3792 | |
cab8f76e | 3793 | bool m_cancelled; // false if we exit normally |
b568d04f VZ |
3794 | }; |
3795 | ||
3796 | wxThread::ExitCode MyDetachedThread::Entry() | |
bbfa0322 VZ |
3797 | { |
3798 | { | |
3799 | wxCriticalSectionLocker lock(gs_critsect); | |
3800 | if ( gs_counter == (size_t)-1 ) | |
3801 | gs_counter = 1; | |
3802 | else | |
3803 | gs_counter++; | |
3804 | } | |
3805 | ||
9fc3ad34 | 3806 | for ( size_t n = 0; n < m_n; n++ ) |
bbfa0322 VZ |
3807 | { |
3808 | if ( TestDestroy() ) | |
fcc3d7cb | 3809 | { |
cab8f76e | 3810 | m_cancelled = true; |
fcc3d7cb | 3811 | |
bbfa0322 | 3812 | break; |
fcc3d7cb | 3813 | } |
bbfa0322 | 3814 | |
e9d2bb6f | 3815 | wxPutchar(m_ch); |
bbfa0322 VZ |
3816 | fflush(stdout); |
3817 | ||
3818 | wxThread::Sleep(100); | |
3819 | } | |
3820 | ||
b568d04f | 3821 | return 0; |
bbfa0322 VZ |
3822 | } |
3823 | ||
b568d04f | 3824 | void MyDetachedThread::OnExit() |
bbfa0322 | 3825 | { |
456ae26d | 3826 | wxLogTrace(_T("thread"), _T("Thread %ld is in OnExit"), GetId()); |
9fc3ad34 | 3827 | |
bbfa0322 | 3828 | wxCriticalSectionLocker lock(gs_critsect); |
fcc3d7cb | 3829 | if ( !--gs_counter && !m_cancelled ) |
c112e100 | 3830 | gs_cond.Post(); |
bbfa0322 VZ |
3831 | } |
3832 | ||
2f2f3e2a | 3833 | static void TestDetachedThreads() |
9fc3ad34 | 3834 | { |
456ae26d | 3835 | wxPuts(_T("\n*** Testing detached threads ***")); |
9fc3ad34 VZ |
3836 | |
3837 | static const size_t nThreads = 3; | |
3838 | MyDetachedThread *threads[nThreads]; | |
3839 | size_t n; | |
3840 | for ( n = 0; n < nThreads; n++ ) | |
3841 | { | |
3842 | threads[n] = new MyDetachedThread(10, 'A' + n); | |
3843 | } | |
3844 | ||
3845 | threads[0]->SetPriority(WXTHREAD_MIN_PRIORITY); | |
3846 | threads[1]->SetPriority(WXTHREAD_MAX_PRIORITY); | |
3847 | ||
3848 | for ( n = 0; n < nThreads; n++ ) | |
3849 | { | |
3850 | threads[n]->Run(); | |
3851 | } | |
3852 | ||
3853 | // wait until all threads terminate | |
3854 | gs_cond.Wait(); | |
3855 | ||
e9d2bb6f | 3856 | wxPuts(wxEmptyString); |
9fc3ad34 VZ |
3857 | } |
3858 | ||
2f2f3e2a | 3859 | static void TestJoinableThreads() |
9fc3ad34 | 3860 | { |
456ae26d | 3861 | wxPuts(_T("\n*** Testing a joinable thread (a loooong calculation...) ***")); |
9fc3ad34 VZ |
3862 | |
3863 | // calc 10! in the background | |
3864 | MyJoinableThread thread(10); | |
3865 | thread.Run(); | |
3866 | ||
456ae26d | 3867 | wxPrintf(_T("\nThread terminated with exit code %lu.\n"), |
5bc1deeb | 3868 | (unsigned long)thread.Wait()); |
9fc3ad34 VZ |
3869 | } |
3870 | ||
2f2f3e2a | 3871 | static void TestThreadSuspend() |
9fc3ad34 | 3872 | { |
456ae26d | 3873 | wxPuts(_T("\n*** Testing thread suspend/resume functions ***")); |
2f02cb89 VZ |
3874 | |
3875 | MyDetachedThread *thread = new MyDetachedThread(15, 'X'); | |
9fc3ad34 VZ |
3876 | |
3877 | thread->Run(); | |
3878 | ||
3879 | // this is for this demo only, in a real life program we'd use another | |
3880 | // condition variable which would be signaled from wxThread::Entry() to | |
3881 | // tell us that the thread really started running - but here just wait a | |
3882 | // bit and hope that it will be enough (the problem is, of course, that | |
3883 | // the thread might still not run when we call Pause() which will result | |
3884 | // in an error) | |
3885 | wxThread::Sleep(300); | |
3886 | ||
3887 | for ( size_t n = 0; n < 3; n++ ) | |
3888 | { | |
3889 | thread->Pause(); | |
3890 | ||
456ae26d | 3891 | wxPuts(_T("\nThread suspended")); |
9fc3ad34 VZ |
3892 | if ( n > 0 ) |
3893 | { | |
3894 | // don't sleep but resume immediately the first time | |
3895 | wxThread::Sleep(300); | |
3896 | } | |
456ae26d | 3897 | wxPuts(_T("Going to resume the thread")); |
9fc3ad34 VZ |
3898 | |
3899 | thread->Resume(); | |
3900 | } | |
3901 | ||
456ae26d | 3902 | wxPuts(_T("Waiting until it terminates now")); |
4c460b34 | 3903 | |
9fc3ad34 VZ |
3904 | // wait until the thread terminates |
3905 | gs_cond.Wait(); | |
3906 | ||
e9d2bb6f | 3907 | wxPuts(wxEmptyString); |
9fc3ad34 VZ |
3908 | } |
3909 | ||
2f2f3e2a | 3910 | static void TestThreadDelete() |
2f02cb89 VZ |
3911 | { |
3912 | // As above, using Sleep() is only for testing here - we must use some | |
3913 | // synchronisation object instead to ensure that the thread is still | |
3914 | // running when we delete it - deleting a detached thread which already | |
3915 | // terminated will lead to a crash! | |
3916 | ||
456ae26d | 3917 | wxPuts(_T("\n*** Testing thread delete function ***")); |
2f02cb89 | 3918 | |
4c460b34 VZ |
3919 | MyDetachedThread *thread0 = new MyDetachedThread(30, 'W'); |
3920 | ||
3921 | thread0->Delete(); | |
3922 | ||
456ae26d | 3923 | wxPuts(_T("\nDeleted a thread which didn't start to run yet.")); |
4c460b34 | 3924 | |
2f02cb89 VZ |
3925 | MyDetachedThread *thread1 = new MyDetachedThread(30, 'Y'); |
3926 | ||
3927 | thread1->Run(); | |
3928 | ||
3929 | wxThread::Sleep(300); | |
3930 | ||
3931 | thread1->Delete(); | |
3932 | ||
456ae26d | 3933 | wxPuts(_T("\nDeleted a running thread.")); |
2f02cb89 VZ |
3934 | |
3935 | MyDetachedThread *thread2 = new MyDetachedThread(30, 'Z'); | |
3936 | ||
3937 | thread2->Run(); | |
3938 | ||
3939 | wxThread::Sleep(300); | |
3940 | ||
3941 | thread2->Pause(); | |
3942 | ||
3943 | thread2->Delete(); | |
3944 | ||
456ae26d | 3945 | wxPuts(_T("\nDeleted a sleeping thread.")); |
2f02cb89 | 3946 | |
4c460b34 VZ |
3947 | MyJoinableThread thread3(20); |
3948 | thread3.Run(); | |
2f02cb89 | 3949 | |
4c460b34 | 3950 | thread3.Delete(); |
2f02cb89 | 3951 | |
456ae26d | 3952 | wxPuts(_T("\nDeleted a joinable thread.")); |
2f02cb89 | 3953 | |
4c460b34 VZ |
3954 | MyJoinableThread thread4(2); |
3955 | thread4.Run(); | |
2f02cb89 VZ |
3956 | |
3957 | wxThread::Sleep(300); | |
3958 | ||
4c460b34 | 3959 | thread4.Delete(); |
2f02cb89 | 3960 | |
456ae26d | 3961 | wxPuts(_T("\nDeleted a joinable thread which already terminated.")); |
2f02cb89 | 3962 | |
e9d2bb6f | 3963 | wxPuts(wxEmptyString); |
2f02cb89 VZ |
3964 | } |
3965 | ||
2f2f3e2a VZ |
3966 | class MyWaitingThread : public wxThread |
3967 | { | |
3968 | public: | |
c112e100 | 3969 | MyWaitingThread( wxMutex *mutex, wxCondition *condition ) |
2f2f3e2a | 3970 | { |
c112e100 | 3971 | m_mutex = mutex; |
2f2f3e2a VZ |
3972 | m_condition = condition; |
3973 | ||
3974 | Create(); | |
3975 | } | |
3976 | ||
3977 | virtual ExitCode Entry() | |
3978 | { | |
456ae26d | 3979 | wxPrintf(_T("Thread %lu has started running.\n"), GetId()); |
2f2f3e2a VZ |
3980 | fflush(stdout); |
3981 | ||
c112e100 | 3982 | gs_cond.Post(); |
2f2f3e2a | 3983 | |
456ae26d | 3984 | wxPrintf(_T("Thread %lu starts to wait...\n"), GetId()); |
2f2f3e2a VZ |
3985 | fflush(stdout); |
3986 | ||
c112e100 | 3987 | m_mutex->Lock(); |
2f2f3e2a | 3988 | m_condition->Wait(); |
c112e100 | 3989 | m_mutex->Unlock(); |
2f2f3e2a | 3990 | |
456ae26d | 3991 | wxPrintf(_T("Thread %lu finished to wait, exiting.\n"), GetId()); |
2f2f3e2a VZ |
3992 | fflush(stdout); |
3993 | ||
3994 | return 0; | |
3995 | } | |
3996 | ||
3997 | private: | |
c112e100 | 3998 | wxMutex *m_mutex; |
2f2f3e2a VZ |
3999 | wxCondition *m_condition; |
4000 | }; | |
4001 | ||
4002 | static void TestThreadConditions() | |
4003 | { | |
c112e100 VZ |
4004 | wxMutex mutex; |
4005 | wxCondition condition(mutex); | |
2f2f3e2a | 4006 | |
8d5eff60 VZ |
4007 | // otherwise its difficult to understand which log messages pertain to |
4008 | // which condition | |
456ae26d | 4009 | //wxLogTrace(_T("thread"), _T("Local condition var is %08x, gs_cond = %08x"), |
c112e100 | 4010 | // condition.GetId(), gs_cond.GetId()); |
8d5eff60 | 4011 | |
2f2f3e2a | 4012 | // create and launch threads |
60ce696e | 4013 | MyWaitingThread *threads[10]; |
2f2f3e2a VZ |
4014 | |
4015 | size_t n; | |
4016 | for ( n = 0; n < WXSIZEOF(threads); n++ ) | |
4017 | { | |
c112e100 | 4018 | threads[n] = new MyWaitingThread( &mutex, &condition ); |
2f2f3e2a VZ |
4019 | } |
4020 | ||
4021 | for ( n = 0; n < WXSIZEOF(threads); n++ ) | |
4022 | { | |
4023 | threads[n]->Run(); | |
4024 | } | |
4025 | ||
4026 | // wait until all threads run | |
456ae26d | 4027 | wxPuts(_T("Main thread is waiting for the other threads to start")); |
2f2f3e2a VZ |
4028 | fflush(stdout); |
4029 | ||
4030 | size_t nRunning = 0; | |
4031 | while ( nRunning < WXSIZEOF(threads) ) | |
4032 | { | |
4033 | gs_cond.Wait(); | |
4034 | ||
2f2f3e2a | 4035 | nRunning++; |
8d5eff60 | 4036 | |
456ae26d | 4037 | wxPrintf(_T("Main thread: %u already running\n"), nRunning); |
8d5eff60 | 4038 | fflush(stdout); |
2f2f3e2a VZ |
4039 | } |
4040 | ||
456ae26d | 4041 | wxPuts(_T("Main thread: all threads started up.")); |
2f2f3e2a VZ |
4042 | fflush(stdout); |
4043 | ||
8d5eff60 VZ |
4044 | wxThread::Sleep(500); |
4045 | ||
60ce696e | 4046 | #if 1 |
8d5eff60 | 4047 | // now wake one of them up |
456ae26d | 4048 | wxPrintf(_T("Main thread: about to signal the condition.\n")); |
2f2f3e2a VZ |
4049 | fflush(stdout); |
4050 | condition.Signal(); | |
8d5eff60 | 4051 | #endif |
2f2f3e2a | 4052 | |
60ce696e VZ |
4053 | wxThread::Sleep(200); |
4054 | ||
8d5eff60 | 4055 | // wake all the (remaining) threads up, so that they can exit |
456ae26d | 4056 | wxPrintf(_T("Main thread: about to broadcast the condition.\n")); |
2f2f3e2a VZ |
4057 | fflush(stdout); |
4058 | condition.Broadcast(); | |
4059 | ||
8d5eff60 VZ |
4060 | // give them time to terminate (dirty!) |
4061 | wxThread::Sleep(500); | |
2f2f3e2a VZ |
4062 | } |
4063 | ||
c112e100 VZ |
4064 | #include "wx/utils.h" |
4065 | ||
4066 | class MyExecThread : public wxThread | |
4067 | { | |
4068 | public: | |
4069 | MyExecThread(const wxString& command) : wxThread(wxTHREAD_JOINABLE), | |
4070 | m_command(command) | |
4071 | { | |
4072 | Create(); | |
4073 | } | |
4074 | ||
4075 | virtual ExitCode Entry() | |
4076 | { | |
4077 | return (ExitCode)wxExecute(m_command, wxEXEC_SYNC); | |
4078 | } | |
4079 | ||
4080 | private: | |
4081 | wxString m_command; | |
4082 | }; | |
4083 | ||
4084 | static void TestThreadExec() | |
4085 | { | |
4086 | wxPuts(_T("*** Testing wxExecute interaction with threads ***\n")); | |
4087 | ||
4088 | MyExecThread thread(_T("true")); | |
4089 | thread.Run(); | |
4090 | ||
4091 | wxPrintf(_T("Main program exit code: %ld.\n"), | |
4092 | wxExecute(_T("false"), wxEXEC_SYNC)); | |
4093 | ||
4094 | wxPrintf(_T("Thread exit code: %ld.\n"), (long)thread.Wait()); | |
4095 | } | |
4096 | ||
4097 | // semaphore tests | |
4098 | #include "wx/datetime.h" | |
4099 | ||
4100 | class MySemaphoreThread : public wxThread | |
4101 | { | |
4102 | public: | |
4103 | MySemaphoreThread(int i, wxSemaphore *sem) | |
4104 | : wxThread(wxTHREAD_JOINABLE), | |
4105 | m_sem(sem), | |
4106 | m_i(i) | |
4107 | { | |
4108 | Create(); | |
4109 | } | |
4110 | ||
4111 | virtual ExitCode Entry() | |
4112 | { | |
f06ef5f4 VZ |
4113 | wxPrintf(_T("%s: Thread #%d (%ld) starting to wait for semaphore...\n"), |
4114 | wxDateTime::Now().FormatTime().c_str(), m_i, (long)GetId()); | |
c112e100 VZ |
4115 | |
4116 | m_sem->Wait(); | |
4117 | ||
f06ef5f4 VZ |
4118 | wxPrintf(_T("%s: Thread #%d (%ld) acquired the semaphore.\n"), |
4119 | wxDateTime::Now().FormatTime().c_str(), m_i, (long)GetId()); | |
c112e100 VZ |
4120 | |
4121 | Sleep(1000); | |
4122 | ||
f06ef5f4 VZ |
4123 | wxPrintf(_T("%s: Thread #%d (%ld) releasing the semaphore.\n"), |
4124 | wxDateTime::Now().FormatTime().c_str(), m_i, (long)GetId()); | |
c112e100 VZ |
4125 | |
4126 | m_sem->Post(); | |
4127 | ||
4128 | return 0; | |
4129 | } | |
4130 | ||
4131 | private: | |
4132 | wxSemaphore *m_sem; | |
4133 | int m_i; | |
4134 | }; | |
4135 | ||
e9d2bb6f | 4136 | WX_DEFINE_ARRAY_PTR(wxThread *, ArrayThreads); |
c112e100 VZ |
4137 | |
4138 | static void TestSemaphore() | |
4139 | { | |
4140 | wxPuts(_T("*** Testing wxSemaphore class. ***")); | |
4141 | ||
4142 | static const int SEM_LIMIT = 3; | |
4143 | ||
4144 | wxSemaphore sem(SEM_LIMIT, SEM_LIMIT); | |
4145 | ArrayThreads threads; | |
4146 | ||
4147 | for ( int i = 0; i < 3*SEM_LIMIT; i++ ) | |
4148 | { | |
4149 | threads.Add(new MySemaphoreThread(i, &sem)); | |
4150 | threads.Last()->Run(); | |
4151 | } | |
4152 | ||
4153 | for ( size_t n = 0; n < threads.GetCount(); n++ ) | |
4154 | { | |
4155 | threads[n]->Wait(); | |
4156 | delete threads[n]; | |
4157 | } | |
4158 | } | |
4159 | ||
e87271f3 VZ |
4160 | #endif // TEST_THREADS |
4161 | ||
e87271f3 VZ |
4162 | // ---------------------------------------------------------------------------- |
4163 | // entry point | |
4164 | // ---------------------------------------------------------------------------- | |
4165 | ||
daa2c7d9 VZ |
4166 | #ifdef TEST_SNGLINST |
4167 | #include "wx/snglinst.h" | |
4168 | #endif // TEST_SNGLINST | |
4169 | ||
bbfa0322 | 4170 | int main(int argc, char **argv) |
37667812 | 4171 | { |
5ba95b79 WS |
4172 | #if wxUSE_UNICODE |
4173 | wxChar **wxArgv = new wxChar *[argc + 1]; | |
4174 | ||
4175 | { | |
4176 | int n; | |
4177 | ||
4178 | for (n = 0; n < argc; n++ ) | |
4179 | { | |
4180 | wxMB2WXbuf warg = wxConvertMB2WX(argv[n]); | |
4181 | wxArgv[n] = wxStrdup(warg); | |
4182 | } | |
4183 | ||
4184 | wxArgv[n] = NULL; | |
4185 | } | |
4186 | #else // !wxUSE_UNICODE | |
4187 | #define wxArgv argv | |
4188 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE | |
4189 | ||
6f35ed60 | 4190 | wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, "program"); |
9cb47ea2 | 4191 | |
58b24a56 VZ |
4192 | wxInitializer initializer; |
4193 | if ( !initializer ) | |
37667812 | 4194 | { |
be5a51fb | 4195 | fprintf(stderr, "Failed to initialize the wxWidgets library, aborting."); |
58b24a56 VZ |
4196 | |
4197 | return -1; | |
4198 | } | |
4199 | ||
4200 | #ifdef TEST_SNGLINST | |
b5299791 VZ |
4201 | wxSingleInstanceChecker checker; |
4202 | if ( checker.Create(_T(".wxconsole.lock")) ) | |
58b24a56 | 4203 | { |
b5299791 VZ |
4204 | if ( checker.IsAnotherRunning() ) |
4205 | { | |
4206 | wxPrintf(_T("Another instance of the program is running, exiting.\n")); | |
58b24a56 | 4207 | |
b5299791 VZ |
4208 | return 1; |
4209 | } | |
37667812 | 4210 | |
b5299791 VZ |
4211 | // wait some time to give time to launch another instance |
4212 | wxPrintf(_T("Press \"Enter\" to continue...")); | |
4213 | wxFgetc(stdin); | |
4214 | } | |
4215 | else // failed to create | |
4216 | { | |
4217 | wxPrintf(_T("Failed to init wxSingleInstanceChecker.\n")); | |
4218 | } | |
58b24a56 VZ |
4219 | #endif // TEST_SNGLINST |
4220 | ||
d34bce84 | 4221 | #ifdef TEST_CMDLINE |
31f6de22 VZ |
4222 | TestCmdLineConvert(); |
4223 | ||
4224 | #if wxUSE_CMDLINE_PARSER | |
d34bce84 VZ |
4225 | static const wxCmdLineEntryDesc cmdLineDesc[] = |
4226 | { | |
456ae26d | 4227 | { wxCMD_LINE_SWITCH, _T("h"), _T("help"), _T("show this help message"), |
31a06b07 | 4228 | wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP }, |
456ae26d VZ |
4229 | { wxCMD_LINE_SWITCH, _T("v"), _T("verbose"), _T("be verbose") }, |
4230 | { wxCMD_LINE_SWITCH, _T("q"), _T("quiet"), _T("be quiet") }, | |
d34bce84 | 4231 | |
456ae26d VZ |
4232 | { wxCMD_LINE_OPTION, _T("o"), _T("output"), _T("output file") }, |
4233 | { wxCMD_LINE_OPTION, _T("i"), _T("input"), _T("input dir") }, | |
4234 | { wxCMD_LINE_OPTION, _T("s"), _T("size"), _T("output block size"), | |
31a06b07 | 4235 | wxCMD_LINE_VAL_NUMBER }, |
456ae26d | 4236 | { wxCMD_LINE_OPTION, _T("d"), _T("date"), _T("output file date"), |
31a06b07 | 4237 | wxCMD_LINE_VAL_DATE }, |
d34bce84 | 4238 | |
456ae26d | 4239 | { wxCMD_LINE_PARAM, NULL, NULL, _T("input file"), |
d34bce84 VZ |
4240 | wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE }, |
4241 | ||
4242 | { wxCMD_LINE_NONE } | |
4243 | }; | |
4244 | ||
5ba95b79 | 4245 | wxCmdLineParser parser(cmdLineDesc, argc, wxArgv); |
456ae26d VZ |
4246 | |
4247 | parser.AddOption(_T("project_name"), _T(""), _T("full path to project file"), | |
f6bcfd97 BP |
4248 | wxCMD_LINE_VAL_STRING, |
4249 | wxCMD_LINE_OPTION_MANDATORY | wxCMD_LINE_NEEDS_SEPARATOR); | |
4250 | ||
d34bce84 VZ |
4251 | switch ( parser.Parse() ) |
4252 | { | |
4253 | case -1: | |
456ae26d | 4254 | wxLogMessage(_T("Help was given, terminating.")); |
d34bce84 VZ |
4255 | break; |
4256 | ||
4257 | case 0: | |
4258 | ShowCmdLine(parser); | |
4259 | break; | |
4260 | ||
4261 | default: | |
456ae26d | 4262 | wxLogMessage(_T("Syntax error detected, aborting.")); |
d34bce84 VZ |
4263 | break; |
4264 | } | |
31f6de22 VZ |
4265 | #endif // wxUSE_CMDLINE_PARSER |
4266 | ||
d34bce84 VZ |
4267 | #endif // TEST_CMDLINE |
4268 | ||
1944c6bd | 4269 | #ifdef TEST_DIR |
e9d2bb6f | 4270 | #if TEST_ALL |
99a5af7f | 4271 | TestDirExists(); |
2f0c19d0 | 4272 | TestDirEnum(); |
e9d2bb6f | 4273 | #endif |
2f0c19d0 | 4274 | TestDirTraverse(); |
1944c6bd VZ |
4275 | #endif // TEST_DIR |
4276 | ||
93ed8ff7 | 4277 | #ifdef TEST_DYNLIB |
f6bcfd97 | 4278 | TestDllLoad(); |
297ebe6b | 4279 | TestDllListLoaded(); |
93ed8ff7 | 4280 | #endif // TEST_DYNLIB |
f6bcfd97 | 4281 | |
8fd0d89b VZ |
4282 | #ifdef TEST_ENVIRON |
4283 | TestEnvironment(); | |
4284 | #endif // TEST_ENVIRON | |
4285 | ||
d93c719a VZ |
4286 | #ifdef TEST_EXECUTE |
4287 | TestExecute(); | |
4288 | #endif // TEST_EXECUTE | |
4289 | ||
ee6e1b1d VZ |
4290 | #ifdef TEST_FILECONF |
4291 | TestFileConfRead(); | |
4292 | #endif // TEST_FILECONF | |
4293 | ||
ec37df57 VZ |
4294 | #ifdef TEST_LOCALE |
4295 | TestDefaultLang(); | |
4296 | #endif // TEST_LOCALE | |
4297 | ||
378b05f7 | 4298 | #ifdef TEST_LOG |
cab8f76e VZ |
4299 | wxPuts(_T("*** Testing wxLog ***")); |
4300 | ||
378b05f7 VZ |
4301 | wxString s; |
4302 | for ( size_t n = 0; n < 8000; n++ ) | |
4303 | { | |
456ae26d | 4304 | s << (wxChar)(_T('A') + (n % 26)); |
378b05f7 VZ |
4305 | } |
4306 | ||
cab8f76e VZ |
4307 | wxLogWarning(_T("The length of the string is %lu"), |
4308 | (unsigned long)s.length()); | |
4309 | ||
378b05f7 | 4310 | wxString msg; |
456ae26d | 4311 | msg.Printf(_T("A very very long message: '%s', the end!\n"), s.c_str()); |
378b05f7 VZ |
4312 | |
4313 | // this one shouldn't be truncated | |
456ae26d | 4314 | wxPrintf(msg); |
378b05f7 VZ |
4315 | |
4316 | // but this one will because log functions use fixed size buffer | |
b568d04f VZ |
4317 | // (note that it doesn't need '\n' at the end neither - will be added |
4318 | // by wxLog anyhow) | |
456ae26d | 4319 | wxLogMessage(_T("A very very long message 2: '%s', the end!"), s.c_str()); |
378b05f7 VZ |
4320 | #endif // TEST_LOG |
4321 | ||
f6bcfd97 | 4322 | #ifdef TEST_FILE |
e9d2bb6f DS |
4323 | TestFileRead(); |
4324 | TestTextFileRead(); | |
4325 | TestFileCopy(); | |
59062ec1 | 4326 | TestTempFile(); |
f6bcfd97 BP |
4327 | #endif // TEST_FILE |
4328 | ||
844f90fb | 4329 | #ifdef TEST_FILENAME |
e9d2bb6f DS |
4330 | TestFileNameTemp(); |
4331 | TestFileNameCwd(); | |
4332 | TestFileNameDirManip(); | |
4333 | TestFileNameComparison(); | |
4334 | TestFileNameOperations(); | |
844f90fb VZ |
4335 | #endif // TEST_FILENAME |
4336 | ||
d56e2b97 VZ |
4337 | #ifdef TEST_FILETIME |
4338 | TestFileGetTimes(); | |
e9d2bb6f | 4339 | #if 0 |
d56e2b97 | 4340 | TestFileSetTimes(); |
e9d2bb6f | 4341 | #endif |
d56e2b97 VZ |
4342 | #endif // TEST_FILETIME |
4343 | ||
07a56e45 VZ |
4344 | #ifdef TEST_FTP |
4345 | wxLog::AddTraceMask(FTP_TRACE_MASK); | |
4346 | if ( TestFtpConnect() ) | |
4347 | { | |
e9d2bb6f | 4348 | #if TEST_ALL |
07a56e45 VZ |
4349 | TestFtpList(); |
4350 | TestFtpDownload(); | |
4351 | TestFtpMisc(); | |
daa2c7d9 | 4352 | TestFtpFileSize(); |
07a56e45 | 4353 | TestFtpUpload(); |
af33b199 | 4354 | #endif // TEST_ALL |
daa2c7d9 | 4355 | |
e9d2bb6f | 4356 | #if TEST_INTERACTIVE |
daa2c7d9 | 4357 | TestFtpInteractive(); |
e9d2bb6f | 4358 | #endif |
07a56e45 VZ |
4359 | } |
4360 | //else: connecting to the FTP server failed | |
4361 | ||
e9d2bb6f | 4362 | #if 0 |
07a56e45 | 4363 | TestFtpWuFtpd(); |
e9d2bb6f | 4364 | #endif |
07a56e45 VZ |
4365 | #endif // TEST_FTP |
4366 | ||
696e1ea0 | 4367 | #ifdef TEST_MIME |
f6bcfd97 | 4368 | wxLog::AddTraceMask(_T("mime")); |
e9d2bb6f | 4369 | #if TEST_ALL |
f6bcfd97 | 4370 | TestMimeEnum(); |
ac7ad70d | 4371 | #endif |
c7ce8392 | 4372 | TestMimeOverride(); |
f06ef5f4 | 4373 | TestMimeAssociate(); |
f06ef5f4 | 4374 | TestMimeFilename(); |
696e1ea0 VZ |
4375 | #endif // TEST_MIME |
4376 | ||
89e60357 | 4377 | #ifdef TEST_INFO_FUNCTIONS |
8bb6b2c0 VZ |
4378 | TestOsInfo(); |
4379 | TestPlatformInfo(); | |
4380 | TestUserInfo(); | |
19f45995 | 4381 | |
8bb6b2c0 VZ |
4382 | #if TEST_INTERACTIVE |
4383 | TestDiskInfo(); | |
e9d2bb6f | 4384 | #endif |
89e60357 VZ |
4385 | #endif // TEST_INFO_FUNCTIONS |
4386 | ||
39189b9d VZ |
4387 | #ifdef TEST_PATHLIST |
4388 | TestPathList(); | |
4389 | #endif // TEST_PATHLIST | |
4390 | ||
8d5eff60 VZ |
4391 | #ifdef TEST_ODBC |
4392 | TestDbOpen(); | |
4393 | #endif // TEST_ODBC | |
4394 | ||
7aeebdcd VZ |
4395 | #ifdef TEST_PRINTF |
4396 | TestPrintf(); | |
4397 | #endif // TEST_PRINTF | |
4398 | ||
7ba4fbeb | 4399 | #ifdef TEST_REGCONF |
e9d2bb6f DS |
4400 | #if 0 |
4401 | TestRegConfWrite(); | |
4402 | #endif | |
0aa29b6b | 4403 | TestRegConfRead(); |
7ba4fbeb VZ |
4404 | #endif // TEST_REGCONF |
4405 | ||
bc10103e VS |
4406 | #if defined TEST_REGEX && TEST_INTERACTIVE |
4407 | TestRegExInteractive(); | |
4408 | #endif // defined TEST_REGEX && TEST_INTERACTIVE | |
07a56e45 | 4409 | |
6dfec4b8 | 4410 | #ifdef TEST_REGISTRY |
daa2c7d9 | 4411 | TestRegistryRead(); |
6ba63600 | 4412 | TestRegistryAssociation(); |
6dfec4b8 VZ |
4413 | #endif // TEST_REGISTRY |
4414 | ||
2c8e4738 | 4415 | #ifdef TEST_SOCKETS |
daa2c7d9 VZ |
4416 | TestSocketServer(); |
4417 | TestSocketClient(); | |
2c8e4738 VZ |
4418 | #endif // TEST_SOCKETS |
4419 | ||
83141d3a | 4420 | #ifdef TEST_STREAMS |
e9d2bb6f | 4421 | #if TEST_ALL |
99a5af7f | 4422 | TestFileStream(); |
e9d2bb6f | 4423 | #endif |
99a5af7f | 4424 | TestMemoryStream(); |
83141d3a VZ |
4425 | #endif // TEST_STREAMS |
4426 | ||
39937656 VZ |
4427 | #ifdef TEST_TEXTSTREAM |
4428 | TestTextInputStream(); | |
4429 | #endif // TEST_TEXTSTREAM | |
4430 | ||
8d5eff60 VZ |
4431 | #ifdef TEST_THREADS |
4432 | int nCPUs = wxThread::GetCPUCount(); | |
456ae26d | 4433 | wxPrintf(_T("This system has %d CPUs\n"), nCPUs); |
8d5eff60 VZ |
4434 | if ( nCPUs != -1 ) |
4435 | wxThread::SetConcurrency(nCPUs); | |
4436 | ||
5bc1deeb VZ |
4437 | TestJoinableThreads(); |
4438 | ||
e9d2bb6f | 4439 | #if TEST_ALL |
8d5eff60 | 4440 | TestJoinableThreads(); |
5bc1deeb | 4441 | TestDetachedThreads(); |
8d5eff60 VZ |
4442 | TestThreadSuspend(); |
4443 | TestThreadDelete(); | |
c112e100 VZ |
4444 | TestThreadConditions(); |
4445 | TestThreadExec(); | |
7aeebdcd | 4446 | TestSemaphore(); |
e9d2bb6f | 4447 | #endif |
8d5eff60 VZ |
4448 | #endif // TEST_THREADS |
4449 | ||
d31b7b68 VZ |
4450 | #ifdef TEST_TIMER |
4451 | TestStopWatch(); | |
4452 | #endif // TEST_TIMER | |
4453 | ||
4454 | #ifdef TEST_DATETIME | |
e9d2bb6f | 4455 | #if TEST_ALL |
9d9b7755 VZ |
4456 | TestTimeStatic(); |
4457 | TestTimeRange(); | |
4458 | TestTimeZones(); | |
9d9b7755 | 4459 | TestTimeDST(); |
f6bcfd97 | 4460 | TestTimeHolidays(); |
daa2c7d9 | 4461 | TestTimeSpanFormat(); |
3ca6a5f0 | 4462 | TestTimeMS(); |
f6bcfd97 BP |
4463 | |
4464 | TestTimeZoneBug(); | |
e9d2bb6f | 4465 | #endif |
2b5f62a0 | 4466 | |
e9d2bb6f | 4467 | #if TEST_INTERACTIVE |
b92fd37c | 4468 | TestDateTimeInteractive(); |
e9d2bb6f | 4469 | #endif |
d31b7b68 | 4470 | #endif // TEST_DATETIME |
b76b015e | 4471 | |
df5168c4 MB |
4472 | #ifdef TEST_SCOPEGUARD |
4473 | TestScopeGuard(); | |
4474 | #endif | |
4475 | ||
eaff0f0d | 4476 | #ifdef TEST_STACKWALKER |
60c474a0 | 4477 | #if wxUSE_STACKWALKER |
eaff0f0d | 4478 | TestStackWalk(argv[0]); |
60c474a0 | 4479 | #endif |
eaff0f0d VZ |
4480 | #endif // TEST_STACKWALKER |
4481 | ||
af33b199 VZ |
4482 | #ifdef TEST_STDPATHS |
4483 | TestStandardPaths(); | |
4484 | #endif | |
4485 | ||
551fe3a6 | 4486 | #ifdef TEST_USLEEP |
456ae26d | 4487 | wxPuts(_T("Sleeping for 3 seconds... z-z-z-z-z...")); |
551fe3a6 VZ |
4488 | wxUsleep(3000); |
4489 | #endif // TEST_USLEEP | |
4490 | ||
f6bcfd97 | 4491 | #ifdef TEST_VCARD |
f6bcfd97 BP |
4492 | TestVCardRead(); |
4493 | TestVCardWrite(); | |
4494 | #endif // TEST_VCARD | |
4495 | ||
0e2c5534 VZ |
4496 | #ifdef TEST_VOLUME |
4497 | TestFSVolume(); | |
4498 | #endif // TEST_VOLUME | |
4499 | ||
f6bcfd97 BP |
4500 | #ifdef TEST_WCHAR |
4501 | TestUtf8(); | |
ac511156 | 4502 | TestEncodingConverter(); |
f6bcfd97 BP |
4503 | #endif // TEST_WCHAR |
4504 | ||
4505 | #ifdef TEST_ZIP | |
daa2c7d9 | 4506 | TestZipStreamRead(); |
2ca8b884 | 4507 | TestZipFileSystem(); |
f6bcfd97 BP |
4508 | #endif // TEST_ZIP |
4509 | ||
5ba95b79 WS |
4510 | #if wxUSE_UNICODE |
4511 | { | |
4512 | for ( int n = 0; n < argc; n++ ) | |
4513 | free(wxArgv[n]); | |
4514 | ||
4515 | delete [] wxArgv; | |
4516 | } | |
4517 | #endif // wxUSE_UNICODE | |
4518 | ||
e9d2bb6f DS |
4519 | wxUnusedVar(argc); |
4520 | wxUnusedVar(argv); | |
37667812 VZ |
4521 | return 0; |
4522 | } |