1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/console/console.cpp
3 // Purpose: a sample console (as opposed to GUI) progam using wxWindows
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
24 #include "wx/string.h"
29 // without this pragma, the stupid compiler precompiles #defines below so that
30 // changing them doesn't "take place" later!
35 // ----------------------------------------------------------------------------
36 // conditional compilation
37 // ----------------------------------------------------------------------------
40 A note about all these conditional compilation macros: this file is used
41 both as a test suite for various non-GUI wxWindows classes and as a
42 scratchpad for quick tests. So there are two compilation modes: if you
43 define TEST_ALL all tests are run, otherwise you may enable the individual
44 tests individually in the "#else" branch below.
47 // what to test (in alphabetic order)? Define TEST_ALL to 0 to do a single
48 // test, define it to 1 to do all tests.
58 #define TEST_DLLLOADER
65 // #define TEST_FTP --FIXME! (RN)
69 #define TEST_INFO_FUNCTIONS
80 #define TEST_SCOPEGUARD
82 // #define TEST_SOCKETS --FIXME! (RN)
84 #define TEST_TEXTSTREAM
88 // #define TEST_VCARD -- don't enable this (VZ)
89 // #define TEST_VOLUME --FIXME! (RN)
101 // some tests are interactive, define this to run them
102 #ifdef TEST_INTERACTIVE
103 #undef TEST_INTERACTIVE
105 #define TEST_INTERACTIVE 1
107 #define TEST_INTERACTIVE 0
110 // ----------------------------------------------------------------------------
111 // test class for container objects
112 // ----------------------------------------------------------------------------
114 #if defined(TEST_LIST)
116 class Bar
// Foo is already taken in the hash test
119 Bar(const wxString
& name
) : m_name(name
) { ms_bars
++; }
120 Bar(const Bar
& bar
) : m_name(bar
.m_name
) { ms_bars
++; }
121 ~Bar() { ms_bars
--; }
123 static size_t GetNumber() { return ms_bars
; }
125 const wxChar
*GetName() const { return m_name
; }
130 static size_t ms_bars
;
133 size_t Bar::ms_bars
= 0;
135 #endif // defined(TEST_LIST)
137 // ============================================================================
139 // ============================================================================
141 // ----------------------------------------------------------------------------
143 // ----------------------------------------------------------------------------
145 #if defined(TEST_SOCKETS)
147 // replace TABs with \t and CRs with \n
148 static wxString
MakePrintable(const wxChar
*s
)
151 (void)str
.Replace(_T("\t"), _T("\\t"));
152 (void)str
.Replace(_T("\n"), _T("\\n"));
153 (void)str
.Replace(_T("\r"), _T("\\r"));
158 #endif // MakePrintable() is used
160 // ----------------------------------------------------------------------------
161 // wxFontMapper::CharsetToEncoding
162 // ----------------------------------------------------------------------------
166 #include "wx/fontmap.h"
168 static void TestCharset()
170 static const wxChar
*charsets
[] =
172 // some vali charsets
181 // and now some bogus ones
188 for ( size_t n
= 0; n
< WXSIZEOF(charsets
); n
++ )
190 wxFontEncoding enc
= wxFontMapper::Get()->CharsetToEncoding(charsets
[n
]);
191 wxPrintf(_T("Charset: %s\tEncoding: %s (%s)\n"),
193 wxFontMapper::Get()->GetEncodingName(enc
).c_str(),
194 wxFontMapper::Get()->GetEncodingDescription(enc
).c_str());
198 #endif // TEST_CHARSET
200 // ----------------------------------------------------------------------------
202 // ----------------------------------------------------------------------------
206 #include "wx/cmdline.h"
207 #include "wx/datetime.h"
209 #if wxUSE_CMDLINE_PARSER
211 static void ShowCmdLine(const wxCmdLineParser
& parser
)
213 wxString s
= _T("Input files: ");
215 size_t count
= parser
.GetParamCount();
216 for ( size_t param
= 0; param
< count
; param
++ )
218 s
<< parser
.GetParam(param
) << ' ';
222 << _T("Verbose:\t") << (parser
.Found(_T("v")) ? _T("yes") : _T("no")) << '\n'
223 << _T("Quiet:\t") << (parser
.Found(_T("q")) ? _T("yes") : _T("no")) << '\n';
228 if ( parser
.Found(_T("o"), &strVal
) )
229 s
<< _T("Output file:\t") << strVal
<< '\n';
230 if ( parser
.Found(_T("i"), &strVal
) )
231 s
<< _T("Input dir:\t") << strVal
<< '\n';
232 if ( parser
.Found(_T("s"), &lVal
) )
233 s
<< _T("Size:\t") << lVal
<< '\n';
234 if ( parser
.Found(_T("d"), &dt
) )
235 s
<< _T("Date:\t") << dt
.FormatISODate() << '\n';
236 if ( parser
.Found(_T("project_name"), &strVal
) )
237 s
<< _T("Project:\t") << strVal
<< '\n';
242 #endif // wxUSE_CMDLINE_PARSER
244 static void TestCmdLineConvert()
246 static const wxChar
*cmdlines
[] =
249 _T("-a \"-bstring 1\" -c\"string 2\" \"string 3\""),
250 _T("literal \\\" and \"\""),
253 for ( size_t n
= 0; n
< WXSIZEOF(cmdlines
); n
++ )
255 const wxChar
*cmdline
= cmdlines
[n
];
256 wxPrintf(_T("Parsing: %s\n"), cmdline
);
257 wxArrayString args
= wxCmdLineParser::ConvertStringToArgs(cmdline
);
259 size_t count
= args
.GetCount();
260 wxPrintf(_T("\targc = %u\n"), count
);
261 for ( size_t arg
= 0; arg
< count
; arg
++ )
263 wxPrintf(_T("\targv[%u] = %s\n"), arg
, args
[arg
].c_str());
268 #endif // TEST_CMDLINE
270 // ----------------------------------------------------------------------------
272 // ----------------------------------------------------------------------------
279 static const wxChar
*ROOTDIR
= _T("/");
280 static const wxChar
*TESTDIR
= _T("/usr/local/share");
281 #elif defined(__WXMSW__)
282 static const wxChar
*ROOTDIR
= _T("c:\\");
283 static const wxChar
*TESTDIR
= _T("d:\\");
285 #error "don't know where the root directory is"
288 static void TestDirEnumHelper(wxDir
& dir
,
289 int flags
= wxDIR_DEFAULT
,
290 const wxString
& filespec
= wxEmptyString
)
294 if ( !dir
.IsOpened() )
297 bool cont
= dir
.GetFirst(&filename
, filespec
, flags
);
300 wxPrintf(_T("\t%s\n"), filename
.c_str());
302 cont
= dir
.GetNext(&filename
);
305 wxPuts(wxEmptyString
);
308 static void TestDirEnum()
310 wxPuts(_T("*** Testing wxDir::GetFirst/GetNext ***"));
312 wxString cwd
= wxGetCwd();
313 if ( !wxDir::Exists(cwd
) )
315 wxPrintf(_T("ERROR: current directory '%s' doesn't exist?\n"), cwd
.c_str());
320 if ( !dir
.IsOpened() )
322 wxPrintf(_T("ERROR: failed to open current directory '%s'.\n"), cwd
.c_str());
326 wxPuts(_T("Enumerating everything in current directory:"));
327 TestDirEnumHelper(dir
);
329 wxPuts(_T("Enumerating really everything in current directory:"));
330 TestDirEnumHelper(dir
, wxDIR_DEFAULT
| wxDIR_DOTDOT
);
332 wxPuts(_T("Enumerating object files in current directory:"));
333 TestDirEnumHelper(dir
, wxDIR_DEFAULT
, _T("*.o*"));
335 wxPuts(_T("Enumerating directories in current directory:"));
336 TestDirEnumHelper(dir
, wxDIR_DIRS
);
338 wxPuts(_T("Enumerating files in current directory:"));
339 TestDirEnumHelper(dir
, wxDIR_FILES
);
341 wxPuts(_T("Enumerating files including hidden in current directory:"));
342 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
346 wxPuts(_T("Enumerating everything in root directory:"));
347 TestDirEnumHelper(dir
, wxDIR_DEFAULT
);
349 wxPuts(_T("Enumerating directories in root directory:"));
350 TestDirEnumHelper(dir
, wxDIR_DIRS
);
352 wxPuts(_T("Enumerating files in root directory:"));
353 TestDirEnumHelper(dir
, wxDIR_FILES
);
355 wxPuts(_T("Enumerating files including hidden in root directory:"));
356 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
358 wxPuts(_T("Enumerating files in non existing directory:"));
359 wxDir
dirNo(_T("nosuchdir"));
360 TestDirEnumHelper(dirNo
);
363 class DirPrintTraverser
: public wxDirTraverser
366 virtual wxDirTraverseResult
OnFile(const wxString
& WXUNUSED(filename
))
368 return wxDIR_CONTINUE
;
371 virtual wxDirTraverseResult
OnDir(const wxString
& dirname
)
373 wxString path
, name
, ext
;
374 wxSplitPath(dirname
, &path
, &name
, &ext
);
377 name
<< _T('.') << ext
;
380 for ( const wxChar
*p
= path
.c_str(); *p
; p
++ )
382 if ( wxIsPathSeparator(*p
) )
386 wxPrintf(_T("%s%s\n"), indent
.c_str(), name
.c_str());
388 return wxDIR_CONTINUE
;
392 static void TestDirTraverse()
394 wxPuts(_T("*** Testing wxDir::Traverse() ***"));
398 size_t n
= wxDir::GetAllFiles(TESTDIR
, &files
);
399 wxPrintf(_T("There are %u files under '%s'\n"), n
, TESTDIR
);
402 wxPrintf(_T("First one is '%s'\n"), files
[0u].c_str());
403 wxPrintf(_T(" last one is '%s'\n"), files
[n
- 1].c_str());
406 // enum again with custom traverser
407 wxPuts(_T("Now enumerating directories:"));
409 DirPrintTraverser traverser
;
410 dir
.Traverse(traverser
, wxEmptyString
, wxDIR_DIRS
| wxDIR_HIDDEN
);
413 static void TestDirExists()
415 wxPuts(_T("*** Testing wxDir::Exists() ***"));
417 static const wxChar
*dirnames
[] =
420 #if defined(__WXMSW__)
423 _T("\\\\share\\file"),
427 _T("c:\\autoexec.bat"),
428 #elif defined(__UNIX__)
437 for ( size_t n
= 0; n
< WXSIZEOF(dirnames
); n
++ )
439 wxPrintf(_T("%-40s: %s\n"),
441 wxDir::Exists(dirnames
[n
]) ? _T("exists")
442 : _T("doesn't exist"));
448 // ----------------------------------------------------------------------------
450 // ----------------------------------------------------------------------------
452 #ifdef TEST_DLLLOADER
454 #include "wx/dynlib.h"
456 static void TestDllLoad()
458 #if defined(__WXMSW__)
459 static const wxChar
*LIB_NAME
= _T("kernel32.dll");
460 static const wxChar
*FUNC_NAME
= _T("lstrlenA");
461 #elif defined(__UNIX__)
462 // weird: using just libc.so does *not* work!
463 static const wxChar
*LIB_NAME
= _T("/lib/libc-2.0.7.so");
464 static const wxChar
*FUNC_NAME
= _T("strlen");
466 #error "don't know how to test wxDllLoader on this platform"
469 wxPuts(_T("*** testing wxDllLoader ***\n"));
471 wxDynamicLibrary
lib(LIB_NAME
);
472 if ( !lib
.IsLoaded() )
474 wxPrintf(_T("ERROR: failed to load '%s'.\n"), LIB_NAME
);
478 typedef int (*wxStrlenType
)(const char *);
479 wxStrlenType pfnStrlen
= (wxStrlenType
)lib
.GetSymbol(FUNC_NAME
);
482 wxPrintf(_T("ERROR: function '%s' wasn't found in '%s'.\n"),
483 FUNC_NAME
, LIB_NAME
);
487 if ( pfnStrlen("foo") != 3 )
489 wxPrintf(_T("ERROR: loaded function is not wxStrlen()!\n"));
493 wxPuts(_T("... ok"));
499 #endif // TEST_DLLLOADER
501 // ----------------------------------------------------------------------------
503 // ----------------------------------------------------------------------------
507 #include "wx/utils.h"
509 static wxString
MyGetEnv(const wxString
& var
)
512 if ( !wxGetEnv(var
, &val
) )
515 val
= wxString(_T('\'')) + val
+ _T('\'');
520 static void TestEnvironment()
522 const wxChar
*var
= _T("wxTestVar");
524 wxPuts(_T("*** testing environment access functions ***"));
526 wxPrintf(_T("Initially getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
527 wxSetEnv(var
, _T("value for wxTestVar"));
528 wxPrintf(_T("After wxSetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
529 wxSetEnv(var
, _T("another value"));
530 wxPrintf(_T("After 2nd wxSetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
532 wxPrintf(_T("After wxUnsetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
533 wxPrintf(_T("PATH = %s\n"), MyGetEnv(_T("PATH")).c_str());
536 #endif // TEST_ENVIRON
538 // ----------------------------------------------------------------------------
540 // ----------------------------------------------------------------------------
544 #include "wx/utils.h"
546 static void TestExecute()
548 wxPuts(_T("*** testing wxExecute ***"));
551 #define COMMAND "cat -n ../../Makefile" // "echo hi"
552 #define SHELL_COMMAND "echo hi from shell"
553 #define REDIRECT_COMMAND COMMAND // "date"
554 #elif defined(__WXMSW__)
555 #define COMMAND "command.com /c echo hi"
556 #define SHELL_COMMAND "echo hi"
557 #define REDIRECT_COMMAND COMMAND
559 #error "no command to exec"
562 wxPrintf(_T("Testing wxShell: "));
564 if ( wxShell(_T(SHELL_COMMAND
)) )
567 wxPuts(_T("ERROR."));
569 wxPrintf(_T("Testing wxExecute: "));
571 if ( wxExecute(_T(COMMAND
), true /* sync */) == 0 )
574 wxPuts(_T("ERROR."));
576 #if 0 // no, it doesn't work (yet?)
577 wxPrintf(_T("Testing async wxExecute: "));
579 if ( wxExecute(COMMAND
) != 0 )
580 wxPuts(_T("Ok (command launched)."));
582 wxPuts(_T("ERROR."));
585 wxPrintf(_T("Testing wxExecute with redirection:\n"));
586 wxArrayString output
;
587 if ( wxExecute(_T(REDIRECT_COMMAND
), output
) != 0 )
589 wxPuts(_T("ERROR."));
593 size_t count
= output
.GetCount();
594 for ( size_t n
= 0; n
< count
; n
++ )
596 wxPrintf(_T("\t%s\n"), output
[n
].c_str());
603 #endif // TEST_EXECUTE
605 // ----------------------------------------------------------------------------
607 // ----------------------------------------------------------------------------
612 #include "wx/ffile.h"
613 #include "wx/textfile.h"
615 static void TestFileRead()
617 wxPuts(_T("*** wxFile read test ***"));
619 wxFile
file(_T("testdata.fc"));
620 if ( file
.IsOpened() )
622 wxPrintf(_T("File length: %lu\n"), file
.Length());
624 wxPuts(_T("File dump:\n----------"));
626 static const off_t len
= 1024;
630 off_t nRead
= file
.Read(buf
, len
);
631 if ( nRead
== wxInvalidOffset
)
633 wxPrintf(_T("Failed to read the file."));
637 fwrite(buf
, nRead
, 1, stdout
);
643 wxPuts(_T("----------"));
647 wxPrintf(_T("ERROR: can't open test file.\n"));
650 wxPuts(wxEmptyString
);
653 static void TestTextFileRead()
655 wxPuts(_T("*** wxTextFile read test ***"));
657 wxTextFile
file(_T("testdata.fc"));
660 wxPrintf(_T("Number of lines: %u\n"), file
.GetLineCount());
661 wxPrintf(_T("Last line: '%s'\n"), file
.GetLastLine().c_str());
665 wxPuts(_T("\nDumping the entire file:"));
666 for ( s
= file
.GetFirstLine(); !file
.Eof(); s
= file
.GetNextLine() )
668 wxPrintf(_T("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
670 wxPrintf(_T("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
672 wxPuts(_T("\nAnd now backwards:"));
673 for ( s
= file
.GetLastLine();
674 file
.GetCurrentLine() != 0;
675 s
= file
.GetPrevLine() )
677 wxPrintf(_T("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
679 wxPrintf(_T("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
683 wxPrintf(_T("ERROR: can't open '%s'\n"), file
.GetName());
686 wxPuts(wxEmptyString
);
689 static void TestFileCopy()
691 wxPuts(_T("*** Testing wxCopyFile ***"));
693 static const wxChar
*filename1
= _T("testdata.fc");
694 static const wxChar
*filename2
= _T("test2");
695 if ( !wxCopyFile(filename1
, filename2
) )
697 wxPuts(_T("ERROR: failed to copy file"));
701 wxFFile
f1(filename1
, _T("rb")),
702 f2(filename2
, _T("rb"));
704 if ( !f1
.IsOpened() || !f2
.IsOpened() )
706 wxPuts(_T("ERROR: failed to open file(s)"));
711 if ( !f1
.ReadAll(&s1
) || !f2
.ReadAll(&s2
) )
713 wxPuts(_T("ERROR: failed to read file(s)"));
717 if ( (s1
.length() != s2
.length()) ||
718 (memcmp(s1
.c_str(), s2
.c_str(), s1
.length()) != 0) )
720 wxPuts(_T("ERROR: copy error!"));
724 wxPuts(_T("File was copied ok."));
730 if ( !wxRemoveFile(filename2
) )
732 wxPuts(_T("ERROR: failed to remove the file"));
735 wxPuts(wxEmptyString
);
740 // ----------------------------------------------------------------------------
742 // ----------------------------------------------------------------------------
746 #include "wx/confbase.h"
747 #include "wx/fileconf.h"
749 static const struct FileConfTestData
751 const wxChar
*name
; // value name
752 const wxChar
*value
; // the value from the file
755 { _T("value1"), _T("one") },
756 { _T("value2"), _T("two") },
757 { _T("novalue"), _T("default") },
760 static void TestFileConfRead()
762 wxPuts(_T("*** testing wxFileConfig loading/reading ***"));
764 wxFileConfig
fileconf(_T("test"), wxEmptyString
,
765 _T("testdata.fc"), wxEmptyString
,
766 wxCONFIG_USE_RELATIVE_PATH
);
768 // test simple reading
769 wxPuts(_T("\nReading config file:"));
770 wxString
defValue(_T("default")), value
;
771 for ( size_t n
= 0; n
< WXSIZEOF(fcTestData
); n
++ )
773 const FileConfTestData
& data
= fcTestData
[n
];
774 value
= fileconf
.Read(data
.name
, defValue
);
775 wxPrintf(_T("\t%s = %s "), data
.name
, value
.c_str());
776 if ( value
== data
.value
)
782 wxPrintf(_T("(ERROR: should be %s)\n"), data
.value
);
786 // test enumerating the entries
787 wxPuts(_T("\nEnumerating all root entries:"));
790 bool cont
= fileconf
.GetFirstEntry(name
, dummy
);
793 wxPrintf(_T("\t%s = %s\n"),
795 fileconf
.Read(name
.c_str(), _T("ERROR")).c_str());
797 cont
= fileconf
.GetNextEntry(name
, dummy
);
800 static const wxChar
*testEntry
= _T("TestEntry");
801 wxPrintf(_T("\nTesting deletion of newly created \"Test\" entry: "));
802 fileconf
.Write(testEntry
, _T("A value"));
803 fileconf
.DeleteEntry(testEntry
);
804 wxPrintf(fileconf
.HasEntry(testEntry
) ? _T("ERROR\n") : _T("ok\n"));
807 #endif // TEST_FILECONF
809 // ----------------------------------------------------------------------------
811 // ----------------------------------------------------------------------------
815 #include "wx/filename.h"
818 static void DumpFileName(const wxChar
*desc
, const wxFileName
& fn
)
822 wxString full
= fn
.GetFullPath();
824 wxString vol
, path
, name
, ext
;
825 wxFileName::SplitPath(full
, &vol
, &path
, &name
, &ext
);
827 wxPrintf(_T("'%s'-> vol '%s', path '%s', name '%s', ext '%s'\n"),
828 full
.c_str(), vol
.c_str(), path
.c_str(), name
.c_str(), ext
.c_str());
830 wxFileName::SplitPath(full
, &path
, &name
, &ext
);
831 wxPrintf(_T("or\t\t-> path '%s', name '%s', ext '%s'\n"),
832 path
.c_str(), name
.c_str(), ext
.c_str());
834 wxPrintf(_T("path is also:\t'%s'\n"), fn
.GetPath().c_str());
835 wxPrintf(_T("with volume: \t'%s'\n"),
836 fn
.GetPath(wxPATH_GET_VOLUME
).c_str());
837 wxPrintf(_T("with separator:\t'%s'\n"),
838 fn
.GetPath(wxPATH_GET_SEPARATOR
).c_str());
839 wxPrintf(_T("with both: \t'%s'\n"),
840 fn
.GetPath(wxPATH_GET_SEPARATOR
| wxPATH_GET_VOLUME
).c_str());
842 wxPuts(_T("The directories in the path are:"));
843 wxArrayString dirs
= fn
.GetDirs();
844 size_t count
= dirs
.GetCount();
845 for ( size_t n
= 0; n
< count
; n
++ )
847 wxPrintf(_T("\t%u: %s\n"), n
, dirs
[n
].c_str());
852 static struct FileNameInfo
854 const wxChar
*fullname
;
855 const wxChar
*volume
;
864 { _T("/usr/bin/ls"), _T(""), _T("/usr/bin"), _T("ls"), _T(""), true, wxPATH_UNIX
},
865 { _T("/usr/bin/"), _T(""), _T("/usr/bin"), _T(""), _T(""), true, wxPATH_UNIX
},
866 { _T("~/.zshrc"), _T(""), _T("~"), _T(".zshrc"), _T(""), true, wxPATH_UNIX
},
867 { _T("../../foo"), _T(""), _T("../.."), _T("foo"), _T(""), false, wxPATH_UNIX
},
868 { _T("foo.bar"), _T(""), _T(""), _T("foo"), _T("bar"), false, wxPATH_UNIX
},
869 { _T("~/foo.bar"), _T(""), _T("~"), _T("foo"), _T("bar"), true, wxPATH_UNIX
},
870 { _T("/foo"), _T(""), _T("/"), _T("foo"), _T(""), true, wxPATH_UNIX
},
871 { _T("Mahogany-0.60/foo.bar"), _T(""), _T("Mahogany-0.60"), _T("foo"), _T("bar"), false, wxPATH_UNIX
},
872 { _T("/tmp/wxwin.tar.bz"), _T(""), _T("/tmp"), _T("wxwin.tar"), _T("bz"), true, wxPATH_UNIX
},
874 // Windows file names
875 { _T("foo.bar"), _T(""), _T(""), _T("foo"), _T("bar"), false, wxPATH_DOS
},
876 { _T("\\foo.bar"), _T(""), _T("\\"), _T("foo"), _T("bar"), false, wxPATH_DOS
},
877 { _T("c:foo.bar"), _T("c"), _T(""), _T("foo"), _T("bar"), false, wxPATH_DOS
},
878 { _T("c:\\foo.bar"), _T("c"), _T("\\"), _T("foo"), _T("bar"), true, wxPATH_DOS
},
879 { _T("c:\\Windows\\command.com"), _T("c"), _T("\\Windows"), _T("command"), _T("com"), true, wxPATH_DOS
},
880 { _T("\\\\server\\foo.bar"), _T("server"), _T("\\"), _T("foo"), _T("bar"), true, wxPATH_DOS
},
881 { _T("\\\\server\\dir\\foo.bar"), _T("server"), _T("\\dir"), _T("foo"), _T("bar"), true, wxPATH_DOS
},
883 // wxFileName support for Mac file names is broken currently
886 { _T("Volume:Dir:File"), _T("Volume"), _T("Dir"), _T("File"), _T(""), true, wxPATH_MAC
},
887 { _T("Volume:Dir:Subdir:File"), _T("Volume"), _T("Dir:Subdir"), _T("File"), _T(""), true, wxPATH_MAC
},
888 { _T("Volume:"), _T("Volume"), _T(""), _T(""), _T(""), true, wxPATH_MAC
},
889 { _T(":Dir:File"), _T(""), _T("Dir"), _T("File"), _T(""), false, wxPATH_MAC
},
890 { _T(":File.Ext"), _T(""), _T(""), _T("File"), _T(".Ext"), false, wxPATH_MAC
},
891 { _T("File.Ext"), _T(""), _T(""), _T("File"), _T(".Ext"), false, wxPATH_MAC
},
895 { _T("device:[dir1.dir2.dir3]file.txt"), _T("device"), _T("dir1.dir2.dir3"), _T("file"), _T("txt"), true, wxPATH_VMS
},
896 { _T("file.txt"), _T(""), _T(""), _T("file"), _T("txt"), false, wxPATH_VMS
},
899 static void TestFileNameConstruction()
901 wxPuts(_T("*** testing wxFileName construction ***"));
903 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
905 const FileNameInfo
& fni
= filenames
[n
];
907 wxFileName
fn(fni
.fullname
, fni
.format
);
909 wxString fullname
= fn
.GetFullPath(fni
.format
);
910 if ( fullname
!= fni
.fullname
)
912 wxPrintf(_T("ERROR: fullname should be '%s'\n"), fni
.fullname
);
915 bool isAbsolute
= fn
.IsAbsolute(fni
.format
);
916 wxPrintf(_T("'%s' is %s (%s)\n\t"),
918 isAbsolute
? "absolute" : "relative",
919 isAbsolute
== fni
.isAbsolute
? "ok" : "ERROR");
921 if ( !fn
.Normalize(wxPATH_NORM_ALL
, wxEmptyString
, fni
.format
) )
923 wxPuts(_T("ERROR (couldn't be normalized)"));
927 wxPrintf(_T("normalized: '%s'\n"), fn
.GetFullPath(fni
.format
).c_str());
931 wxPuts(wxEmptyString
);
934 static void TestFileNameSplit()
936 wxPuts(_T("*** testing wxFileName splitting ***"));
938 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
940 const FileNameInfo
& fni
= filenames
[n
];
941 wxString volume
, path
, name
, ext
;
942 wxFileName::SplitPath(fni
.fullname
,
943 &volume
, &path
, &name
, &ext
, fni
.format
);
945 wxPrintf(_T("%s -> volume = '%s', path = '%s', name = '%s', ext = '%s'"),
947 volume
.c_str(), path
.c_str(), name
.c_str(), ext
.c_str());
949 if ( volume
!= fni
.volume
)
950 wxPrintf(_T(" (ERROR: volume = '%s')"), fni
.volume
);
951 if ( path
!= fni
.path
)
952 wxPrintf(_T(" (ERROR: path = '%s')"), fni
.path
);
953 if ( name
!= fni
.name
)
954 wxPrintf(_T(" (ERROR: name = '%s')"), fni
.name
);
955 if ( ext
!= fni
.ext
)
956 wxPrintf(_T(" (ERROR: ext = '%s')"), fni
.ext
);
958 wxPuts(wxEmptyString
);
962 static void TestFileNameTemp()
964 wxPuts(_T("*** testing wxFileName temp file creation ***"));
966 static const wxChar
*tmpprefixes
[] =
974 _T("/tmp/foo/bar"), // this one must be an error
978 for ( size_t n
= 0; n
< WXSIZEOF(tmpprefixes
); n
++ )
980 wxString path
= wxFileName::CreateTempFileName(tmpprefixes
[n
]);
983 // "error" is not in upper case because it may be ok
984 wxPrintf(_T("Prefix '%s'\t-> error\n"), tmpprefixes
[n
]);
988 wxPrintf(_T("Prefix '%s'\t-> temp file '%s'\n"),
989 tmpprefixes
[n
], path
.c_str());
991 if ( !wxRemoveFile(path
) )
993 wxLogWarning(_T("Failed to remove temp file '%s'"),
1000 static void TestFileNameMakeRelative()
1002 wxPuts(_T("*** testing wxFileName::MakeRelativeTo() ***"));
1004 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
1006 const FileNameInfo
& fni
= filenames
[n
];
1008 wxFileName
fn(fni
.fullname
, fni
.format
);
1010 // choose the base dir of the same format
1012 switch ( fni
.format
)
1015 base
= _T("/usr/bin/");
1024 // TODO: I don't know how this is supposed to work there
1027 case wxPATH_NATIVE
: // make gcc happy
1029 wxFAIL_MSG( _T("unexpected path format") );
1032 wxPrintf(_T("'%s' relative to '%s': "),
1033 fn
.GetFullPath(fni
.format
).c_str(), base
.c_str());
1035 if ( !fn
.MakeRelativeTo(base
, fni
.format
) )
1037 wxPuts(_T("unchanged"));
1041 wxPrintf(_T("'%s'\n"), fn
.GetFullPath(fni
.format
).c_str());
1046 static void TestFileNameMakeAbsolute()
1048 wxPuts(_T("*** testing wxFileName::MakeAbsolute() ***"));
1050 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
1052 const FileNameInfo
& fni
= filenames
[n
];
1053 wxFileName
fn(fni
.fullname
, fni
.format
);
1055 wxPrintf(_T("'%s' absolutized: "),
1056 fn
.GetFullPath(fni
.format
).c_str());
1058 wxPrintf(_T("'%s'\n"), fn
.GetFullPath(fni
.format
).c_str());
1061 wxPuts(wxEmptyString
);
1064 static void TestFileNameDirManip()
1066 // TODO: test AppendDir(), RemoveDir(), ...
1069 static void TestFileNameComparison()
1074 static void TestFileNameOperations()
1079 static void TestFileNameCwd()
1084 #endif // TEST_FILENAME
1086 // ----------------------------------------------------------------------------
1087 // wxFileName time functions
1088 // ----------------------------------------------------------------------------
1090 #ifdef TEST_FILETIME
1092 #include <wx/filename.h>
1093 #include <wx/datetime.h>
1095 static void TestFileGetTimes()
1097 wxFileName
fn(_T("testdata.fc"));
1099 wxDateTime dtAccess
, dtMod
, dtCreate
;
1100 if ( !fn
.GetTimes(&dtAccess
, &dtMod
, &dtCreate
) )
1102 wxPrintf(_T("ERROR: GetTimes() failed.\n"));
1106 static const wxChar
*fmt
= _T("%Y-%b-%d %H:%M:%S");
1108 wxPrintf(_T("File times for '%s':\n"), fn
.GetFullPath().c_str());
1109 wxPrintf(_T("Creation: \t%s\n"), dtCreate
.Format(fmt
).c_str());
1110 wxPrintf(_T("Last read: \t%s\n"), dtAccess
.Format(fmt
).c_str());
1111 wxPrintf(_T("Last write: \t%s\n"), dtMod
.Format(fmt
).c_str());
1116 static void TestFileSetTimes()
1118 wxFileName
fn(_T("testdata.fc"));
1122 wxPrintf(_T("ERROR: Touch() failed.\n"));
1127 #endif // TEST_FILETIME
1129 // ----------------------------------------------------------------------------
1131 // ----------------------------------------------------------------------------
1135 #include "wx/hash.h"
1139 Foo(int n_
) { n
= n_
; count
++; }
1144 static size_t count
;
1147 size_t Foo::count
= 0;
1149 WX_DECLARE_LIST(Foo
, wxListFoos
);
1150 WX_DECLARE_HASH(Foo
, wxListFoos
, wxHashFoos
);
1152 #include "wx/listimpl.cpp"
1154 WX_DEFINE_LIST(wxListFoos
);
1156 #include "wx/timer.h"
1158 static void TestHash()
1160 wxPuts(_T("*** Testing wxHashTable ***\n"));
1161 const int COUNT
= 100;
1168 wxHashTable
hash(wxKEY_INTEGER
, 10), hash2(wxKEY_STRING
);
1172 for ( i
= 0; i
< COUNT
; ++i
)
1173 hash
.Put(i
, &o
+ i
);
1176 wxHashTable::compatibility_iterator it
= hash
.Next();
1186 wxPuts(_T("Error in wxHashTable::compatibility_iterator\n"));
1188 for ( i
= 99; i
>= 0; --i
)
1189 if( hash
.Get(i
) != &o
+ i
)
1190 wxPuts(_T("Error in wxHashTable::Get/Put\n"));
1192 for ( i
= 0; i
< COUNT
; ++i
)
1193 hash
.Put(i
, &o
+ i
+ 20);
1195 for ( i
= 99; i
>= 0; --i
)
1196 if( hash
.Get(i
) != &o
+ i
)
1197 wxPuts(_T("Error (2) in wxHashTable::Get/Put\n"));
1199 for ( i
= 0; i
< COUNT
/2; ++i
)
1200 if( hash
.Delete(i
) != &o
+ i
)
1201 wxPuts(_T("Error in wxHashTable::Delete\n"));
1203 for ( i
= COUNT
/2; i
< COUNT
; ++i
)
1204 if( hash
.Get(i
) != &o
+ i
)
1205 wxPuts(_T("Error (3) in wxHashTable::Get/Put\n"));
1207 for ( i
= 0; i
< COUNT
/2; ++i
)
1208 if( hash
.Get(i
) != &o
+ i
+ 20)
1209 wxPuts(_T("Error (4) in wxHashTable::Put/Delete\n"));
1211 for ( i
= 0; i
< COUNT
/2; ++i
)
1212 if( hash
.Delete(i
) != &o
+ i
+ 20)
1213 wxPuts(_T("Error (2) in wxHashTable::Delete\n"));
1215 for ( i
= 0; i
< COUNT
/2; ++i
)
1216 if( hash
.Get(i
) != NULL
)
1217 wxPuts(_T("Error (5) in wxHashTable::Put/Delete\n"));
1219 hash2
.Put(_T("foo"), &o
+ 1);
1220 hash2
.Put(_T("bar"), &o
+ 2);
1221 hash2
.Put(_T("baz"), &o
+ 3);
1223 if (hash2
.Get(_T("moo")) != NULL
)
1224 wxPuts(_T("Error in wxHashTable::Get\n"));
1226 if (hash2
.Get(_T("bar")) != &o
+ 2)
1227 wxPuts(_T("Error in wxHashTable::Get/Put\n"));
1229 hash2
.Put(_T("bar"), &o
+ 0);
1231 if (hash2
.Get(_T("bar")) != &o
+ 2)
1232 wxPuts(_T("Error (2) in wxHashTable::Get/Put\n"));
1235 // and now some corner-case testing; 3 and 13 hash to the same bucket
1237 wxHashTable
hash(wxKEY_INTEGER
, 10);
1240 hash
.Put(3, &dummy
);
1243 if (hash
.Get(3) != NULL
)
1244 wxPuts(_T("Corner case 1 failure\n"));
1246 hash
.Put(3, &dummy
);
1247 hash
.Put(13, &dummy
);
1250 if (hash
.Get(3) != NULL
)
1251 wxPuts(_T("Corner case 2 failure\n"));
1255 if (hash
.Get(13) != NULL
)
1256 wxPuts(_T("Corner case 3 failure\n"));
1258 hash
.Put(3, &dummy
);
1259 hash
.Put(13, &dummy
);
1262 if (hash
.Get(13) != NULL
)
1263 wxPuts(_T("Corner case 4 failure\n"));
1267 if (hash
.Get(3) != NULL
)
1268 wxPuts(_T("Corner case 5 failure\n"));
1272 wxHashTable
hash(wxKEY_INTEGER
, 10);
1275 hash
.Put(3, 7, &dummy
+ 7);
1276 hash
.Put(4, 8, &dummy
+ 8);
1278 if (hash
.Get(7) != NULL
) wxPuts(_T("Key/Hash 1 failure\n"));
1279 if (hash
.Get(3, 7) != &dummy
+ 7) wxPuts(_T("Key/Hash 2 failure\n"));
1280 if (hash
.Get(4) != NULL
) wxPuts(_T("Key/Hash 3 failure\n"));
1281 if (hash
.Get(3) != NULL
) wxPuts(_T("Key/Hash 4 failure\n"));
1282 if (hash
.Get(8) != NULL
) wxPuts(_T("Key/Hash 5 failure\n"));
1283 if (hash
.Get(8, 4) != NULL
) wxPuts(_T("Key/Hash 6 failure\n"));
1285 if (hash
.Delete(7) != NULL
) wxPuts(_T("Key/Hash 7 failure\n"));
1286 if (hash
.Delete(3) != NULL
) wxPuts(_T("Key/Hash 8 failure\n"));
1287 if (hash
.Delete(3, 7) != &dummy
+ 7) wxPuts(_T("Key/Hash 8 failure\n"));
1292 hash
.DeleteContents(true);
1294 wxPrintf(_T("Hash created: %u foos in hash, %u foos totally\n"),
1295 hash
.GetCount(), Foo::count
);
1297 static const int hashTestData
[] =
1299 0, 1, 17, -2, 2, 4, -4, 345, 3, 3, 2, 1,
1303 for ( n
= 0; n
< WXSIZEOF(hashTestData
); n
++ )
1305 hash
.Put(hashTestData
[n
], n
, new Foo(n
));
1308 wxPrintf(_T("Hash filled: %u foos in hash, %u foos totally\n"),
1309 hash
.GetCount(), Foo::count
);
1311 wxPuts(_T("Hash access test:"));
1312 for ( n
= 0; n
< WXSIZEOF(hashTestData
); n
++ )
1314 wxPrintf(_T("\tGetting element with key %d, value %d: "),
1315 hashTestData
[n
], n
);
1316 Foo
*foo
= hash
.Get(hashTestData
[n
], n
);
1319 wxPrintf(_T("ERROR, not found.\n"));
1323 wxPrintf(_T("%d (%s)\n"), foo
->n
,
1324 (size_t)foo
->n
== n
? "ok" : "ERROR");
1328 wxPrintf(_T("\nTrying to get an element not in hash: "));
1330 if ( hash
.Get(1234) || hash
.Get(1, 0) )
1332 wxPuts(_T("ERROR: found!"));
1336 wxPuts(_T("ok (not found)"));
1339 Foo
* foo
= hash
.Delete(0);
1341 wxPrintf(_T("Removed 1 foo: %u foos still there\n"), Foo::count
);
1345 wxPrintf(_T("Foo deleted: %u foos left\n"), Foo::count
);
1348 wxPrintf(_T("Hash destroyed: %u foos left\n"), Foo::count
);
1349 wxPuts(_T("*** Testing wxHashTable finished ***\n"));
1351 wxPrintf(_T("Time: %ld\n"), sw
.Time());
1356 // ----------------------------------------------------------------------------
1358 // ----------------------------------------------------------------------------
1362 #include "wx/hashmap.h"
1364 // test compilation of basic map types
1365 WX_DECLARE_HASH_MAP( int*, int*, wxPointerHash
, wxPointerEqual
, myPtrHashMap
);
1366 WX_DECLARE_HASH_MAP( long, long, wxIntegerHash
, wxIntegerEqual
, myLongHashMap
);
1367 WX_DECLARE_HASH_MAP( unsigned long, unsigned, wxIntegerHash
, wxIntegerEqual
,
1368 myUnsignedHashMap
);
1369 WX_DECLARE_HASH_MAP( unsigned int, unsigned, wxIntegerHash
, wxIntegerEqual
,
1371 WX_DECLARE_HASH_MAP( int, unsigned, wxIntegerHash
, wxIntegerEqual
,
1373 WX_DECLARE_HASH_MAP( short, unsigned, wxIntegerHash
, wxIntegerEqual
,
1375 WX_DECLARE_HASH_MAP( unsigned short, unsigned, wxIntegerHash
, wxIntegerEqual
,
1379 // WX_DECLARE_HASH_MAP( wxString, wxString, wxStringHash, wxStringEqual,
1380 // myStringHashMap );
1381 WX_DECLARE_STRING_HASH_MAP(wxString
, myStringHashMap
);
1383 typedef myStringHashMap::iterator Itor
;
1385 static void TestHashMap()
1387 wxPuts(_T("*** Testing wxHashMap ***\n"));
1388 myStringHashMap
sh(0); // as small as possible
1391 const size_t count
= 10000;
1393 // init with some data
1394 for( i
= 0; i
< count
; ++i
)
1396 buf
.Printf(wxT("%d"), i
);
1397 sh
[buf
] = wxT("A") + buf
+ wxT("C");
1400 // test that insertion worked
1401 if( sh
.size() != count
)
1403 wxPrintf(_T("*** ERROR: %u ELEMENTS, SHOULD BE %u ***\n"), sh
.size(), count
);
1406 for( i
= 0; i
< count
; ++i
)
1408 buf
.Printf(wxT("%d"), i
);
1409 if( sh
[buf
] != wxT("A") + buf
+ wxT("C") )
1411 wxPrintf(_T("*** ERROR INSERTION BROKEN! STOPPING NOW! ***\n"));
1416 // check that iterators work
1418 for( i
= 0, it
= sh
.begin(); it
!= sh
.end(); ++it
, ++i
)
1422 wxPrintf(_T("*** ERROR ITERATORS DO NOT TERMINATE! STOPPING NOW! ***\n"));
1426 if( it
->second
!= sh
[it
->first
] )
1428 wxPrintf(_T("*** ERROR ITERATORS BROKEN! STOPPING NOW! ***\n"));
1433 if( sh
.size() != i
)
1435 wxPrintf(_T("*** ERROR: %u ELEMENTS ITERATED, SHOULD BE %u ***\n"), i
, count
);
1438 // test copy ctor, assignment operator
1439 myStringHashMap
h1( sh
), h2( 0 );
1442 for( i
= 0, it
= sh
.begin(); it
!= sh
.end(); ++it
, ++i
)
1444 if( h1
[it
->first
] != it
->second
)
1446 wxPrintf(_T("*** ERROR: COPY CTOR BROKEN %s ***\n"), it
->first
.c_str());
1449 if( h2
[it
->first
] != it
->second
)
1451 wxPrintf(_T("*** ERROR: OPERATOR= BROKEN %s ***\n"), it
->first
.c_str());
1456 for( i
= 0; i
< count
; ++i
)
1458 buf
.Printf(wxT("%d"), i
);
1459 size_t sz
= sh
.size();
1461 // test find() and erase(it)
1464 it
= sh
.find( buf
);
1465 if( it
!= sh
.end() )
1469 if( sh
.find( buf
) != sh
.end() )
1471 wxPrintf(_T("*** ERROR: FOUND DELETED ELEMENT %u ***\n"), i
);
1475 wxPrintf(_T("*** ERROR: CANT FIND ELEMENT %u ***\n"), i
);
1480 size_t c
= sh
.erase( buf
);
1482 wxPrintf(_T("*** ERROR: SHOULD RETURN 1 ***\n"));
1484 if( sh
.find( buf
) != sh
.end() )
1486 wxPrintf(_T("*** ERROR: FOUND DELETED ELEMENT %u ***\n"), i
);
1490 // count should decrease
1491 if( sh
.size() != sz
- 1 )
1493 wxPrintf(_T("*** ERROR: COUNT DID NOT DECREASE ***\n"));
1497 wxPrintf(_T("*** Finished testing wxHashMap ***\n"));
1500 #endif // TEST_HASHMAP
1502 // ----------------------------------------------------------------------------
1504 // ----------------------------------------------------------------------------
1508 #include "wx/hashset.h"
1510 // test compilation of basic map types
1511 WX_DECLARE_HASH_SET( int*, wxPointerHash
, wxPointerEqual
, myPtrHashSet
);
1512 WX_DECLARE_HASH_SET( long, wxIntegerHash
, wxIntegerEqual
, myLongHashSet
);
1513 WX_DECLARE_HASH_SET( unsigned long, wxIntegerHash
, wxIntegerEqual
,
1514 myUnsignedHashSet
);
1515 WX_DECLARE_HASH_SET( unsigned int, wxIntegerHash
, wxIntegerEqual
,
1517 WX_DECLARE_HASH_SET( int, wxIntegerHash
, wxIntegerEqual
,
1519 WX_DECLARE_HASH_SET( short, wxIntegerHash
, wxIntegerEqual
,
1521 WX_DECLARE_HASH_SET( unsigned short, wxIntegerHash
, wxIntegerEqual
,
1523 WX_DECLARE_HASH_SET( wxString
, wxStringHash
, wxStringEqual
,
1535 unsigned long operator()(const MyStruct
& s
) const
1536 { return m_dummy(s
.ptr
); }
1537 MyHash
& operator=(const MyHash
&) { return *this; }
1539 wxPointerHash m_dummy
;
1545 bool operator()(const MyStruct
& s1
, const MyStruct
& s2
) const
1546 { return s1
.ptr
== s2
.ptr
; }
1547 MyEqual
& operator=(const MyEqual
&) { return *this; }
1550 WX_DECLARE_HASH_SET( MyStruct
, MyHash
, MyEqual
, mySet
);
1552 typedef myTestHashSet5 wxStringHashSet
;
1554 static void TestHashSet()
1556 wxPrintf(_T("*** Testing wxHashSet ***\n"));
1558 wxStringHashSet set1
;
1560 set1
.insert( _T("abc") );
1561 set1
.insert( _T("bbc") );
1562 set1
.insert( _T("cbc") );
1563 set1
.insert( _T("abc") );
1565 if( set1
.size() != 3 )
1566 wxPrintf(_T("*** ERROR IN INSERT ***\n"));
1572 tmp
.ptr
= &dummy
; tmp
.str
= _T("ABC");
1574 tmp
.ptr
= &dummy
+ 1;
1576 tmp
.ptr
= &dummy
; tmp
.str
= _T("CDE");
1579 if( set2
.size() != 2 )
1580 wxPrintf(_T("*** ERROR IN INSERT - 2 ***\n"));
1582 mySet::iterator it
= set2
.find( tmp
);
1584 if( it
== set2
.end() )
1585 wxPrintf(_T("*** ERROR IN FIND - 1 ***\n"));
1586 if( it
->ptr
!= &dummy
)
1587 wxPrintf(_T("*** ERROR IN FIND - 2 ***\n"));
1588 if( it
->str
!= _T("ABC") )
1589 wxPrintf(_T("*** ERROR IN INSERT - 3 ***\n"));
1591 wxPrintf(_T("*** Finished testing wxHashSet ***\n"));
1594 #endif // TEST_HASHSET
1596 // ----------------------------------------------------------------------------
1598 // ----------------------------------------------------------------------------
1602 #include "wx/list.h"
1604 WX_DECLARE_LIST(Bar
, wxListBars
);
1605 #include "wx/listimpl.cpp"
1606 WX_DEFINE_LIST(wxListBars
);
1608 WX_DECLARE_LIST(int, wxListInt
);
1609 WX_DEFINE_LIST(wxListInt
);
1611 static void TestList()
1613 wxPuts(_T("*** Testing wxList operations ***\n"));
1619 for ( i
= 0; i
< 5; ++i
)
1620 list1
.Append(dummy
+ i
);
1622 if ( list1
.GetCount() != 5 )
1623 wxPuts(_T("Wrong number of items in list\n"));
1625 if ( list1
.Item(3)->GetData() != dummy
+ 3 )
1626 wxPuts(_T("Error in Item()\n"));
1628 if ( !list1
.Find(dummy
+ 4) )
1629 wxPuts(_T("Error in Find()\n"));
1631 wxListInt::compatibility_iterator node
= list1
.GetFirst();
1636 if ( node
->GetData() != dummy
+ i
)
1637 wxPuts(_T("Error in compatibility_iterator\n"));
1638 node
= node
->GetNext();
1642 if ( size_t(i
) != list1
.GetCount() )
1643 wxPuts(_T("Error in compatibility_iterator\n"));
1645 list1
.Insert(dummy
+ 0);
1646 list1
.Insert(1, dummy
+ 1);
1647 list1
.Insert(list1
.GetFirst()->GetNext()->GetNext(), dummy
+ 2);
1649 node
= list1
.GetFirst();
1654 int* t
= node
->GetData();
1655 if ( t
!= dummy
+ i
)
1656 wxPuts(_T("Error in Insert\n"));
1657 node
= node
->GetNext();
1662 wxPuts(_T("*** Testing wxList operations finished ***\n"));
1664 wxPuts(_T("*** Testing std::list operations ***\n"));
1668 wxListInt::iterator it
, en
;
1669 wxListInt::reverse_iterator rit
, ren
;
1671 for ( i
= 0; i
< 5; ++i
)
1672 list1
.push_back(i
+ &i
);
1674 for ( it
= list1
.begin(), en
= list1
.end(), i
= 0;
1675 it
!= en
; ++it
, ++i
)
1676 if ( *it
!= i
+ &i
)
1677 wxPuts(_T("Error in iterator\n"));
1679 for ( rit
= list1
.rbegin(), ren
= list1
.rend(), i
= 4;
1680 rit
!= ren
; ++rit
, --i
)
1681 if ( *rit
!= i
+ &i
)
1682 wxPuts(_T("Error in reverse_iterator\n"));
1684 if ( *list1
.rbegin() != *--list1
.end() ||
1685 *list1
.begin() != *--list1
.rend() )
1686 wxPuts(_T("Error in iterator/reverse_iterator\n"));
1687 if ( *list1
.begin() != *--++list1
.begin() ||
1688 *list1
.rbegin() != *--++list1
.rbegin() )
1689 wxPuts(_T("Error in iterator/reverse_iterator\n"));
1691 if ( list1
.front() != &i
|| list1
.back() != &i
+ 4 )
1692 wxPuts(_T("Error in front()/back()\n"));
1694 list1
.erase(list1
.begin());
1695 list1
.erase(--list1
.end());
1697 for ( it
= list1
.begin(), en
= list1
.end(), i
= 1;
1698 it
!= en
; ++it
, ++i
)
1699 if ( *it
!= i
+ &i
)
1700 wxPuts(_T("Error in erase()\n"));
1703 wxPuts(_T("*** Testing std::list operations finished ***\n"));
1706 static void TestListCtor()
1708 wxPuts(_T("*** Testing wxList construction ***\n"));
1712 list1
.Append(new Bar(_T("first")));
1713 list1
.Append(new Bar(_T("second")));
1715 wxPrintf(_T("After 1st list creation: %u objects in the list, %u objects total.\n"),
1716 list1
.GetCount(), Bar::GetNumber());
1721 wxPrintf(_T("After 2nd list creation: %u and %u objects in the lists, %u objects total.\n"),
1722 list1
.GetCount(), list2
.GetCount(), Bar::GetNumber());
1725 list1
.DeleteContents(true);
1727 WX_CLEAR_LIST(wxListBars
, list1
);
1731 wxPrintf(_T("After list destruction: %u objects left.\n"), Bar::GetNumber());
1736 // ----------------------------------------------------------------------------
1738 // ----------------------------------------------------------------------------
1742 #include "wx/intl.h"
1743 #include "wx/utils.h" // for wxSetEnv
1745 static wxLocale
gs_localeDefault(wxLANGUAGE_ENGLISH
);
1747 // find the name of the language from its value
1748 static const wxChar
*GetLangName(int lang
)
1750 static const wxChar
*languageNames
[] =
1760 _T("ARABIC_ALGERIA"),
1761 _T("ARABIC_BAHRAIN"),
1764 _T("ARABIC_JORDAN"),
1765 _T("ARABIC_KUWAIT"),
1766 _T("ARABIC_LEBANON"),
1768 _T("ARABIC_MOROCCO"),
1771 _T("ARABIC_SAUDI_ARABIA"),
1774 _T("ARABIC_TUNISIA"),
1781 _T("AZERI_CYRILLIC"),
1796 _T("CHINESE_SIMPLIFIED"),
1797 _T("CHINESE_TRADITIONAL"),
1798 _T("CHINESE_HONGKONG"),
1799 _T("CHINESE_MACAU"),
1800 _T("CHINESE_SINGAPORE"),
1801 _T("CHINESE_TAIWAN"),
1807 _T("DUTCH_BELGIAN"),
1811 _T("ENGLISH_AUSTRALIA"),
1812 _T("ENGLISH_BELIZE"),
1813 _T("ENGLISH_BOTSWANA"),
1814 _T("ENGLISH_CANADA"),
1815 _T("ENGLISH_CARIBBEAN"),
1816 _T("ENGLISH_DENMARK"),
1818 _T("ENGLISH_JAMAICA"),
1819 _T("ENGLISH_NEW_ZEALAND"),
1820 _T("ENGLISH_PHILIPPINES"),
1821 _T("ENGLISH_SOUTH_AFRICA"),
1822 _T("ENGLISH_TRINIDAD"),
1823 _T("ENGLISH_ZIMBABWE"),
1831 _T("FRENCH_BELGIAN"),
1832 _T("FRENCH_CANADIAN"),
1833 _T("FRENCH_LUXEMBOURG"),
1834 _T("FRENCH_MONACO"),
1840 _T("GERMAN_AUSTRIAN"),
1841 _T("GERMAN_BELGIUM"),
1842 _T("GERMAN_LIECHTENSTEIN"),
1843 _T("GERMAN_LUXEMBOURG"),
1861 _T("ITALIAN_SWISS"),
1866 _T("KASHMIRI_INDIA"),
1884 _T("MALAY_BRUNEI_DARUSSALAM"),
1885 _T("MALAY_MALAYSIA"),
1895 _T("NORWEGIAN_BOKMAL"),
1896 _T("NORWEGIAN_NYNORSK"),
1903 _T("PORTUGUESE_BRAZILIAN"),
1906 _T("RHAETO_ROMANCE"),
1909 _T("RUSSIAN_UKRAINE"),
1915 _T("SERBIAN_CYRILLIC"),
1916 _T("SERBIAN_LATIN"),
1917 _T("SERBO_CROATIAN"),
1928 _T("SPANISH_ARGENTINA"),
1929 _T("SPANISH_BOLIVIA"),
1930 _T("SPANISH_CHILE"),
1931 _T("SPANISH_COLOMBIA"),
1932 _T("SPANISH_COSTA_RICA"),
1933 _T("SPANISH_DOMINICAN_REPUBLIC"),
1934 _T("SPANISH_ECUADOR"),
1935 _T("SPANISH_EL_SALVADOR"),
1936 _T("SPANISH_GUATEMALA"),
1937 _T("SPANISH_HONDURAS"),
1938 _T("SPANISH_MEXICAN"),
1939 _T("SPANISH_MODERN"),
1940 _T("SPANISH_NICARAGUA"),
1941 _T("SPANISH_PANAMA"),
1942 _T("SPANISH_PARAGUAY"),
1944 _T("SPANISH_PUERTO_RICO"),
1945 _T("SPANISH_URUGUAY"),
1947 _T("SPANISH_VENEZUELA"),
1951 _T("SWEDISH_FINLAND"),
1969 _T("URDU_PAKISTAN"),
1971 _T("UZBEK_CYRILLIC"),
1984 if ( (size_t)lang
< WXSIZEOF(languageNames
) )
1985 return languageNames
[lang
];
1987 return _T("INVALID");
1990 static void TestDefaultLang()
1992 wxPuts(_T("*** Testing wxLocale::GetSystemLanguage ***"));
1994 static const wxChar
*langStrings
[] =
1996 NULL
, // system default
2003 _T("de_DE.iso88591"),
2005 _T("?"), // invalid lang spec
2006 _T("klingonese"), // I bet on some systems it does exist...
2009 wxPrintf(_T("The default system encoding is %s (%d)\n"),
2010 wxLocale::GetSystemEncodingName().c_str(),
2011 wxLocale::GetSystemEncoding());
2013 for ( size_t n
= 0; n
< WXSIZEOF(langStrings
); n
++ )
2015 const wxChar
*langStr
= langStrings
[n
];
2018 // FIXME: this doesn't do anything at all under Windows, we need
2019 // to create a new wxLocale!
2020 wxSetEnv(_T("LC_ALL"), langStr
);
2023 int lang
= gs_localeDefault
.GetSystemLanguage();
2024 wxPrintf(_T("Locale for '%s' is %s.\n"),
2025 langStr
? langStr
: _T("system default"), GetLangName(lang
));
2029 #endif // TEST_LOCALE
2031 // ----------------------------------------------------------------------------
2033 // ----------------------------------------------------------------------------
2037 #include "wx/mimetype.h"
2039 static void TestMimeEnum()
2041 wxPuts(_T("*** Testing wxMimeTypesManager::EnumAllFileTypes() ***\n"));
2043 wxArrayString mimetypes
;
2045 size_t count
= wxTheMimeTypesManager
->EnumAllFileTypes(mimetypes
);
2047 wxPrintf(_T("*** All %u known filetypes: ***\n"), count
);
2052 for ( size_t n
= 0; n
< count
; n
++ )
2054 wxFileType
*filetype
=
2055 wxTheMimeTypesManager
->GetFileTypeFromMimeType(mimetypes
[n
]);
2058 wxPrintf(_T("nothing known about the filetype '%s'!\n"),
2059 mimetypes
[n
].c_str());
2063 filetype
->GetDescription(&desc
);
2064 filetype
->GetExtensions(exts
);
2066 filetype
->GetIcon(NULL
);
2069 for ( size_t e
= 0; e
< exts
.GetCount(); e
++ )
2072 extsAll
<< _T(", ");
2076 wxPrintf(_T("\t%s: %s (%s)\n"),
2077 mimetypes
[n
].c_str(), desc
.c_str(), extsAll
.c_str());
2080 wxPuts(wxEmptyString
);
2083 static void TestMimeOverride()
2085 wxPuts(_T("*** Testing wxMimeTypesManager additional files loading ***\n"));
2087 static const wxChar
*mailcap
= _T("/tmp/mailcap");
2088 static const wxChar
*mimetypes
= _T("/tmp/mime.types");
2090 if ( wxFile::Exists(mailcap
) )
2091 wxPrintf(_T("Loading mailcap from '%s': %s\n"),
2093 wxTheMimeTypesManager
->ReadMailcap(mailcap
) ? _T("ok") : _T("ERROR"));
2095 wxPrintf(_T("WARN: mailcap file '%s' doesn't exist, not loaded.\n"),
2098 if ( wxFile::Exists(mimetypes
) )
2099 wxPrintf(_T("Loading mime.types from '%s': %s\n"),
2101 wxTheMimeTypesManager
->ReadMimeTypes(mimetypes
) ? _T("ok") : _T("ERROR"));
2103 wxPrintf(_T("WARN: mime.types file '%s' doesn't exist, not loaded.\n"),
2106 wxPuts(wxEmptyString
);
2109 static void TestMimeFilename()
2111 wxPuts(_T("*** Testing MIME type from filename query ***\n"));
2113 static const wxChar
*filenames
[] =
2121 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
2123 const wxString fname
= filenames
[n
];
2124 wxString ext
= fname
.AfterLast(_T('.'));
2125 wxFileType
*ft
= wxTheMimeTypesManager
->GetFileTypeFromExtension(ext
);
2128 wxPrintf(_T("WARNING: extension '%s' is unknown.\n"), ext
.c_str());
2133 if ( !ft
->GetDescription(&desc
) )
2134 desc
= _T("<no description>");
2137 if ( !ft
->GetOpenCommand(&cmd
,
2138 wxFileType::MessageParameters(fname
, wxEmptyString
)) )
2139 cmd
= _T("<no command available>");
2141 cmd
= wxString(_T('"')) + cmd
+ _T('"');
2143 wxPrintf(_T("To open %s (%s) do %s.\n"),
2144 fname
.c_str(), desc
.c_str(), cmd
.c_str());
2150 wxPuts(wxEmptyString
);
2153 static void TestMimeAssociate()
2155 wxPuts(_T("*** Testing creation of filetype association ***\n"));
2157 wxFileTypeInfo
ftInfo(
2158 _T("application/x-xyz"),
2159 _T("xyzview '%s'"), // open cmd
2160 _T(""), // print cmd
2161 _T("XYZ File"), // description
2162 _T(".xyz"), // extensions
2163 NULL
// end of extensions
2165 ftInfo
.SetShortDesc(_T("XYZFile")); // used under Win32 only
2167 wxFileType
*ft
= wxTheMimeTypesManager
->Associate(ftInfo
);
2170 wxPuts(_T("ERROR: failed to create association!"));
2174 // TODO: read it back
2178 wxPuts(wxEmptyString
);
2183 // ----------------------------------------------------------------------------
2184 // misc information functions
2185 // ----------------------------------------------------------------------------
2187 #ifdef TEST_INFO_FUNCTIONS
2189 #include "wx/utils.h"
2191 static void TestDiskInfo()
2193 wxPuts(_T("*** Testing wxGetDiskSpace() ***"));
2197 wxChar pathname
[128];
2198 wxPrintf(_T("\nEnter a directory name: "));
2199 if ( !wxFgets(pathname
, WXSIZEOF(pathname
), stdin
) )
2202 // kill the last '\n'
2203 pathname
[wxStrlen(pathname
) - 1] = 0;
2205 wxLongLong total
, free
;
2206 if ( !wxGetDiskSpace(pathname
, &total
, &free
) )
2208 wxPuts(_T("ERROR: wxGetDiskSpace failed."));
2212 wxPrintf(_T("%sKb total, %sKb free on '%s'.\n"),
2213 (total
/ 1024).ToString().c_str(),
2214 (free
/ 1024).ToString().c_str(),
2220 static void TestOsInfo()
2222 wxPuts(_T("*** Testing OS info functions ***\n"));
2225 wxGetOsVersion(&major
, &minor
);
2226 wxPrintf(_T("Running under: %s, version %d.%d\n"),
2227 wxGetOsDescription().c_str(), major
, minor
);
2229 wxPrintf(_T("%ld free bytes of memory left.\n"), wxGetFreeMemory());
2231 wxPrintf(_T("Host name is %s (%s).\n"),
2232 wxGetHostName().c_str(), wxGetFullHostName().c_str());
2234 wxPuts(wxEmptyString
);
2237 static void TestUserInfo()
2239 wxPuts(_T("*** Testing user info functions ***\n"));
2241 wxPrintf(_T("User id is:\t%s\n"), wxGetUserId().c_str());
2242 wxPrintf(_T("User name is:\t%s\n"), wxGetUserName().c_str());
2243 wxPrintf(_T("Home dir is:\t%s\n"), wxGetHomeDir().c_str());
2244 wxPrintf(_T("Email address:\t%s\n"), wxGetEmailAddress().c_str());
2246 wxPuts(wxEmptyString
);
2249 #endif // TEST_INFO_FUNCTIONS
2251 // ----------------------------------------------------------------------------
2253 // ----------------------------------------------------------------------------
2255 #ifdef TEST_PATHLIST
2258 #define CMD_IN_PATH _T("ls")
2260 #define CMD_IN_PATH _T("command.com")
2263 static void TestPathList()
2265 wxPuts(_T("*** Testing wxPathList ***\n"));
2267 wxPathList pathlist
;
2268 pathlist
.AddEnvList(_T("PATH"));
2269 wxString path
= pathlist
.FindValidPath(CMD_IN_PATH
);
2272 wxPrintf(_T("ERROR: command not found in the path.\n"));
2276 wxPrintf(_T("Command found in the path as '%s'.\n"), path
.c_str());
2280 #endif // TEST_PATHLIST
2282 // ----------------------------------------------------------------------------
2283 // regular expressions
2284 // ----------------------------------------------------------------------------
2288 #include "wx/regex.h"
2290 static void TestRegExCompile()
2292 wxPuts(_T("*** Testing RE compilation ***\n"));
2294 static struct RegExCompTestData
2296 const wxChar
*pattern
;
2298 } regExCompTestData
[] =
2300 { _T("foo"), true },
2301 { _T("foo("), false },
2302 { _T("foo(bar"), false },
2303 { _T("foo(bar)"), true },
2304 { _T("foo["), false },
2305 { _T("foo[bar"), false },
2306 { _T("foo[bar]"), true },
2307 { _T("foo{"), true },
2308 { _T("foo{1"), false },
2309 { _T("foo{bar"), true },
2310 { _T("foo{1}"), true },
2311 { _T("foo{1,2}"), true },
2312 { _T("foo{bar}"), true },
2313 { _T("foo*"), true },
2314 { _T("foo**"), false },
2315 { _T("foo+"), true },
2316 { _T("foo++"), false },
2317 { _T("foo?"), true },
2318 { _T("foo??"), false },
2319 { _T("foo?+"), false },
2323 for ( size_t n
= 0; n
< WXSIZEOF(regExCompTestData
); n
++ )
2325 const RegExCompTestData
& data
= regExCompTestData
[n
];
2326 bool ok
= re
.Compile(data
.pattern
);
2328 wxPrintf(_T("'%s' is %sa valid RE (%s)\n"),
2330 ok
? wxEmptyString
: _T("not "),
2331 ok
== data
.correct
? _T("ok") : _T("ERROR"));
2335 static void TestRegExMatch()
2337 wxPuts(_T("*** Testing RE matching ***\n"));
2339 static struct RegExMatchTestData
2341 const wxChar
*pattern
;
2344 } regExMatchTestData
[] =
2346 { _T("foo"), _T("bar"), false },
2347 { _T("foo"), _T("foobar"), true },
2348 { _T("^foo"), _T("foobar"), true },
2349 { _T("^foo"), _T("barfoo"), false },
2350 { _T("bar$"), _T("barbar"), true },
2351 { _T("bar$"), _T("barbar "), false },
2354 for ( size_t n
= 0; n
< WXSIZEOF(regExMatchTestData
); n
++ )
2356 const RegExMatchTestData
& data
= regExMatchTestData
[n
];
2358 wxRegEx
re(data
.pattern
);
2359 bool ok
= re
.Matches(data
.text
);
2361 wxPrintf(_T("'%s' %s %s (%s)\n"),
2363 ok
? _T("matches") : _T("doesn't match"),
2365 ok
== data
.correct
? _T("ok") : _T("ERROR"));
2369 static void TestRegExSubmatch()
2371 wxPuts(_T("*** Testing RE subexpressions ***\n"));
2373 wxRegEx
re(_T("([[:alpha:]]+) ([[:alpha:]]+) ([[:digit:]]+).*([[:digit:]]+)$"));
2374 if ( !re
.IsValid() )
2376 wxPuts(_T("ERROR: compilation failed."));
2380 wxString text
= _T("Fri Jul 13 18:37:52 CEST 2001");
2382 if ( !re
.Matches(text
) )
2384 wxPuts(_T("ERROR: match expected."));
2388 wxPrintf(_T("Entire match: %s\n"), re
.GetMatch(text
).c_str());
2390 wxPrintf(_T("Date: %s/%s/%s, wday: %s\n"),
2391 re
.GetMatch(text
, 3).c_str(),
2392 re
.GetMatch(text
, 2).c_str(),
2393 re
.GetMatch(text
, 4).c_str(),
2394 re
.GetMatch(text
, 1).c_str());
2398 static void TestRegExReplacement()
2400 wxPuts(_T("*** Testing RE replacement ***"));
2402 static struct RegExReplTestData
2406 const wxChar
*result
;
2408 } regExReplTestData
[] =
2410 { _T("foo123"), _T("bar"), _T("bar"), 1 },
2411 { _T("foo123"), _T("\\2\\1"), _T("123foo"), 1 },
2412 { _T("foo_123"), _T("\\2\\1"), _T("123foo"), 1 },
2413 { _T("123foo"), _T("bar"), _T("123foo"), 0 },
2414 { _T("123foo456foo"), _T("&&"), _T("123foo456foo456foo"), 1 },
2415 { _T("foo123foo123"), _T("bar"), _T("barbar"), 2 },
2416 { _T("foo123_foo456_foo789"), _T("bar"), _T("bar_bar_bar"), 3 },
2419 const wxChar
*pattern
= _T("([a-z]+)[^0-9]*([0-9]+)");
2420 wxRegEx
re(pattern
);
2422 wxPrintf(_T("Using pattern '%s' for replacement.\n"), pattern
);
2424 for ( size_t n
= 0; n
< WXSIZEOF(regExReplTestData
); n
++ )
2426 const RegExReplTestData
& data
= regExReplTestData
[n
];
2428 wxString text
= data
.text
;
2429 size_t nRepl
= re
.Replace(&text
, data
.repl
);
2431 wxPrintf(_T("%s =~ s/RE/%s/g: %u match%s, result = '%s' ("),
2432 data
.text
, data
.repl
,
2433 nRepl
, nRepl
== 1 ? wxEmptyString
: _T("es"),
2435 if ( text
== data
.result
&& nRepl
== data
.count
)
2441 wxPrintf(_T("ERROR: should be %u and '%s')\n"),
2442 data
.count
, data
.result
);
2447 static void TestRegExInteractive()
2449 wxPuts(_T("*** Testing RE interactively ***"));
2453 wxChar pattern
[128];
2454 wxPrintf(_T("\nEnter a pattern: "));
2455 if ( !wxFgets(pattern
, WXSIZEOF(pattern
), stdin
) )
2458 // kill the last '\n'
2459 pattern
[wxStrlen(pattern
) - 1] = 0;
2462 if ( !re
.Compile(pattern
) )
2470 wxPrintf(_T("Enter text to match: "));
2471 if ( !wxFgets(text
, WXSIZEOF(text
), stdin
) )
2474 // kill the last '\n'
2475 text
[wxStrlen(text
) - 1] = 0;
2477 if ( !re
.Matches(text
) )
2479 wxPrintf(_T("No match.\n"));
2483 wxPrintf(_T("Pattern matches at '%s'\n"), re
.GetMatch(text
).c_str());
2486 for ( size_t n
= 1; ; n
++ )
2488 if ( !re
.GetMatch(&start
, &len
, n
) )
2493 wxPrintf(_T("Subexpr %u matched '%s'\n"),
2494 n
, wxString(text
+ start
, len
).c_str());
2501 #endif // TEST_REGEX
2503 // ----------------------------------------------------------------------------
2505 // ----------------------------------------------------------------------------
2515 static void TestDbOpen()
2523 // ----------------------------------------------------------------------------
2525 // ----------------------------------------------------------------------------
2528 NB: this stuff was taken from the glibc test suite and modified to build
2529 in wxWindows: if I read the copyright below properly, this shouldn't
2535 #ifdef wxTEST_PRINTF
2536 // use our functions from wxchar.cpp
2540 // NB: do _not_ use ATTRIBUTE_PRINTF here, we have some invalid formats
2541 // in the tests below
2542 int wxPrintf( const wxChar
*format
, ... );
2543 int wxSprintf( wxChar
*str
, const wxChar
*format
, ... );
2546 #include "wx/longlong.h"
2550 static void rfg1 (void);
2551 static void rfg2 (void);
2555 fmtchk (const wxChar
*fmt
)
2557 (void) wxPrintf(_T("%s:\t`"), fmt
);
2558 (void) wxPrintf(fmt
, 0x12);
2559 (void) wxPrintf(_T("'\n"));
2563 fmtst1chk (const wxChar
*fmt
)
2565 (void) wxPrintf(_T("%s:\t`"), fmt
);
2566 (void) wxPrintf(fmt
, 4, 0x12);
2567 (void) wxPrintf(_T("'\n"));
2571 fmtst2chk (const wxChar
*fmt
)
2573 (void) wxPrintf(_T("%s:\t`"), fmt
);
2574 (void) wxPrintf(fmt
, 4, 4, 0x12);
2575 (void) wxPrintf(_T("'\n"));
2578 /* This page is covered by the following copyright: */
2580 /* (C) Copyright C E Chew
2582 * Feel free to copy, use and distribute this software provided:
2584 * 1. you do not pretend that you wrote it
2585 * 2. you leave this copyright notice intact.
2589 * Extracted from exercise.c for glibc-1.05 bug report by Bruce Evans.
2596 /* Formatted Output Test
2598 * This exercises the output formatting code.
2601 wxChar
*PointerNull
= NULL
;
2608 wxChar
*prefix
= buf
;
2611 wxPuts(_T("\nFormatted output test"));
2612 wxPrintf(_T("prefix 6d 6o 6x 6X 6u\n"));
2613 wxStrcpy(prefix
, _T("%"));
2614 for (i
= 0; i
< 2; i
++) {
2615 for (j
= 0; j
< 2; j
++) {
2616 for (k
= 0; k
< 2; k
++) {
2617 for (l
= 0; l
< 2; l
++) {
2618 wxStrcpy(prefix
, _T("%"));
2619 if (i
== 0) wxStrcat(prefix
, _T("-"));
2620 if (j
== 0) wxStrcat(prefix
, _T("+"));
2621 if (k
== 0) wxStrcat(prefix
, _T("#"));
2622 if (l
== 0) wxStrcat(prefix
, _T("0"));
2623 wxPrintf(_T("%5s |"), prefix
);
2624 wxStrcpy(tp
, prefix
);
2625 wxStrcat(tp
, _T("6d |"));
2627 wxStrcpy(tp
, prefix
);
2628 wxStrcat(tp
, _T("6o |"));
2630 wxStrcpy(tp
, prefix
);
2631 wxStrcat(tp
, _T("6x |"));
2633 wxStrcpy(tp
, prefix
);
2634 wxStrcat(tp
, _T("6X |"));
2636 wxStrcpy(tp
, prefix
);
2637 wxStrcat(tp
, _T("6u |"));
2644 wxPrintf(_T("%10s\n"), PointerNull
);
2645 wxPrintf(_T("%-10s\n"), PointerNull
);
2648 static void TestPrintf()
2650 static wxChar shortstr
[] = _T("Hi, Z.");
2651 static wxChar longstr
[] = _T("Good morning, Doctor Chandra. This is Hal. \
2652 I am ready for my first lesson today.");
2654 wxString test_format
;
2658 fmtchk(_T("%4.4x"));
2659 fmtchk(_T("%04.4x"));
2660 fmtchk(_T("%4.3x"));
2661 fmtchk(_T("%04.3x"));
2663 fmtst1chk(_T("%.*x"));
2664 fmtst1chk(_T("%0*x"));
2665 fmtst2chk(_T("%*.*x"));
2666 fmtst2chk(_T("%0*.*x"));
2668 wxString bad_format
= _T("bad format:\t\"%b\"\n");
2669 wxPrintf(bad_format
.c_str());
2670 wxPrintf(_T("nil pointer (padded):\t\"%10p\"\n"), (void *) NULL
);
2672 wxPrintf(_T("decimal negative:\t\"%d\"\n"), -2345);
2673 wxPrintf(_T("octal negative:\t\"%o\"\n"), -2345);
2674 wxPrintf(_T("hex negative:\t\"%x\"\n"), -2345);
2675 wxPrintf(_T("long decimal number:\t\"%ld\"\n"), -123456L);
2676 wxPrintf(_T("long octal negative:\t\"%lo\"\n"), -2345L);
2677 wxPrintf(_T("long unsigned decimal number:\t\"%lu\"\n"), -123456L);
2678 wxPrintf(_T("zero-padded LDN:\t\"%010ld\"\n"), -123456L);
2679 test_format
= _T("left-adjusted ZLDN:\t\"%-010ld\"\n");
2680 wxPrintf(test_format
.c_str(), -123456);
2681 wxPrintf(_T("space-padded LDN:\t\"%10ld\"\n"), -123456L);
2682 wxPrintf(_T("left-adjusted SLDN:\t\"%-10ld\"\n"), -123456L);
2684 test_format
= _T("zero-padded string:\t\"%010s\"\n");
2685 wxPrintf(test_format
.c_str(), shortstr
);
2686 test_format
= _T("left-adjusted Z string:\t\"%-010s\"\n");
2687 wxPrintf(test_format
.c_str(), shortstr
);
2688 wxPrintf(_T("space-padded string:\t\"%10s\"\n"), shortstr
);
2689 wxPrintf(_T("left-adjusted S string:\t\"%-10s\"\n"), shortstr
);
2690 wxPrintf(_T("null string:\t\"%s\"\n"), PointerNull
);
2691 wxPrintf(_T("limited string:\t\"%.22s\"\n"), longstr
);
2693 wxPrintf(_T("e-style >= 1:\t\"%e\"\n"), 12.34);
2694 wxPrintf(_T("e-style >= .1:\t\"%e\"\n"), 0.1234);
2695 wxPrintf(_T("e-style < .1:\t\"%e\"\n"), 0.001234);
2696 wxPrintf(_T("e-style big:\t\"%.60e\"\n"), 1e20
);
2697 wxPrintf(_T("e-style == .1:\t\"%e\"\n"), 0.1);
2698 wxPrintf(_T("f-style >= 1:\t\"%f\"\n"), 12.34);
2699 wxPrintf(_T("f-style >= .1:\t\"%f\"\n"), 0.1234);
2700 wxPrintf(_T("f-style < .1:\t\"%f\"\n"), 0.001234);
2701 wxPrintf(_T("g-style >= 1:\t\"%g\"\n"), 12.34);
2702 wxPrintf(_T("g-style >= .1:\t\"%g\"\n"), 0.1234);
2703 wxPrintf(_T("g-style < .1:\t\"%g\"\n"), 0.001234);
2704 wxPrintf(_T("g-style big:\t\"%.60g\"\n"), 1e20
);
2706 wxPrintf (_T(" %6.5f\n"), .099999999860301614);
2707 wxPrintf (_T(" %6.5f\n"), .1);
2708 wxPrintf (_T("x%5.4fx\n"), .5);
2710 wxPrintf (_T("%#03x\n"), 1);
2712 //wxPrintf (_T("something really insane: %.10000f\n"), 1.0);
2718 while (niter
-- != 0)
2719 wxPrintf (_T("%.17e\n"), d
/ 2);
2724 // Open Watcom cause compiler error here
2725 // Error! E173: col(24) floating-point constant too small to represent
2726 wxPrintf (_T("%15.5e\n"), 4.9406564584124654e-324);
2729 #define FORMAT _T("|%12.4f|%12.4e|%12.4g|\n")
2730 wxPrintf (FORMAT
, 0.0, 0.0, 0.0);
2731 wxPrintf (FORMAT
, 1.0, 1.0, 1.0);
2732 wxPrintf (FORMAT
, -1.0, -1.0, -1.0);
2733 wxPrintf (FORMAT
, 100.0, 100.0, 100.0);
2734 wxPrintf (FORMAT
, 1000.0, 1000.0, 1000.0);
2735 wxPrintf (FORMAT
, 10000.0, 10000.0, 10000.0);
2736 wxPrintf (FORMAT
, 12345.0, 12345.0, 12345.0);
2737 wxPrintf (FORMAT
, 100000.0, 100000.0, 100000.0);
2738 wxPrintf (FORMAT
, 123456.0, 123456.0, 123456.0);
2743 int rc
= wxSnprintf (buf
, WXSIZEOF(buf
), _T("%30s"), _T("foo"));
2745 wxPrintf(_T("snprintf (\"%%30s\", \"foo\") == %d, \"%.*s\"\n"),
2746 rc
, WXSIZEOF(buf
), buf
);
2749 wxPrintf ("snprintf (\"%%.999999u\", 10)\n",
2750 wxSnprintf(buf2
, WXSIZEOFbuf2
), "%.999999u", 10));
2756 wxPrintf (_T("%e should be 1.234568e+06\n"), 1234567.8);
2757 wxPrintf (_T("%f should be 1234567.800000\n"), 1234567.8);
2758 wxPrintf (_T("%g should be 1.23457e+06\n"), 1234567.8);
2759 wxPrintf (_T("%g should be 123.456\n"), 123.456);
2760 wxPrintf (_T("%g should be 1e+06\n"), 1000000.0);
2761 wxPrintf (_T("%g should be 10\n"), 10.0);
2762 wxPrintf (_T("%g should be 0.02\n"), 0.02);
2766 wxPrintf(_T("%.17f\n"),(1.0/x
/10.0+1.0)*x
-x
);
2772 wxSprintf(buf
,_T("%*s%*s%*s"),-1,_T("one"),-20,_T("two"),-30,_T("three"));
2774 result
|= wxStrcmp (buf
,
2775 _T("onetwo three "));
2777 wxPuts (result
!= 0 ? _T("Test failed!") : _T("Test ok."));
2784 wxSprintf(buf
, _T("%07") wxLongLongFmtSpec
_T("o"), wxLL(040000000000));
2786 // for some reason below line fails under Borland
2787 wxPrintf (_T("sprintf (buf, \"%%07Lo\", 040000000000ll) = %s"), buf
);
2790 if (wxStrcmp (buf
, _T("40000000000")) != 0)
2793 wxPuts (_T("\tFAILED"));
2795 wxUnusedVar(result
);
2796 wxPuts (wxEmptyString
);
2798 #endif // wxLongLong_t
2800 wxPrintf (_T("printf (\"%%hhu\", %u) = %hhu\n"), UCHAR_MAX
+ 2, UCHAR_MAX
+ 2);
2801 wxPrintf (_T("printf (\"%%hu\", %u) = %hu\n"), USHRT_MAX
+ 2, USHRT_MAX
+ 2);
2803 wxPuts (_T("--- Should be no further output. ---"));
2812 memset (bytes
, '\xff', sizeof bytes
);
2813 wxSprintf (buf
, _T("foo%hhn\n"), &bytes
[3]);
2814 if (bytes
[0] != '\xff' || bytes
[1] != '\xff' || bytes
[2] != '\xff'
2815 || bytes
[4] != '\xff' || bytes
[5] != '\xff' || bytes
[6] != '\xff')
2817 wxPuts (_T("%hhn overwrite more bytes"));
2822 wxPuts (_T("%hhn wrote incorrect value"));
2834 wxSprintf (buf
, _T("%5.s"), _T("xyz"));
2835 if (wxStrcmp (buf
, _T(" ")) != 0)
2836 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" "));
2837 wxSprintf (buf
, _T("%5.f"), 33.3);
2838 if (wxStrcmp (buf
, _T(" 33")) != 0)
2839 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 33"));
2840 wxSprintf (buf
, _T("%8.e"), 33.3e7
);
2841 if (wxStrcmp (buf
, _T(" 3e+08")) != 0)
2842 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 3e+08"));
2843 wxSprintf (buf
, _T("%8.E"), 33.3e7
);
2844 if (wxStrcmp (buf
, _T(" 3E+08")) != 0)
2845 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 3E+08"));
2846 wxSprintf (buf
, _T("%.g"), 33.3);
2847 if (wxStrcmp (buf
, _T("3e+01")) != 0)
2848 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T("3e+01"));
2849 wxSprintf (buf
, _T("%.G"), 33.3);
2850 if (wxStrcmp (buf
, _T("3E+01")) != 0)
2851 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T("3E+01"));
2859 wxString test_format
;
2862 wxSprintf (buf
, _T("%.*g"), prec
, 3.3);
2863 if (wxStrcmp (buf
, _T("3")) != 0)
2864 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T("3"));
2866 wxSprintf (buf
, _T("%.*G"), prec
, 3.3);
2867 if (wxStrcmp (buf
, _T("3")) != 0)
2868 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T("3"));
2870 wxSprintf (buf
, _T("%7.*G"), prec
, 3.33);
2871 if (wxStrcmp (buf
, _T(" 3")) != 0)
2872 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 3"));
2874 test_format
= _T("%04.*o");
2875 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2876 if (wxStrcmp (buf
, _T(" 041")) != 0)
2877 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 041"));
2879 test_format
= _T("%09.*u");
2880 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2881 if (wxStrcmp (buf
, _T(" 0000033")) != 0)
2882 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 0000033"));
2884 test_format
= _T("%04.*x");
2885 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2886 if (wxStrcmp (buf
, _T(" 021")) != 0)
2887 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 021"));
2889 test_format
= _T("%04.*X");
2890 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2891 if (wxStrcmp (buf
, _T(" 021")) != 0)
2892 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 021"));
2895 #endif // TEST_PRINTF
2897 // ----------------------------------------------------------------------------
2898 // registry and related stuff
2899 // ----------------------------------------------------------------------------
2901 // this is for MSW only
2904 #undef TEST_REGISTRY
2909 #include "wx/confbase.h"
2910 #include "wx/msw/regconf.h"
2913 static void TestRegConfWrite()
2915 wxConfig
*config
= new wxConfig(_T("myapp"));
2916 config
->SetPath(_T("/group1"));
2917 config
->Write(_T("entry1"), _T("foo"));
2918 config
->SetPath(_T("/group2"));
2919 config
->Write(_T("entry1"), _T("bar"));
2923 static void TestRegConfRead()
2925 wxConfig
*config
= new wxConfig(_T("myapp"));
2929 config
->SetPath(_T("/"));
2930 wxPuts(_T("Enumerating / subgroups:"));
2931 bool bCont
= config
->GetFirstGroup(str
, dummy
);
2935 bCont
= config
->GetNextGroup(str
, dummy
);
2939 #endif // TEST_REGCONF
2941 #ifdef TEST_REGISTRY
2943 #include "wx/msw/registry.h"
2945 // I chose this one because I liked its name, but it probably only exists under
2947 static const wxChar
*TESTKEY
=
2948 _T("HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\CrashControl");
2950 static void TestRegistryRead()
2952 wxPuts(_T("*** testing registry reading ***"));
2954 wxRegKey
key(TESTKEY
);
2955 wxPrintf(_T("The test key name is '%s'.\n"), key
.GetName().c_str());
2958 wxPuts(_T("ERROR: test key can't be opened, aborting test."));
2963 size_t nSubKeys
, nValues
;
2964 if ( key
.GetKeyInfo(&nSubKeys
, NULL
, &nValues
, NULL
) )
2966 wxPrintf(_T("It has %u subkeys and %u values.\n"), nSubKeys
, nValues
);
2969 wxPrintf(_T("Enumerating values:\n"));
2973 bool cont
= key
.GetFirstValue(value
, dummy
);
2976 wxPrintf(_T("Value '%s': type "), value
.c_str());
2977 switch ( key
.GetValueType(value
) )
2979 case wxRegKey::Type_None
: wxPrintf(_T("ERROR (none)")); break;
2980 case wxRegKey::Type_String
: wxPrintf(_T("SZ")); break;
2981 case wxRegKey::Type_Expand_String
: wxPrintf(_T("EXPAND_SZ")); break;
2982 case wxRegKey::Type_Binary
: wxPrintf(_T("BINARY")); break;
2983 case wxRegKey::Type_Dword
: wxPrintf(_T("DWORD")); break;
2984 case wxRegKey::Type_Multi_String
: wxPrintf(_T("MULTI_SZ")); break;
2985 default: wxPrintf(_T("other (unknown)")); break;
2988 wxPrintf(_T(", value = "));
2989 if ( key
.IsNumericValue(value
) )
2992 key
.QueryValue(value
, &val
);
2993 wxPrintf(_T("%ld"), val
);
2998 key
.QueryValue(value
, val
);
2999 wxPrintf(_T("'%s'"), val
.c_str());
3001 key
.QueryRawValue(value
, val
);
3002 wxPrintf(_T(" (raw value '%s')"), val
.c_str());
3007 cont
= key
.GetNextValue(value
, dummy
);
3011 static void TestRegistryAssociation()
3014 The second call to deleteself genertaes an error message, with a
3015 messagebox saying .flo is crucial to system operation, while the .ddf
3016 call also fails, but with no error message
3021 key
.SetName(_T("HKEY_CLASSES_ROOT\\.ddf") );
3023 key
= _T("ddxf_auto_file") ;
3024 key
.SetName(_T("HKEY_CLASSES_ROOT\\.flo") );
3026 key
= _T("ddxf_auto_file") ;
3027 key
.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\DefaultIcon"));
3029 key
= _T("program,0") ;
3030 key
.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\shell\\open\\command"));
3032 key
= _T("program \"%1\"") ;
3034 key
.SetName(_T("HKEY_CLASSES_ROOT\\.ddf") );
3036 key
.SetName(_T("HKEY_CLASSES_ROOT\\.flo") );
3038 key
.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\DefaultIcon"));
3040 key
.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\shell\\open\\command"));
3044 #endif // TEST_REGISTRY
3046 // ----------------------------------------------------------------------------
3048 // ----------------------------------------------------------------------------
3050 #ifdef TEST_SCOPEGUARD
3052 #include "wx/scopeguard.h"
3054 static void function0() { puts("function0()"); }
3055 static void function1(int n
) { printf("function1(%d)\n", n
); }
3056 static void function2(double x
, char c
) { printf("function2(%g, %c)\n", x
, c
); }
3060 void method0() { printf("method0()\n"); }
3061 void method1(int n
) { printf("method1(%d)\n", n
); }
3062 void method2(double x
, char c
) { printf("method2(%g, %c)\n", x
, c
); }
3065 static void TestScopeGuard()
3067 wxON_BLOCK_EXIT0(function0
);
3068 wxON_BLOCK_EXIT1(function1
, 17);
3069 wxON_BLOCK_EXIT2(function2
, 3.14, 'p');
3072 wxON_BLOCK_EXIT_OBJ0(obj
, &Object::method0
);
3073 wxON_BLOCK_EXIT_OBJ1(obj
, &Object::method1
, 7);
3074 wxON_BLOCK_EXIT_OBJ2(obj
, &Object::method2
, 2.71, 'e');
3076 wxScopeGuard dismissed
= wxMakeGuard(function0
);
3077 dismissed
.Dismiss();
3082 // ----------------------------------------------------------------------------
3084 // ----------------------------------------------------------------------------
3088 #include "wx/socket.h"
3089 #include "wx/protocol/protocol.h"
3090 #include "wx/protocol/http.h"
3092 static void TestSocketServer()
3094 wxPuts(_T("*** Testing wxSocketServer ***\n"));
3096 static const int PORT
= 3000;
3101 wxSocketServer
*server
= new wxSocketServer(addr
);
3102 if ( !server
->Ok() )
3104 wxPuts(_T("ERROR: failed to bind"));
3112 wxPrintf(_T("Server: waiting for connection on port %d...\n"), PORT
);
3114 wxSocketBase
*socket
= server
->Accept();
3117 wxPuts(_T("ERROR: wxSocketServer::Accept() failed."));
3121 wxPuts(_T("Server: got a client."));
3123 server
->SetTimeout(60); // 1 min
3126 while ( !close
&& socket
->IsConnected() )
3129 wxChar ch
= _T('\0');
3132 if ( socket
->Read(&ch
, sizeof(ch
)).Error() )
3134 // don't log error if the client just close the connection
3135 if ( socket
->IsConnected() )
3137 wxPuts(_T("ERROR: in wxSocket::Read."));
3157 wxPrintf(_T("Server: got '%s'.\n"), s
.c_str());
3158 if ( s
== _T("close") )
3160 wxPuts(_T("Closing connection"));
3164 else if ( s
== _T("quit") )
3169 wxPuts(_T("Shutting down the server"));
3171 else // not a special command
3173 socket
->Write(s
.MakeUpper().c_str(), s
.length());
3174 socket
->Write("\r\n", 2);
3175 wxPrintf(_T("Server: wrote '%s'.\n"), s
.c_str());
3181 wxPuts(_T("Server: lost a client unexpectedly."));
3187 // same as "delete server" but is consistent with GUI programs
3191 static void TestSocketClient()
3193 wxPuts(_T("*** Testing wxSocketClient ***\n"));
3195 static const wxChar
*hostname
= _T("www.wxwindows.org");
3198 addr
.Hostname(hostname
);
3201 wxPrintf(_T("--- Attempting to connect to %s:80...\n"), hostname
);
3203 wxSocketClient client
;
3204 if ( !client
.Connect(addr
) )
3206 wxPrintf(_T("ERROR: failed to connect to %s\n"), hostname
);
3210 wxPrintf(_T("--- Connected to %s:%u...\n"),
3211 addr
.Hostname().c_str(), addr
.Service());
3215 // could use simply "GET" here I suppose
3217 wxString::Format(_T("GET http://%s/\r\n"), hostname
);
3218 client
.Write(cmdGet
, cmdGet
.length());
3219 wxPrintf(_T("--- Sent command '%s' to the server\n"),
3220 MakePrintable(cmdGet
).c_str());
3221 client
.Read(buf
, WXSIZEOF(buf
));
3222 wxPrintf(_T("--- Server replied:\n%s"), buf
);
3226 #endif // TEST_SOCKETS
3228 // ----------------------------------------------------------------------------
3230 // ----------------------------------------------------------------------------
3234 #include "wx/protocol/ftp.h"
3238 #define FTP_ANONYMOUS
3240 #ifdef FTP_ANONYMOUS
3241 static const wxChar
*directory
= _T("/pub");
3242 static const wxChar
*filename
= _T("welcome.msg");
3244 static const wxChar
*directory
= _T("/etc");
3245 static const wxChar
*filename
= _T("issue");
3248 static bool TestFtpConnect()
3250 wxPuts(_T("*** Testing FTP connect ***"));
3252 #ifdef FTP_ANONYMOUS
3253 static const wxChar
*hostname
= _T("ftp.wxwindows.org");
3255 wxPrintf(_T("--- Attempting to connect to %s:21 anonymously...\n"), hostname
);
3256 #else // !FTP_ANONYMOUS
3257 static const wxChar
*hostname
= "localhost";
3260 wxFgets(user
, WXSIZEOF(user
), stdin
);
3261 user
[wxStrlen(user
) - 1] = '\0'; // chop off '\n'
3264 wxChar password
[256];
3265 wxPrintf(_T("Password for %s: "), password
);
3266 wxFgets(password
, WXSIZEOF(password
), stdin
);
3267 password
[wxStrlen(password
) - 1] = '\0'; // chop off '\n'
3268 ftp
.SetPassword(password
);
3270 wxPrintf(_T("--- Attempting to connect to %s:21 as %s...\n"), hostname
, user
);
3271 #endif // FTP_ANONYMOUS/!FTP_ANONYMOUS
3273 if ( !ftp
.Connect(hostname
) )
3275 wxPrintf(_T("ERROR: failed to connect to %s\n"), hostname
);
3281 wxPrintf(_T("--- Connected to %s, current directory is '%s'\n"),
3282 hostname
, ftp
.Pwd().c_str());
3288 // test (fixed?) wxFTP bug with wu-ftpd >= 2.6.0?
3289 static void TestFtpWuFtpd()
3292 static const wxChar
*hostname
= _T("ftp.eudora.com");
3293 if ( !ftp
.Connect(hostname
) )
3295 wxPrintf(_T("ERROR: failed to connect to %s\n"), hostname
);
3299 static const wxChar
*filename
= _T("eudora/pubs/draft-gellens-submit-09.txt");
3300 wxInputStream
*in
= ftp
.GetInputStream(filename
);
3303 wxPrintf(_T("ERROR: couldn't get input stream for %s\n"), filename
);
3307 size_t size
= in
->GetSize();
3308 wxPrintf(_T("Reading file %s (%u bytes)..."), filename
, size
);
3310 wxChar
*data
= new wxChar
[size
];
3311 if ( !in
->Read(data
, size
) )
3313 wxPuts(_T("ERROR: read error"));
3317 wxPrintf(_T("Successfully retrieved the file.\n"));
3326 static void TestFtpList()
3328 wxPuts(_T("*** Testing wxFTP file listing ***\n"));
3331 if ( !ftp
.ChDir(directory
) )
3333 wxPrintf(_T("ERROR: failed to cd to %s\n"), directory
);
3336 wxPrintf(_T("Current directory is '%s'\n"), ftp
.Pwd().c_str());
3338 // test NLIST and LIST
3339 wxArrayString files
;
3340 if ( !ftp
.GetFilesList(files
) )
3342 wxPuts(_T("ERROR: failed to get NLIST of files"));
3346 wxPrintf(_T("Brief list of files under '%s':\n"), ftp
.Pwd().c_str());
3347 size_t count
= files
.GetCount();
3348 for ( size_t n
= 0; n
< count
; n
++ )
3350 wxPrintf(_T("\t%s\n"), files
[n
].c_str());
3352 wxPuts(_T("End of the file list"));
3355 if ( !ftp
.GetDirList(files
) )
3357 wxPuts(_T("ERROR: failed to get LIST of files"));
3361 wxPrintf(_T("Detailed list of files under '%s':\n"), ftp
.Pwd().c_str());
3362 size_t count
= files
.GetCount();
3363 for ( size_t n
= 0; n
< count
; n
++ )
3365 wxPrintf(_T("\t%s\n"), files
[n
].c_str());
3367 wxPuts(_T("End of the file list"));
3370 if ( !ftp
.ChDir(_T("..")) )
3372 wxPuts(_T("ERROR: failed to cd to .."));
3375 wxPrintf(_T("Current directory is '%s'\n"), ftp
.Pwd().c_str());
3378 static void TestFtpDownload()
3380 wxPuts(_T("*** Testing wxFTP download ***\n"));
3383 wxInputStream
*in
= ftp
.GetInputStream(filename
);
3386 wxPrintf(_T("ERROR: couldn't get input stream for %s\n"), filename
);
3390 size_t size
= in
->GetSize();
3391 wxPrintf(_T("Reading file %s (%u bytes)..."), filename
, size
);
3394 wxChar
*data
= new wxChar
[size
];
3395 if ( !in
->Read(data
, size
) )
3397 wxPuts(_T("ERROR: read error"));
3401 wxPrintf(_T("\nContents of %s:\n%s\n"), filename
, data
);
3409 static void TestFtpFileSize()
3411 wxPuts(_T("*** Testing FTP SIZE command ***"));
3413 if ( !ftp
.ChDir(directory
) )
3415 wxPrintf(_T("ERROR: failed to cd to %s\n"), directory
);
3418 wxPrintf(_T("Current directory is '%s'\n"), ftp
.Pwd().c_str());
3420 if ( ftp
.FileExists(filename
) )
3422 int size
= ftp
.GetFileSize(filename
);
3424 wxPrintf(_T("ERROR: couldn't get size of '%s'\n"), filename
);
3426 wxPrintf(_T("Size of '%s' is %d bytes.\n"), filename
, size
);
3430 wxPrintf(_T("ERROR: '%s' doesn't exist\n"), filename
);
3434 static void TestFtpMisc()
3436 wxPuts(_T("*** Testing miscellaneous wxFTP functions ***"));
3438 if ( ftp
.SendCommand(_T("STAT")) != '2' )
3440 wxPuts(_T("ERROR: STAT failed"));
3444 wxPrintf(_T("STAT returned:\n\n%s\n"), ftp
.GetLastResult().c_str());
3447 if ( ftp
.SendCommand(_T("HELP SITE")) != '2' )
3449 wxPuts(_T("ERROR: HELP SITE failed"));
3453 wxPrintf(_T("The list of site-specific commands:\n\n%s\n"),
3454 ftp
.GetLastResult().c_str());
3458 static void TestFtpInteractive()
3460 wxPuts(_T("\n*** Interactive wxFTP test ***"));
3466 wxPrintf(_T("Enter FTP command: "));
3467 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
3470 // kill the last '\n'
3471 buf
[wxStrlen(buf
) - 1] = 0;
3473 // special handling of LIST and NLST as they require data connection
3474 wxString
start(buf
, 4);
3476 if ( start
== _T("LIST") || start
== _T("NLST") )
3479 if ( wxStrlen(buf
) > 4 )
3482 wxArrayString files
;
3483 if ( !ftp
.GetList(files
, wildcard
, start
== _T("LIST")) )
3485 wxPrintf(_T("ERROR: failed to get %s of files\n"), start
.c_str());
3489 wxPrintf(_T("--- %s of '%s' under '%s':\n"),
3490 start
.c_str(), wildcard
.c_str(), ftp
.Pwd().c_str());
3491 size_t count
= files
.GetCount();
3492 for ( size_t n
= 0; n
< count
; n
++ )
3494 wxPrintf(_T("\t%s\n"), files
[n
].c_str());
3496 wxPuts(_T("--- End of the file list"));
3501 wxChar ch
= ftp
.SendCommand(buf
);
3502 wxPrintf(_T("Command %s"), ch
? _T("succeeded") : _T("failed"));
3505 wxPrintf(_T(" (return code %c)"), ch
);
3508 wxPrintf(_T(", server reply:\n%s\n\n"), ftp
.GetLastResult().c_str());
3512 wxPuts(_T("\n*** done ***"));
3515 static void TestFtpUpload()
3517 wxPuts(_T("*** Testing wxFTP uploading ***\n"));
3520 static const wxChar
*file1
= _T("test1");
3521 static const wxChar
*file2
= _T("test2");
3522 wxOutputStream
*out
= ftp
.GetOutputStream(file1
);
3525 wxPrintf(_T("--- Uploading to %s ---\n"), file1
);
3526 out
->Write("First hello", 11);
3530 // send a command to check the remote file
3531 if ( ftp
.SendCommand(wxString(_T("STAT ")) + file1
) != '2' )
3533 wxPrintf(_T("ERROR: STAT %s failed\n"), file1
);
3537 wxPrintf(_T("STAT %s returned:\n\n%s\n"),
3538 file1
, ftp
.GetLastResult().c_str());
3541 out
= ftp
.GetOutputStream(file2
);
3544 wxPrintf(_T("--- Uploading to %s ---\n"), file1
);
3545 out
->Write("Second hello", 12);
3552 // ----------------------------------------------------------------------------
3554 // ----------------------------------------------------------------------------
3558 #include "wx/wfstream.h"
3559 #include "wx/mstream.h"
3561 static void TestFileStream()
3563 wxPuts(_T("*** Testing wxFileInputStream ***"));
3565 static const wxString filename
= _T("testdata.fs");
3567 wxFileOutputStream
fsOut(filename
);
3568 fsOut
.Write("foo", 3);
3571 wxFileInputStream
fsIn(filename
);
3572 wxPrintf(_T("File stream size: %u\n"), fsIn
.GetSize());
3573 while ( !fsIn
.Eof() )
3575 wxPutchar(fsIn
.GetC());
3578 if ( !wxRemoveFile(filename
) )
3580 wxPrintf(_T("ERROR: failed to remove the file '%s'.\n"), filename
.c_str());
3583 wxPuts(_T("\n*** wxFileInputStream test done ***"));
3586 static void TestMemoryStream()
3588 wxPuts(_T("*** Testing wxMemoryOutputStream ***"));
3590 wxMemoryOutputStream memOutStream
;
3591 wxPrintf(_T("Initially out stream offset: %lu\n"),
3592 (unsigned long)memOutStream
.TellO());
3594 for ( const wxChar
*p
= _T("Hello, stream!"); *p
; p
++ )
3596 memOutStream
.PutC(*p
);
3599 wxPrintf(_T("Final out stream offset: %lu\n"),
3600 (unsigned long)memOutStream
.TellO());
3602 wxPuts(_T("*** Testing wxMemoryInputStream ***"));
3605 size_t len
= memOutStream
.CopyTo(buf
, WXSIZEOF(buf
));
3607 wxMemoryInputStream
memInpStream(buf
, len
);
3608 wxPrintf(_T("Memory stream size: %u\n"), memInpStream
.GetSize());
3609 while ( !memInpStream
.Eof() )
3611 wxPutchar(memInpStream
.GetC());
3614 wxPuts(_T("\n*** wxMemoryInputStream test done ***"));
3617 #endif // TEST_STREAMS
3619 // ----------------------------------------------------------------------------
3621 // ----------------------------------------------------------------------------
3625 #include "wx/timer.h"
3626 #include "wx/utils.h"
3628 static void TestStopWatch()
3630 wxPuts(_T("*** Testing wxStopWatch ***\n"));
3634 wxPrintf(_T("Initially paused, after 2 seconds time is..."));
3637 wxPrintf(_T("\t%ldms\n"), sw
.Time());
3639 wxPrintf(_T("Resuming stopwatch and sleeping 3 seconds..."));
3643 wxPrintf(_T("\telapsed time: %ldms\n"), sw
.Time());
3646 wxPrintf(_T("Pausing agan and sleeping 2 more seconds..."));
3649 wxPrintf(_T("\telapsed time: %ldms\n"), sw
.Time());
3652 wxPrintf(_T("Finally resuming and sleeping 2 more seconds..."));
3655 wxPrintf(_T("\telapsed time: %ldms\n"), sw
.Time());
3658 wxPuts(_T("\nChecking for 'backwards clock' bug..."));
3659 for ( size_t n
= 0; n
< 70; n
++ )
3663 for ( size_t m
= 0; m
< 100000; m
++ )
3665 if ( sw
.Time() < 0 || sw2
.Time() < 0 )
3667 wxPuts(_T("\ntime is negative - ERROR!"));
3675 wxPuts(_T(", ok."));
3678 #endif // TEST_TIMER
3680 // ----------------------------------------------------------------------------
3682 // ----------------------------------------------------------------------------
3686 #include "wx/vcard.h"
3688 static void DumpVObject(size_t level
, const wxVCardObject
& vcard
)
3691 wxVCardObject
*vcObj
= vcard
.GetFirstProp(&cookie
);
3694 wxPrintf(_T("%s%s"),
3695 wxString(_T('\t'), level
).c_str(),
3696 vcObj
->GetName().c_str());
3699 switch ( vcObj
->GetType() )
3701 case wxVCardObject::String
:
3702 case wxVCardObject::UString
:
3705 vcObj
->GetValue(&val
);
3706 value
<< _T('"') << val
<< _T('"');
3710 case wxVCardObject::Int
:
3713 vcObj
->GetValue(&i
);
3714 value
.Printf(_T("%u"), i
);
3718 case wxVCardObject::Long
:
3721 vcObj
->GetValue(&l
);
3722 value
.Printf(_T("%lu"), l
);
3726 case wxVCardObject::None
:
3729 case wxVCardObject::Object
:
3730 value
= _T("<node>");
3734 value
= _T("<unknown value type>");
3738 wxPrintf(_T(" = %s"), value
.c_str());
3741 DumpVObject(level
+ 1, *vcObj
);
3744 vcObj
= vcard
.GetNextProp(&cookie
);
3748 static void DumpVCardAddresses(const wxVCard
& vcard
)
3750 wxPuts(_T("\nShowing all addresses from vCard:\n"));
3754 wxVCardAddress
*addr
= vcard
.GetFirstAddress(&cookie
);
3758 int flags
= addr
->GetFlags();
3759 if ( flags
& wxVCardAddress::Domestic
)
3761 flagsStr
<< _T("domestic ");
3763 if ( flags
& wxVCardAddress::Intl
)
3765 flagsStr
<< _T("international ");
3767 if ( flags
& wxVCardAddress::Postal
)
3769 flagsStr
<< _T("postal ");
3771 if ( flags
& wxVCardAddress::Parcel
)
3773 flagsStr
<< _T("parcel ");
3775 if ( flags
& wxVCardAddress::Home
)
3777 flagsStr
<< _T("home ");
3779 if ( flags
& wxVCardAddress::Work
)
3781 flagsStr
<< _T("work ");
3784 wxPrintf(_T("Address %u:\n")
3786 "\tvalue = %s;%s;%s;%s;%s;%s;%s\n",
3789 addr
->GetPostOffice().c_str(),
3790 addr
->GetExtAddress().c_str(),
3791 addr
->GetStreet().c_str(),
3792 addr
->GetLocality().c_str(),
3793 addr
->GetRegion().c_str(),
3794 addr
->GetPostalCode().c_str(),
3795 addr
->GetCountry().c_str()
3799 addr
= vcard
.GetNextAddress(&cookie
);
3803 static void DumpVCardPhoneNumbers(const wxVCard
& vcard
)
3805 wxPuts(_T("\nShowing all phone numbers from vCard:\n"));
3809 wxVCardPhoneNumber
*phone
= vcard
.GetFirstPhoneNumber(&cookie
);
3813 int flags
= phone
->GetFlags();
3814 if ( flags
& wxVCardPhoneNumber::Voice
)
3816 flagsStr
<< _T("voice ");
3818 if ( flags
& wxVCardPhoneNumber::Fax
)
3820 flagsStr
<< _T("fax ");
3822 if ( flags
& wxVCardPhoneNumber::Cellular
)
3824 flagsStr
<< _T("cellular ");
3826 if ( flags
& wxVCardPhoneNumber::Modem
)
3828 flagsStr
<< _T("modem ");
3830 if ( flags
& wxVCardPhoneNumber::Home
)
3832 flagsStr
<< _T("home ");
3834 if ( flags
& wxVCardPhoneNumber::Work
)
3836 flagsStr
<< _T("work ");
3839 wxPrintf(_T("Phone number %u:\n")
3844 phone
->GetNumber().c_str()
3848 phone
= vcard
.GetNextPhoneNumber(&cookie
);
3852 static void TestVCardRead()
3854 wxPuts(_T("*** Testing wxVCard reading ***\n"));
3856 wxVCard
vcard(_T("vcard.vcf"));
3857 if ( !vcard
.IsOk() )
3859 wxPuts(_T("ERROR: couldn't load vCard."));
3863 // read individual vCard properties
3864 wxVCardObject
*vcObj
= vcard
.GetProperty("FN");
3868 vcObj
->GetValue(&value
);
3873 value
= _T("<none>");
3876 wxPrintf(_T("Full name retrieved directly: %s\n"), value
.c_str());
3879 if ( !vcard
.GetFullName(&value
) )
3881 value
= _T("<none>");
3884 wxPrintf(_T("Full name from wxVCard API: %s\n"), value
.c_str());
3886 // now show how to deal with multiply occuring properties
3887 DumpVCardAddresses(vcard
);
3888 DumpVCardPhoneNumbers(vcard
);
3890 // and finally show all
3891 wxPuts(_T("\nNow dumping the entire vCard:\n")
3892 "-----------------------------\n");
3894 DumpVObject(0, vcard
);
3898 static void TestVCardWrite()
3900 wxPuts(_T("*** Testing wxVCard writing ***\n"));
3903 if ( !vcard
.IsOk() )
3905 wxPuts(_T("ERROR: couldn't create vCard."));
3910 vcard
.SetName("Zeitlin", "Vadim");
3911 vcard
.SetFullName("Vadim Zeitlin");
3912 vcard
.SetOrganization("wxWindows", "R&D");
3914 // just dump the vCard back
3915 wxPuts(_T("Entire vCard follows:\n"));
3916 wxPuts(vcard
.Write());
3920 #endif // TEST_VCARD
3922 // ----------------------------------------------------------------------------
3924 // ----------------------------------------------------------------------------
3926 #if !defined(__WIN32__) || !wxUSE_FSVOLUME
3932 #include "wx/volume.h"
3934 static const wxChar
*volumeKinds
[] =
3940 _T("network volume"),
3944 static void TestFSVolume()
3946 wxPuts(_T("*** Testing wxFSVolume class ***"));
3948 wxArrayString volumes
= wxFSVolume::GetVolumes();
3949 size_t count
= volumes
.GetCount();
3953 wxPuts(_T("ERROR: no mounted volumes?"));
3957 wxPrintf(_T("%u mounted volumes found:\n"), count
);
3959 for ( size_t n
= 0; n
< count
; n
++ )
3961 wxFSVolume
vol(volumes
[n
]);
3964 wxPuts(_T("ERROR: couldn't create volume"));
3968 wxPrintf(_T("%u: %s (%s), %s, %s, %s\n"),
3970 vol
.GetDisplayName().c_str(),
3971 vol
.GetName().c_str(),
3972 volumeKinds
[vol
.GetKind()],
3973 vol
.IsWritable() ? _T("rw") : _T("ro"),
3974 vol
.GetFlags() & wxFS_VOL_REMOVABLE
? _T("removable")
3979 #endif // TEST_VOLUME
3981 // ----------------------------------------------------------------------------
3982 // wide char and Unicode support
3983 // ----------------------------------------------------------------------------
3987 static void TestUnicodeToFromAscii()
3989 wxPuts(_T("Testing wxString::To/FromAscii()\n"));
3991 static const char *msg
= "Hello, world!";
3992 wxString s
= wxString::FromAscii(msg
);
3994 wxPrintf(_T("Message in Unicode: %s\n"), s
.c_str());
3995 printf("Message in ASCII: %s\n", (const char *)s
.ToAscii());
3997 wxPutchar(_T('\n'));
4000 #include "wx/textfile.h"
4002 static void TestUnicodeTextFileRead()
4004 wxPuts(_T("Testing wxTextFile in Unicode build\n"));
4007 if ( file
.Open(_T("testdata.fc"), wxConvLocal
) )
4009 const size_t count
= file
.GetLineCount();
4010 for ( size_t n
= 0; n
< count
; n
++ )
4012 const wxString
& s
= file
[n
];
4014 wxPrintf(_T("Line %u: \"%s\" (len %u, last char = '%c')\n"),
4015 (unsigned)n
, s
.c_str(), (unsigned)s
.length(), s
.Last());
4020 #endif // TEST_UNICODE
4024 #include "wx/strconv.h"
4025 #include "wx/fontenc.h"
4026 #include "wx/encconv.h"
4027 #include "wx/buffer.h"
4029 static const unsigned char utf8koi8r
[] =
4031 208, 157, 208, 181, 209, 129, 208, 186, 208, 176, 208, 183, 208, 176,
4032 208, 189, 208, 189, 208, 190, 32, 208, 191, 208, 190, 209, 128, 208,
4033 176, 208, 180, 208, 190, 208, 178, 208, 176, 208, 187, 32, 208, 188,
4034 208, 181, 208, 189, 209, 143, 32, 209, 129, 208, 178, 208, 190, 208,
4035 181, 208, 185, 32, 208, 186, 209, 128, 209, 131, 209, 130, 208, 181,
4036 208, 185, 209, 136, 208, 181, 208, 185, 32, 208, 189, 208, 190, 208,
4037 178, 208, 190, 209, 129, 209, 130, 209, 140, 209, 142, 0
4040 static const unsigned char utf8iso8859_1
[] =
4042 0x53, 0x79, 0x73, 0x74, 0xc3, 0xa8, 0x6d, 0x65, 0x73, 0x20, 0x49, 0x6e,
4043 0x74, 0xc3, 0xa9, 0x67, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x20, 0x65,
4044 0x6e, 0x20, 0x4d, 0xc3, 0xa9, 0x63, 0x61, 0x6e, 0x69, 0x71, 0x75, 0x65,
4045 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x69, 0x71, 0x75, 0x65, 0x20, 0x65,
4046 0x74, 0x20, 0x51, 0x75, 0x61, 0x6e, 0x74, 0x69, 0x71, 0x75, 0x65, 0
4049 static const unsigned char utf8Invalid
[] =
4051 0x3c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3e, 0x32, 0x30, 0x30,
4052 0x32, 0xe5, 0xb9, 0xb4, 0x30, 0x39, 0xe6, 0x9c, 0x88, 0x32, 0x35, 0xe6,
4053 0x97, 0xa5, 0x20, 0x30, 0x37, 0xe6, 0x99, 0x82, 0x33, 0x39, 0xe5, 0x88,
4054 0x86, 0x35, 0x37, 0xe7, 0xa7, 0x92, 0x3c, 0x2f, 0x64, 0x69, 0x73, 0x70,
4058 static const struct Utf8Data
4060 const unsigned char *text
;
4062 const wxChar
*charset
;
4063 wxFontEncoding encoding
;
4066 { utf8Invalid
, WXSIZEOF(utf8Invalid
), _T("iso8859-1"), wxFONTENCODING_ISO8859_1
},
4067 { utf8koi8r
, WXSIZEOF(utf8koi8r
), _T("koi8-r"), wxFONTENCODING_KOI8
},
4068 { utf8iso8859_1
, WXSIZEOF(utf8iso8859_1
), _T("iso8859-1"), wxFONTENCODING_ISO8859_1
},
4071 static void TestUtf8()
4073 wxPuts(_T("*** Testing UTF8 support ***\n"));
4078 for ( size_t n
= 0; n
< WXSIZEOF(utf8data
); n
++ )
4080 const Utf8Data
& u8d
= utf8data
[n
];
4081 if ( wxConvUTF8
.MB2WC(wbuf
, (const char *)u8d
.text
,
4082 WXSIZEOF(wbuf
)) == (size_t)-1 )
4084 wxPuts(_T("ERROR: UTF-8 decoding failed."));
4088 wxCSConv
conv(u8d
.charset
);
4089 if ( conv
.WC2MB(buf
, wbuf
, WXSIZEOF(buf
)) == (size_t)-1 )
4091 wxPrintf(_T("ERROR: conversion to %s failed.\n"), u8d
.charset
);
4095 wxPrintf(_T("String in %s: %s\n"), u8d
.charset
, buf
);
4099 wxString
s(wxConvUTF8
.cMB2WC((const char *)u8d
.text
));
4101 s
= _T("<< conversion failed >>");
4102 wxPrintf(_T("String in current cset: %s\n"), s
.c_str());
4106 wxPuts(wxEmptyString
);
4109 static void TestEncodingConverter()
4111 wxPuts(_T("*** Testing wxEncodingConverter ***\n"));
4113 // using wxEncodingConverter should give the same result as above
4116 if ( wxConvUTF8
.MB2WC(wbuf
, (const char *)utf8koi8r
,
4117 WXSIZEOF(utf8koi8r
)) == (size_t)-1 )
4119 wxPuts(_T("ERROR: UTF-8 decoding failed."));
4123 wxEncodingConverter ec
;
4124 ec
.Init(wxFONTENCODING_UNICODE
, wxFONTENCODING_KOI8
);
4125 ec
.Convert(wbuf
, buf
);
4126 wxPrintf(_T("The same KOI8-R string using wxEC: %s\n"), buf
);
4129 wxPuts(wxEmptyString
);
4132 #endif // TEST_WCHAR
4134 // ----------------------------------------------------------------------------
4136 // ----------------------------------------------------------------------------
4140 #include "wx/filesys.h"
4141 #include "wx/fs_zip.h"
4142 #include "wx/zipstrm.h"
4144 static const wxChar
*TESTFILE_ZIP
= _T("testdata.zip");
4146 static void TestZipStreamRead()
4148 wxPuts(_T("*** Testing ZIP reading ***\n"));
4150 static const wxString filename
= _T("foo");
4151 wxZipInputStream
istr(TESTFILE_ZIP
, filename
);
4152 wxPrintf(_T("Archive size: %u\n"), istr
.GetSize());
4154 wxPrintf(_T("Dumping the file '%s':\n"), filename
.c_str());
4155 while ( !istr
.Eof() )
4157 wxPutchar(istr
.GetC());
4161 wxPuts(_T("\n----- done ------"));
4164 static void DumpZipDirectory(wxFileSystem
& fs
,
4165 const wxString
& dir
,
4166 const wxString
& indent
)
4168 wxString prefix
= wxString::Format(_T("%s#zip:%s"),
4169 TESTFILE_ZIP
, dir
.c_str());
4170 wxString wildcard
= prefix
+ _T("/*");
4172 wxString dirname
= fs
.FindFirst(wildcard
, wxDIR
);
4173 while ( !dirname
.empty() )
4175 if ( !dirname
.StartsWith(prefix
+ _T('/'), &dirname
) )
4177 wxPrintf(_T("ERROR: unexpected wxFileSystem::FindNext result\n"));
4182 wxPrintf(_T("%s%s\n"), indent
.c_str(), dirname
.c_str());
4184 DumpZipDirectory(fs
, dirname
,
4185 indent
+ wxString(_T(' '), 4));
4187 dirname
= fs
.FindNext();
4190 wxString filename
= fs
.FindFirst(wildcard
, wxFILE
);
4191 while ( !filename
.empty() )
4193 if ( !filename
.StartsWith(prefix
, &filename
) )
4195 wxPrintf(_T("ERROR: unexpected wxFileSystem::FindNext result\n"));
4200 wxPrintf(_T("%s%s\n"), indent
.c_str(), filename
.c_str());
4202 filename
= fs
.FindNext();
4206 static void TestZipFileSystem()
4208 wxPuts(_T("*** Testing ZIP file system ***\n"));
4210 wxFileSystem::AddHandler(new wxZipFSHandler
);
4212 wxPrintf(_T("Dumping all files in the archive %s:\n"), TESTFILE_ZIP
);
4214 DumpZipDirectory(fs
, _T(""), wxString(_T(' '), 4));
4219 // ----------------------------------------------------------------------------
4221 // ----------------------------------------------------------------------------
4225 #include "wx/zstream.h"
4226 #include "wx/wfstream.h"
4228 static const wxString FILENAME_GZ
= _T("test.gz");
4229 static const wxChar
*TEST_DATA
= _T("hello and hello and hello and hello and hello");
4231 static void TestZlibStreamWrite()
4233 wxPuts(_T("*** Testing Zlib stream reading ***\n"));
4235 wxFileOutputStream
fileOutStream(FILENAME_GZ
);
4236 wxZlibOutputStream
ostr(fileOutStream
);
4237 wxPrintf(_T("Compressing the test string... "));
4238 ostr
.Write(TEST_DATA
, wxStrlen(TEST_DATA
) + 1);
4241 wxPuts(_T("(ERROR: failed)"));
4248 wxPuts(_T("\n----- done ------"));
4251 static void TestZlibStreamRead()
4253 wxPuts(_T("*** Testing Zlib stream reading ***\n"));
4255 wxFileInputStream
fileInStream(FILENAME_GZ
);
4256 wxZlibInputStream
istr(fileInStream
);
4257 wxPrintf(_T("Archive size: %u\n"), istr
.GetSize());
4259 wxPuts(_T("Dumping the file:"));
4260 while ( !istr
.Eof() )
4262 wxPutchar(istr
.GetC());
4266 wxPuts(_T("\n----- done ------"));
4271 // ----------------------------------------------------------------------------
4273 // ----------------------------------------------------------------------------
4277 #include "wx/wfstream.h"
4278 #include "wx/gzstream.h"
4279 #include "wx/filename.h"
4280 #include "wx/txtstrm.h"
4282 // Reads two input streams and verifies that they are the same (and non-emtpy)
4284 void GzipVerify(wxInputStream
&in1
, wxInputStream
&in2
)
4287 wxPuts(_T(" Can't verify"));
4291 const int BUFSIZE
= 8192;
4292 wxCharBuffer
buf1(BUFSIZE
);
4293 wxCharBuffer
buf2(BUFSIZE
);
4298 int n1
= in1
.Read(buf1
.data(), BUFSIZE
).LastRead();
4299 int n2
= in2
.Read(buf2
.data(), BUFSIZE
).LastRead();
4301 if (n1
!= n2
|| (n1
&& memcmp(buf1
, buf2
, n1
) != 0) || (!n1
&& none
)) {
4302 wxPuts(_T(" Failure"));
4307 wxPuts(_T(" Success"));
4315 in1
.Read(buf1
.data(), BUFSIZE
);
4317 in2
.Read(buf2
.data(), BUFSIZE
);
4320 // Write a gzip file and read it back.
4324 wxPuts(_T("*** Testing gzip streams ***\n"));
4326 const wxString testname
= _T("gziptest");
4327 const wxString gzipname
= testname
+ _T(".gz");
4329 // write some random test data to a testfile
4330 wxPuts(_T("Writing random test data to ") + testname
+ _T("..."));
4332 wxFFileOutputStream
outstream(testname
);
4333 wxTextOutputStream
textout(outstream
);
4335 for (int i
= 0; i
< 1000 && outstream
.Ok(); i
++)
4336 textout
<< rand() << rand() << rand() << rand() << endl
;
4338 wxPuts(_T(" Done"));
4341 wxFileName
fn(testname
);
4342 wxDateTime dt
= fn
.GetModificationTime();
4343 wxFFileInputStream
instream(testname
);
4345 // try writing a gzip file
4346 wxPuts(_T("Writing ") + gzipname
+ _T(" using wxGzipOutputStream..."));
4348 wxFFileOutputStream
outstream(gzipname
);
4349 wxGzipOutputStream
gzip(outstream
, testname
, dt
);
4351 if (!gzip
.Write(instream
))
4352 wxPuts(_T(" Failure"));
4354 wxPuts(_T(" Success"));
4357 // try reading the gzip file
4358 wxPuts(_T("Reading ") + gzipname
+ _T(" using wxGzipInputStream..."));
4361 wxFFileInputStream
instream2(gzipname
);
4362 wxGzipInputStream
gzip(instream2
);
4363 GzipVerify(instream
, gzip
);
4365 if (gzip
.GetName() != fn
.GetFullName())
4366 wxPuts(gzipname
+ _T(" contains incorrect filename: ")
4368 if (dt
.IsValid() && gzip
.GetDateTime() != dt
)
4369 wxPuts(gzipname
+ _T(" contains incorrect timestamp: ")
4370 + gzip
.GetDateTime().Format());
4374 // then verify it using gzip program if it is in the path
4375 wxPuts(_T("Reading ") + gzipname
+ _T(" using gzip program..."));
4376 wxFFile
file(popen((_T("gzip -d -c ") + gzipname
).mb_str(), "r"));
4378 wxFFileInputStream
instream2(file
);
4380 GzipVerify(instream
, instream2
);
4385 // try reading a gzip created by gzip program
4386 wxPuts(_T("Reading output of gzip program using wxGzipInputStream..."));
4387 file
.Attach(popen((_T("gzip -c ") + testname
).mb_str(), "r"));
4389 wxFFileInputStream
instream2(file
);
4390 wxGzipInputStream
gzip(instream2
);
4392 GzipVerify(instream
, gzip
);
4398 wxPuts(_T("\n--- Done gzip streams ---"));
4403 // ----------------------------------------------------------------------------
4405 // ----------------------------------------------------------------------------
4407 #ifdef TEST_DATETIME
4411 #include "wx/datetime.h"
4416 wxDateTime::wxDateTime_t day
;
4417 wxDateTime::Month month
;
4419 wxDateTime::wxDateTime_t hour
, min
, sec
;
4421 wxDateTime::WeekDay wday
;
4422 time_t gmticks
, ticks
;
4424 void Init(const wxDateTime::Tm
& tm
)
4433 gmticks
= ticks
= -1;
4436 wxDateTime
DT() const
4437 { return wxDateTime(day
, month
, year
, hour
, min
, sec
); }
4439 bool SameDay(const wxDateTime::Tm
& tm
) const
4441 return day
== tm
.mday
&& month
== tm
.mon
&& year
== tm
.year
;
4444 wxString
Format() const
4447 s
.Printf(_T("%02d:%02d:%02d %10s %02d, %4d%s"),
4449 wxDateTime::GetMonthName(month
).c_str(),
4451 abs(wxDateTime::ConvertYearToBC(year
)),
4452 year
> 0 ? _T("AD") : _T("BC"));
4456 wxString
FormatDate() const
4459 s
.Printf(_T("%02d-%s-%4d%s"),
4461 wxDateTime::GetMonthName(month
, wxDateTime::Name_Abbr
).c_str(),
4462 abs(wxDateTime::ConvertYearToBC(year
)),
4463 year
> 0 ? _T("AD") : _T("BC"));
4468 static const Date testDates
[] =
4470 { 1, wxDateTime::Jan
, 1970, 00, 00, 00, 2440587.5, wxDateTime::Thu
, 0, -3600 },
4471 { 7, wxDateTime::Feb
, 2036, 00, 00, 00, 2464730.5, wxDateTime::Thu
, -1, -1 },
4472 { 8, wxDateTime::Feb
, 2036, 00, 00, 00, 2464731.5, wxDateTime::Fri
, -1, -1 },
4473 { 1, wxDateTime::Jan
, 2037, 00, 00, 00, 2465059.5, wxDateTime::Thu
, -1, -1 },
4474 { 1, wxDateTime::Jan
, 2038, 00, 00, 00, 2465424.5, wxDateTime::Fri
, -1, -1 },
4475 { 21, wxDateTime::Jan
, 2222, 00, 00, 00, 2532648.5, wxDateTime::Mon
, -1, -1 },
4476 { 29, wxDateTime::May
, 1976, 12, 00, 00, 2442928.0, wxDateTime::Sat
, 202219200, 202212000 },
4477 { 29, wxDateTime::Feb
, 1976, 00, 00, 00, 2442837.5, wxDateTime::Sun
, 194400000, 194396400 },
4478 { 1, wxDateTime::Jan
, 1900, 12, 00, 00, 2415021.0, wxDateTime::Mon
, -1, -1 },
4479 { 1, wxDateTime::Jan
, 1900, 00, 00, 00, 2415020.5, wxDateTime::Mon
, -1, -1 },
4480 { 15, wxDateTime::Oct
, 1582, 00, 00, 00, 2299160.5, wxDateTime::Fri
, -1, -1 },
4481 { 4, wxDateTime::Oct
, 1582, 00, 00, 00, 2299149.5, wxDateTime::Mon
, -1, -1 },
4482 { 1, wxDateTime::Mar
, 1, 00, 00, 00, 1721484.5, wxDateTime::Thu
, -1, -1 },
4483 { 1, wxDateTime::Jan
, 1, 00, 00, 00, 1721425.5, wxDateTime::Mon
, -1, -1 },
4484 { 31, wxDateTime::Dec
, 0, 00, 00, 00, 1721424.5, wxDateTime::Sun
, -1, -1 },
4485 { 1, wxDateTime::Jan
, 0, 00, 00, 00, 1721059.5, wxDateTime::Sat
, -1, -1 },
4486 { 12, wxDateTime::Aug
, -1234, 00, 00, 00, 1270573.5, wxDateTime::Fri
, -1, -1 },
4487 { 12, wxDateTime::Aug
, -4000, 00, 00, 00, 260313.5, wxDateTime::Sat
, -1, -1 },
4488 { 24, wxDateTime::Nov
, -4713, 00, 00, 00, -0.5, wxDateTime::Mon
, -1, -1 },
4491 // this test miscellaneous static wxDateTime functions
4492 static void TestTimeStatic()
4494 wxPuts(_T("\n*** wxDateTime static methods test ***"));
4496 // some info about the current date
4497 int year
= wxDateTime::GetCurrentYear();
4498 wxPrintf(_T("Current year %d is %sa leap one and has %d days.\n"),
4500 wxDateTime::IsLeapYear(year
) ? "" : "not ",
4501 wxDateTime::GetNumberOfDays(year
));
4503 wxDateTime::Month month
= wxDateTime::GetCurrentMonth();
4504 wxPrintf(_T("Current month is '%s' ('%s') and it has %d days\n"),
4505 wxDateTime::GetMonthName(month
, wxDateTime::Name_Abbr
).c_str(),
4506 wxDateTime::GetMonthName(month
).c_str(),
4507 wxDateTime::GetNumberOfDays(month
));
4510 static const size_t nYears
= 5;
4511 static const size_t years
[2][nYears
] =
4513 // first line: the years to test
4514 { 1990, 1976, 2000, 2030, 1984, },
4516 // second line: true if leap, false otherwise
4517 { false, true, true, false, true }
4520 for ( size_t n
= 0; n
< nYears
; n
++ )
4522 int year
= years
[0][n
];
4523 bool should
= years
[1][n
] != 0,
4524 is
= wxDateTime::IsLeapYear(year
);
4526 wxPrintf(_T("Year %d is %sa leap year (%s)\n"),
4529 should
== is
? "ok" : "ERROR");
4531 wxASSERT( should
== wxDateTime::IsLeapYear(year
) );
4535 // test constructing wxDateTime objects
4536 static void TestTimeSet()
4538 wxPuts(_T("\n*** wxDateTime construction test ***"));
4540 for ( size_t n
= 0; n
< WXSIZEOF(testDates
); n
++ )
4542 const Date
& d1
= testDates
[n
];
4543 wxDateTime dt
= d1
.DT();
4546 d2
.Init(dt
.GetTm());
4548 wxString s1
= d1
.Format(),
4551 wxPrintf(_T("Date: %s == %s (%s)\n"),
4552 s1
.c_str(), s2
.c_str(),
4553 s1
== s2
? _T("ok") : _T("ERROR"));
4557 // test time zones stuff
4558 static void TestTimeZones()
4560 wxPuts(_T("\n*** wxDateTime timezone test ***"));
4562 wxDateTime now
= wxDateTime::Now();
4564 wxPrintf(_T("Current GMT time:\t%s\n"), now
.Format(_T("%c"), wxDateTime::GMT0
).c_str());
4565 wxPrintf(_T("Unix epoch (GMT):\t%s\n"), wxDateTime((time_t)0).Format(_T("%c"), wxDateTime::GMT0
).c_str());
4566 wxPrintf(_T("Unix epoch (EST):\t%s\n"), wxDateTime((time_t)0).Format(_T("%c"), wxDateTime::EST
).c_str());
4567 wxPrintf(_T("Current time in Paris:\t%s\n"), now
.Format(_T("%c"), wxDateTime::CET
).c_str());
4568 wxPrintf(_T(" Moscow:\t%s\n"), now
.Format(_T("%c"), wxDateTime::MSK
).c_str());
4569 wxPrintf(_T(" New York:\t%s\n"), now
.Format(_T("%c"), wxDateTime::EST
).c_str());
4571 wxDateTime::Tm tm
= now
.GetTm();
4572 if ( wxDateTime(tm
) != now
)
4574 wxPrintf(_T("ERROR: got %s instead of %s\n"),
4575 wxDateTime(tm
).Format().c_str(), now
.Format().c_str());
4579 // test some minimal support for the dates outside the standard range
4580 static void TestTimeRange()
4582 wxPuts(_T("\n*** wxDateTime out-of-standard-range dates test ***"));
4584 static const wxChar
*fmt
= _T("%d-%b-%Y %H:%M:%S");
4586 wxPrintf(_T("Unix epoch:\t%s\n"),
4587 wxDateTime(2440587.5).Format(fmt
).c_str());
4588 wxPrintf(_T("Feb 29, 0: \t%s\n"),
4589 wxDateTime(29, wxDateTime::Feb
, 0).Format(fmt
).c_str());
4590 wxPrintf(_T("JDN 0: \t%s\n"),
4591 wxDateTime(0.0).Format(fmt
).c_str());
4592 wxPrintf(_T("Jan 1, 1AD:\t%s\n"),
4593 wxDateTime(1, wxDateTime::Jan
, 1).Format(fmt
).c_str());
4594 wxPrintf(_T("May 29, 2099:\t%s\n"),
4595 wxDateTime(29, wxDateTime::May
, 2099).Format(fmt
).c_str());
4598 static void TestTimeTicks()
4600 wxPuts(_T("\n*** wxDateTime ticks test ***"));
4602 for ( size_t n
= 0; n
< WXSIZEOF(testDates
); n
++ )
4604 const Date
& d
= testDates
[n
];
4605 if ( d
.ticks
== -1 )
4608 wxDateTime dt
= d
.DT();
4609 long ticks
= (dt
.GetValue() / 1000).ToLong();
4610 wxPrintf(_T("Ticks of %s:\t% 10ld"), d
.Format().c_str(), ticks
);
4611 if ( ticks
== d
.ticks
)
4613 wxPuts(_T(" (ok)"));
4617 wxPrintf(_T(" (ERROR: should be %ld, delta = %ld)\n"),
4618 (long)d
.ticks
, (long)(ticks
- d
.ticks
));
4621 dt
= d
.DT().ToTimezone(wxDateTime::GMT0
);
4622 ticks
= (dt
.GetValue() / 1000).ToLong();
4623 wxPrintf(_T("GMtks of %s:\t% 10ld"), d
.Format().c_str(), ticks
);
4624 if ( ticks
== d
.gmticks
)
4626 wxPuts(_T(" (ok)"));
4630 wxPrintf(_T(" (ERROR: should be %ld, delta = %ld)\n"),
4631 (long)d
.gmticks
, (long)(ticks
- d
.gmticks
));
4635 wxPuts(wxEmptyString
);
4638 // test conversions to JDN &c
4639 static void TestTimeJDN()
4641 wxPuts(_T("\n*** wxDateTime to JDN test ***"));
4643 for ( size_t n
= 0; n
< WXSIZEOF(testDates
); n
++ )
4645 const Date
& d
= testDates
[n
];
4646 wxDateTime
dt(d
.day
, d
.month
, d
.year
, d
.hour
, d
.min
, d
.sec
);
4647 double jdn
= dt
.GetJulianDayNumber();
4649 wxPrintf(_T("JDN of %s is:\t% 15.6f"), d
.Format().c_str(), jdn
);
4652 wxPuts(_T(" (ok)"));
4656 wxPrintf(_T(" (ERROR: should be %f, delta = %f)\n"),
4657 d
.jdn
, jdn
- d
.jdn
);
4662 // test week days computation
4663 static void TestTimeWDays()
4665 wxPuts(_T("\n*** wxDateTime weekday test ***"));
4667 // test GetWeekDay()
4669 for ( n
= 0; n
< WXSIZEOF(testDates
); n
++ )
4671 const Date
& d
= testDates
[n
];
4672 wxDateTime
dt(d
.day
, d
.month
, d
.year
, d
.hour
, d
.min
, d
.sec
);
4674 wxDateTime::WeekDay wday
= dt
.GetWeekDay();
4675 wxPrintf(_T("%s is: %s"),
4677 wxDateTime::GetWeekDayName(wday
).c_str());
4678 if ( wday
== d
.wday
)
4680 wxPuts(_T(" (ok)"));
4684 wxPrintf(_T(" (ERROR: should be %s)\n"),
4685 wxDateTime::GetWeekDayName(d
.wday
).c_str());
4689 wxPuts(wxEmptyString
);
4691 // test SetToWeekDay()
4692 struct WeekDateTestData
4694 Date date
; // the real date (precomputed)
4695 int nWeek
; // its week index in the month
4696 wxDateTime::WeekDay wday
; // the weekday
4697 wxDateTime::Month month
; // the month
4698 int year
; // and the year
4700 wxString
Format() const
4703 switch ( nWeek
< -1 ? -nWeek
: nWeek
)
4705 case 1: which
= _T("first"); break;
4706 case 2: which
= _T("second"); break;
4707 case 3: which
= _T("third"); break;
4708 case 4: which
= _T("fourth"); break;
4709 case 5: which
= _T("fifth"); break;
4711 case -1: which
= _T("last"); break;
4716 which
+= _T(" from end");
4719 s
.Printf(_T("The %s %s of %s in %d"),
4721 wxDateTime::GetWeekDayName(wday
).c_str(),
4722 wxDateTime::GetMonthName(month
).c_str(),
4729 // the array data was generated by the following python program
4731 from DateTime import *
4732 from whrandom import *
4733 from string import *
4735 monthNames = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ]
4736 wdayNames = [ 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun' ]
4738 week = DateTimeDelta(7)
4741 year = randint(1900, 2100)
4742 month = randint(1, 12)
4743 day = randint(1, 28)
4744 dt = DateTime(year, month, day)
4745 wday = dt.day_of_week
4747 countFromEnd = choice([-1, 1])
4750 while dt.month is month:
4751 dt = dt - countFromEnd * week
4752 weekNum = weekNum + countFromEnd
4754 data = { 'day': rjust(`day`, 2), 'month': monthNames[month - 1], 'year': year, 'weekNum': rjust(`weekNum`, 2), 'wday': wdayNames[wday] }
4756 print "{ { %(day)s, wxDateTime::%(month)s, %(year)d }, %(weekNum)d, "\
4757 "wxDateTime::%(wday)s, wxDateTime::%(month)s, %(year)d }," % data
4760 static const WeekDateTestData weekDatesTestData
[] =
4762 { { 20, wxDateTime::Mar
, 2045 }, 3, wxDateTime::Mon
, wxDateTime::Mar
, 2045 },
4763 { { 5, wxDateTime::Jun
, 1985 }, -4, wxDateTime::Wed
, wxDateTime::Jun
, 1985 },
4764 { { 12, wxDateTime::Nov
, 1961 }, -3, wxDateTime::Sun
, wxDateTime::Nov
, 1961 },
4765 { { 27, wxDateTime::Feb
, 2093 }, -1, wxDateTime::Fri
, wxDateTime::Feb
, 2093 },
4766 { { 4, wxDateTime::Jul
, 2070 }, -4, wxDateTime::Fri
, wxDateTime::Jul
, 2070 },
4767 { { 2, wxDateTime::Apr
, 1906 }, -5, wxDateTime::Mon
, wxDateTime::Apr
, 1906 },
4768 { { 19, wxDateTime::Jul
, 2023 }, -2, wxDateTime::Wed
, wxDateTime::Jul
, 2023 },
4769 { { 5, wxDateTime::May
, 1958 }, -4, wxDateTime::Mon
, wxDateTime::May
, 1958 },
4770 { { 11, wxDateTime::Aug
, 1900 }, 2, wxDateTime::Sat
, wxDateTime::Aug
, 1900 },
4771 { { 14, wxDateTime::Feb
, 1945 }, 2, wxDateTime::Wed
, wxDateTime::Feb
, 1945 },
4772 { { 25, wxDateTime::Jul
, 1967 }, -1, wxDateTime::Tue
, wxDateTime::Jul
, 1967 },
4773 { { 9, wxDateTime::May
, 1916 }, -4, wxDateTime::Tue
, wxDateTime::May
, 1916 },
4774 { { 20, wxDateTime::Jun
, 1927 }, 3, wxDateTime::Mon
, wxDateTime::Jun
, 1927 },
4775 { { 2, wxDateTime::Aug
, 2000 }, 1, wxDateTime::Wed
, wxDateTime::Aug
, 2000 },
4776 { { 20, wxDateTime::Apr
, 2044 }, 3, wxDateTime::Wed
, wxDateTime::Apr
, 2044 },
4777 { { 20, wxDateTime::Feb
, 1932 }, -2, wxDateTime::Sat
, wxDateTime::Feb
, 1932 },
4778 { { 25, wxDateTime::Jul
, 2069 }, 4, wxDateTime::Thu
, wxDateTime::Jul
, 2069 },
4779 { { 3, wxDateTime::Apr
, 1925 }, 1, wxDateTime::Fri
, wxDateTime::Apr
, 1925 },
4780 { { 21, wxDateTime::Mar
, 2093 }, 3, wxDateTime::Sat
, wxDateTime::Mar
, 2093 },
4781 { { 3, wxDateTime::Dec
, 2074 }, -5, wxDateTime::Mon
, wxDateTime::Dec
, 2074 },
4784 static const wxChar
*fmt
= _T("%d-%b-%Y");
4787 for ( n
= 0; n
< WXSIZEOF(weekDatesTestData
); n
++ )
4789 const WeekDateTestData
& wd
= weekDatesTestData
[n
];
4791 dt
.SetToWeekDay(wd
.wday
, wd
.nWeek
, wd
.month
, wd
.year
);
4793 wxPrintf(_T("%s is %s"), wd
.Format().c_str(), dt
.Format(fmt
).c_str());
4795 const Date
& d
= wd
.date
;
4796 if ( d
.SameDay(dt
.GetTm()) )
4798 wxPuts(_T(" (ok)"));
4802 dt
.Set(d
.day
, d
.month
, d
.year
);
4804 wxPrintf(_T(" (ERROR: should be %s)\n"), dt
.Format(fmt
).c_str());
4809 // test the computation of (ISO) week numbers
4810 static void TestTimeWNumber()
4812 wxPuts(_T("\n*** wxDateTime week number test ***"));
4814 struct WeekNumberTestData
4816 Date date
; // the date
4817 wxDateTime::wxDateTime_t week
; // the week number in the year
4818 wxDateTime::wxDateTime_t wmon
; // the week number in the month
4819 wxDateTime::wxDateTime_t wmon2
; // same but week starts with Sun
4820 wxDateTime::wxDateTime_t dnum
; // day number in the year
4823 // data generated with the following python script:
4825 from DateTime import *
4826 from whrandom import *
4827 from string import *
4829 monthNames = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ]
4830 wdayNames = [ 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun' ]
4832 def GetMonthWeek(dt):
4833 weekNumMonth = dt.iso_week[1] - DateTime(dt.year, dt.month, 1).iso_week[1] + 1
4834 if weekNumMonth < 0:
4835 weekNumMonth = weekNumMonth + 53
4838 def GetLastSundayBefore(dt):
4839 if dt.iso_week[2] == 7:
4842 return dt - DateTimeDelta(dt.iso_week[2])
4845 year = randint(1900, 2100)
4846 month = randint(1, 12)
4847 day = randint(1, 28)
4848 dt = DateTime(year, month, day)
4849 dayNum = dt.day_of_year
4850 weekNum = dt.iso_week[1]
4851 weekNumMonth = GetMonthWeek(dt)
4854 dtSunday = GetLastSundayBefore(dt)
4856 while dtSunday >= GetLastSundayBefore(DateTime(dt.year, dt.month, 1)):
4857 weekNumMonth2 = weekNumMonth2 + 1
4858 dtSunday = dtSunday - DateTimeDelta(7)
4860 data = { 'day': rjust(`day`, 2), \
4861 'month': monthNames[month - 1], \
4863 'weekNum': rjust(`weekNum`, 2), \
4864 'weekNumMonth': weekNumMonth, \
4865 'weekNumMonth2': weekNumMonth2, \
4866 'dayNum': rjust(`dayNum`, 3) }
4868 print " { { %(day)s, "\
4869 "wxDateTime::%(month)s, "\
4872 "%(weekNumMonth)s, "\
4873 "%(weekNumMonth2)s, "\
4874 "%(dayNum)s }," % data
4877 static const WeekNumberTestData weekNumberTestDates
[] =
4879 { { 27, wxDateTime::Dec
, 1966 }, 52, 5, 5, 361 },
4880 { { 22, wxDateTime::Jul
, 1926 }, 29, 4, 4, 203 },
4881 { { 22, wxDateTime::Oct
, 2076 }, 43, 4, 4, 296 },
4882 { { 1, wxDateTime::Jul
, 1967 }, 26, 1, 1, 182 },
4883 { { 8, wxDateTime::Nov
, 2004 }, 46, 2, 2, 313 },
4884 { { 21, wxDateTime::Mar
, 1920 }, 12, 3, 4, 81 },
4885 { { 7, wxDateTime::Jan
, 1965 }, 1, 2, 2, 7 },
4886 { { 19, wxDateTime::Oct
, 1999 }, 42, 4, 4, 292 },
4887 { { 13, wxDateTime::Aug
, 1955 }, 32, 2, 2, 225 },
4888 { { 18, wxDateTime::Jul
, 2087 }, 29, 3, 3, 199 },
4889 { { 2, wxDateTime::Sep
, 2028 }, 35, 1, 1, 246 },
4890 { { 28, wxDateTime::Jul
, 1945 }, 30, 5, 4, 209 },
4891 { { 15, wxDateTime::Jun
, 1901 }, 24, 3, 3, 166 },
4892 { { 10, wxDateTime::Oct
, 1939 }, 41, 3, 2, 283 },
4893 { { 3, wxDateTime::Dec
, 1965 }, 48, 1, 1, 337 },
4894 { { 23, wxDateTime::Feb
, 1940 }, 8, 4, 4, 54 },
4895 { { 2, wxDateTime::Jan
, 1987 }, 1, 1, 1, 2 },
4896 { { 11, wxDateTime::Aug
, 2079 }, 32, 2, 2, 223 },
4897 { { 2, wxDateTime::Feb
, 2063 }, 5, 1, 1, 33 },
4898 { { 16, wxDateTime::Oct
, 1942 }, 42, 3, 3, 289 },
4901 for ( size_t n
= 0; n
< WXSIZEOF(weekNumberTestDates
); n
++ )
4903 const WeekNumberTestData
& wn
= weekNumberTestDates
[n
];
4904 const Date
& d
= wn
.date
;
4906 wxDateTime dt
= d
.DT();
4908 wxDateTime::wxDateTime_t
4909 week
= dt
.GetWeekOfYear(wxDateTime::Monday_First
),
4910 wmon
= dt
.GetWeekOfMonth(wxDateTime::Monday_First
),
4911 wmon2
= dt
.GetWeekOfMonth(wxDateTime::Sunday_First
),
4912 dnum
= dt
.GetDayOfYear();
4914 wxPrintf(_T("%s: the day number is %d"), d
.FormatDate().c_str(), dnum
);
4915 if ( dnum
== wn
.dnum
)
4917 wxPrintf(_T(" (ok)"));
4921 wxPrintf(_T(" (ERROR: should be %d)"), wn
.dnum
);
4924 wxPrintf(_T(", week in month = %d"), wmon
);
4925 if ( wmon
!= wn
.wmon
)
4927 wxPrintf(_T(" (ERROR: should be %d)"), wn
.wmon
);
4930 wxPrintf(_T(" or %d"), wmon2
);
4931 if ( wmon2
== wn
.wmon2
)
4933 wxPrintf(_T(" (ok)"));
4937 wxPrintf(_T(" (ERROR: should be %d)"), wn
.wmon2
);
4940 wxPrintf(_T(", week in year = %d"), week
);
4941 if ( week
!= wn
.week
)
4943 wxPrintf(_T(" (ERROR: should be %d)"), wn
.week
);
4946 wxPutchar(_T('\n'));
4948 wxDateTime
dt2(1, wxDateTime::Jan
, d
.year
);
4949 dt2
.SetToTheWeek(wn
.week
, dt
.GetWeekDay());
4953 d2
.Init(dt2
.GetTm());
4954 wxPrintf(_T("ERROR: SetToTheWeek() returned %s\n"),
4955 d2
.FormatDate().c_str());
4960 // test DST calculations
4961 static void TestTimeDST()
4963 wxPuts(_T("\n*** wxDateTime DST test ***"));
4965 wxPrintf(_T("DST is%s in effect now.\n\n"),
4966 wxDateTime::Now().IsDST() ? wxEmptyString
: _T(" not"));
4968 // taken from http://www.energy.ca.gov/daylightsaving.html
4969 static const Date datesDST
[2][2004 - 1900 + 1] =
4972 { 1, wxDateTime::Apr
, 1990 },
4973 { 7, wxDateTime::Apr
, 1991 },
4974 { 5, wxDateTime::Apr
, 1992 },
4975 { 4, wxDateTime::Apr
, 1993 },
4976 { 3, wxDateTime::Apr
, 1994 },
4977 { 2, wxDateTime::Apr
, 1995 },
4978 { 7, wxDateTime::Apr
, 1996 },
4979 { 6, wxDateTime::Apr
, 1997 },
4980 { 5, wxDateTime::Apr
, 1998 },
4981 { 4, wxDateTime::Apr
, 1999 },
4982 { 2, wxDateTime::Apr
, 2000 },
4983 { 1, wxDateTime::Apr
, 2001 },
4984 { 7, wxDateTime::Apr
, 2002 },
4985 { 6, wxDateTime::Apr
, 2003 },
4986 { 4, wxDateTime::Apr
, 2004 },
4989 { 28, wxDateTime::Oct
, 1990 },
4990 { 27, wxDateTime::Oct
, 1991 },
4991 { 25, wxDateTime::Oct
, 1992 },
4992 { 31, wxDateTime::Oct
, 1993 },
4993 { 30, wxDateTime::Oct
, 1994 },
4994 { 29, wxDateTime::Oct
, 1995 },
4995 { 27, wxDateTime::Oct
, 1996 },
4996 { 26, wxDateTime::Oct
, 1997 },
4997 { 25, wxDateTime::Oct
, 1998 },
4998 { 31, wxDateTime::Oct
, 1999 },
4999 { 29, wxDateTime::Oct
, 2000 },
5000 { 28, wxDateTime::Oct
, 2001 },
5001 { 27, wxDateTime::Oct
, 2002 },
5002 { 26, wxDateTime::Oct
, 2003 },
5003 { 31, wxDateTime::Oct
, 2004 },
5008 for ( year
= 1990; year
< 2005; year
++ )
5010 wxDateTime dtBegin
= wxDateTime::GetBeginDST(year
, wxDateTime::USA
),
5011 dtEnd
= wxDateTime::GetEndDST(year
, wxDateTime::USA
);
5013 wxPrintf(_T("DST period in the US for year %d: from %s to %s"),
5014 year
, dtBegin
.Format().c_str(), dtEnd
.Format().c_str());
5016 size_t n
= year
- 1990;
5017 const Date
& dBegin
= datesDST
[0][n
];
5018 const Date
& dEnd
= datesDST
[1][n
];
5020 if ( dBegin
.SameDay(dtBegin
.GetTm()) && dEnd
.SameDay(dtEnd
.GetTm()) )
5022 wxPuts(_T(" (ok)"));
5026 wxPrintf(_T(" (ERROR: should be %s %d to %s %d)\n"),
5027 wxDateTime::GetMonthName(dBegin
.month
).c_str(), dBegin
.day
,
5028 wxDateTime::GetMonthName(dEnd
.month
).c_str(), dEnd
.day
);
5032 wxPuts(wxEmptyString
);
5034 for ( year
= 1990; year
< 2005; year
++ )
5036 wxPrintf(_T("DST period in Europe for year %d: from %s to %s\n"),
5038 wxDateTime::GetBeginDST(year
, wxDateTime::Country_EEC
).Format().c_str(),
5039 wxDateTime::GetEndDST(year
, wxDateTime::Country_EEC
).Format().c_str());
5043 // test wxDateTime -> text conversion
5044 static void TestTimeFormat()
5046 wxPuts(_T("\n*** wxDateTime formatting test ***"));
5048 // some information may be lost during conversion, so store what kind
5049 // of info should we recover after a round trip
5052 CompareNone
, // don't try comparing
5053 CompareBoth
, // dates and times should be identical
5054 CompareDate
, // dates only
5055 CompareTime
// time only
5060 CompareKind compareKind
;
5061 const wxChar
*format
;
5062 } formatTestFormats
[] =
5064 { CompareBoth
, _T("---> %c") },
5065 { CompareDate
, _T("Date is %A, %d of %B, in year %Y") },
5066 { CompareBoth
, _T("Date is %x, time is %X") },
5067 { CompareTime
, _T("Time is %H:%M:%S or %I:%M:%S %p") },
5068 { CompareNone
, _T("The day of year: %j, the week of year: %W") },
5069 { CompareDate
, _T("ISO date without separators: %Y%m%d") },
5072 static const Date formatTestDates
[] =
5074 { 29, wxDateTime::May
, 1976, 18, 30, 00 },
5075 { 31, wxDateTime::Dec
, 1999, 23, 30, 00 },
5077 // this test can't work for other centuries because it uses two digit
5078 // years in formats, so don't even try it
5079 { 29, wxDateTime::May
, 2076, 18, 30, 00 },
5080 { 29, wxDateTime::Feb
, 2400, 02, 15, 25 },
5081 { 01, wxDateTime::Jan
, -52, 03, 16, 47 },
5085 // an extra test (as it doesn't depend on date, don't do it in the loop)
5086 wxPrintf(_T("%s\n"), wxDateTime::Now().Format(_T("Our timezone is %Z")).c_str());
5088 for ( size_t d
= 0; d
< WXSIZEOF(formatTestDates
) + 1; d
++ )
5090 wxPuts(wxEmptyString
);
5092 wxDateTime dt
= d
== 0 ? wxDateTime::Now() : formatTestDates
[d
- 1].DT();
5093 for ( size_t n
= 0; n
< WXSIZEOF(formatTestFormats
); n
++ )
5095 wxString s
= dt
.Format(formatTestFormats
[n
].format
);
5096 wxPrintf(_T("%s"), s
.c_str());
5098 // what can we recover?
5099 int kind
= formatTestFormats
[n
].compareKind
;
5103 const wxChar
*result
= dt2
.ParseFormat(s
, formatTestFormats
[n
].format
);
5106 // converion failed - should it have?
5107 if ( kind
== CompareNone
)
5108 wxPuts(_T(" (ok)"));
5110 wxPuts(_T(" (ERROR: conversion back failed)"));
5114 // should have parsed the entire string
5115 wxPuts(_T(" (ERROR: conversion back stopped too soon)"));
5119 bool equal
= false; // suppress compilaer warning
5127 equal
= dt
.IsSameDate(dt2
);
5131 equal
= dt
.IsSameTime(dt2
);
5137 wxPrintf(_T(" (ERROR: got back '%s' instead of '%s')\n"),
5138 dt2
.Format().c_str(), dt
.Format().c_str());
5142 wxPuts(_T(" (ok)"));
5149 // test text -> wxDateTime conversion
5150 static void TestTimeParse()
5152 wxPuts(_T("\n*** wxDateTime parse test ***"));
5154 struct ParseTestData
5156 const wxChar
*format
;
5161 static const ParseTestData parseTestDates
[] =
5163 { _T("Sat, 18 Dec 1999 00:46:40 +0100"), { 18, wxDateTime::Dec
, 1999, 00, 46, 40 }, true },
5164 { _T("Wed, 1 Dec 1999 05:17:20 +0300"), { 1, wxDateTime::Dec
, 1999, 03, 17, 20 }, true },
5167 for ( size_t n
= 0; n
< WXSIZEOF(parseTestDates
); n
++ )
5169 const wxChar
*format
= parseTestDates
[n
].format
;
5171 wxPrintf(_T("%s => "), format
);
5174 if ( dt
.ParseRfc822Date(format
) )
5176 wxPrintf(_T("%s "), dt
.Format().c_str());
5178 if ( parseTestDates
[n
].good
)
5180 wxDateTime dtReal
= parseTestDates
[n
].date
.DT();
5187 wxPrintf(_T("(ERROR: should be %s)\n"), dtReal
.Format().c_str());
5192 wxPuts(_T("(ERROR: bad format)"));
5197 wxPrintf(_T("bad format (%s)\n"),
5198 parseTestDates
[n
].good
? "ERROR" : "ok");
5203 static void TestDateTimeInteractive()
5205 wxPuts(_T("\n*** interactive wxDateTime tests ***"));
5211 wxPrintf(_T("Enter a date: "));
5212 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
5215 // kill the last '\n'
5216 buf
[wxStrlen(buf
) - 1] = 0;
5219 const wxChar
*p
= dt
.ParseDate(buf
);
5222 wxPrintf(_T("ERROR: failed to parse the date '%s'.\n"), buf
);
5228 wxPrintf(_T("WARNING: parsed only first %u characters.\n"), p
- buf
);
5231 wxPrintf(_T("%s: day %u, week of month %u/%u, week of year %u\n"),
5232 dt
.Format(_T("%b %d, %Y")).c_str(),
5234 dt
.GetWeekOfMonth(wxDateTime::Monday_First
),
5235 dt
.GetWeekOfMonth(wxDateTime::Sunday_First
),
5236 dt
.GetWeekOfYear(wxDateTime::Monday_First
));
5239 wxPuts(_T("\n*** done ***"));
5242 static void TestTimeMS()
5244 wxPuts(_T("*** testing millisecond-resolution support in wxDateTime ***"));
5246 wxDateTime dt1
= wxDateTime::Now(),
5247 dt2
= wxDateTime::UNow();
5249 wxPrintf(_T("Now = %s\n"), dt1
.Format(_T("%H:%M:%S:%l")).c_str());
5250 wxPrintf(_T("UNow = %s\n"), dt2
.Format(_T("%H:%M:%S:%l")).c_str());
5251 wxPrintf(_T("Dummy loop: "));
5252 for ( int i
= 0; i
< 6000; i
++ )
5254 //for ( int j = 0; j < 10; j++ )
5257 s
.Printf(_T("%g"), sqrt(i
));
5263 wxPuts(_T(", done"));
5266 dt2
= wxDateTime::UNow();
5267 wxPrintf(_T("UNow = %s\n"), dt2
.Format(_T("%H:%M:%S:%l")).c_str());
5269 wxPrintf(_T("Loop executed in %s ms\n"), (dt2
- dt1
).Format(_T("%l")).c_str());
5271 wxPuts(_T("\n*** done ***"));
5274 static void TestTimeArithmetics()
5276 wxPuts(_T("\n*** testing arithmetic operations on wxDateTime ***"));
5278 static const struct ArithmData
5280 ArithmData(const wxDateSpan
& sp
, const wxChar
*nam
)
5281 : span(sp
), name(nam
) { }
5285 } testArithmData
[] =
5287 ArithmData(wxDateSpan::Day(), _T("day")),
5288 ArithmData(wxDateSpan::Week(), _T("week")),
5289 ArithmData(wxDateSpan::Month(), _T("month")),
5290 ArithmData(wxDateSpan::Year(), _T("year")),
5291 ArithmData(wxDateSpan(1, 2, 3, 4), _T("year, 2 months, 3 weeks, 4 days")),
5294 wxDateTime
dt(29, wxDateTime::Dec
, 1999), dt1
, dt2
;
5296 for ( size_t n
= 0; n
< WXSIZEOF(testArithmData
); n
++ )
5298 wxDateSpan span
= testArithmData
[n
].span
;
5302 const wxChar
*name
= testArithmData
[n
].name
;
5303 wxPrintf(_T("%s + %s = %s, %s - %s = %s\n"),
5304 dt
.FormatISODate().c_str(), name
, dt1
.FormatISODate().c_str(),
5305 dt
.FormatISODate().c_str(), name
, dt2
.FormatISODate().c_str());
5307 wxPrintf(_T("Going back: %s"), (dt1
- span
).FormatISODate().c_str());
5308 if ( dt1
- span
== dt
)
5310 wxPuts(_T(" (ok)"));
5314 wxPrintf(_T(" (ERROR: should be %s)\n"), dt
.FormatISODate().c_str());
5317 wxPrintf(_T("Going forward: %s"), (dt2
+ span
).FormatISODate().c_str());
5318 if ( dt2
+ span
== dt
)
5320 wxPuts(_T(" (ok)"));
5324 wxPrintf(_T(" (ERROR: should be %s)\n"), dt
.FormatISODate().c_str());
5327 wxPrintf(_T("Double increment: %s"), (dt2
+ 2*span
).FormatISODate().c_str());
5328 if ( dt2
+ 2*span
== dt1
)
5330 wxPuts(_T(" (ok)"));
5334 wxPrintf(_T(" (ERROR: should be %s)\n"), dt2
.FormatISODate().c_str());
5337 wxPuts(wxEmptyString
);
5341 static void TestTimeHolidays()
5343 wxPuts(_T("\n*** testing wxDateTimeHolidayAuthority ***\n"));
5345 wxDateTime::Tm tm
= wxDateTime(29, wxDateTime::May
, 2000).GetTm();
5346 wxDateTime
dtStart(1, tm
.mon
, tm
.year
),
5347 dtEnd
= dtStart
.GetLastMonthDay();
5349 wxDateTimeArray hol
;
5350 wxDateTimeHolidayAuthority::GetHolidaysInRange(dtStart
, dtEnd
, hol
);
5352 const wxChar
*format
= _T("%d-%b-%Y (%a)");
5354 wxPrintf(_T("All holidays between %s and %s:\n"),
5355 dtStart
.Format(format
).c_str(), dtEnd
.Format(format
).c_str());
5357 size_t count
= hol
.GetCount();
5358 for ( size_t n
= 0; n
< count
; n
++ )
5360 wxPrintf(_T("\t%s\n"), hol
[n
].Format(format
).c_str());
5363 wxPuts(wxEmptyString
);
5366 static void TestTimeZoneBug()
5368 wxPuts(_T("\n*** testing for DST/timezone bug ***\n"));
5370 wxDateTime date
= wxDateTime(1, wxDateTime::Mar
, 2000);
5371 for ( int i
= 0; i
< 31; i
++ )
5373 wxPrintf(_T("Date %s: week day %s.\n"),
5374 date
.Format(_T("%d-%m-%Y")).c_str(),
5375 date
.GetWeekDayName(date
.GetWeekDay()).c_str());
5377 date
+= wxDateSpan::Day();
5380 wxPuts(wxEmptyString
);
5383 static void TestTimeSpanFormat()
5385 wxPuts(_T("\n*** wxTimeSpan tests ***"));
5387 static const wxChar
*formats
[] =
5389 _T("(default) %H:%M:%S"),
5390 _T("%E weeks and %D days"),
5391 _T("%l milliseconds"),
5392 _T("(with ms) %H:%M:%S:%l"),
5393 _T("100%% of minutes is %M"), // test "%%"
5394 _T("%D days and %H hours"),
5395 _T("or also %S seconds"),
5398 wxTimeSpan
ts1(1, 2, 3, 4),
5400 for ( size_t n
= 0; n
< WXSIZEOF(formats
); n
++ )
5402 wxPrintf(_T("ts1 = %s\tts2 = %s\n"),
5403 ts1
.Format(formats
[n
]).c_str(),
5404 ts2
.Format(formats
[n
]).c_str());
5407 wxPuts(wxEmptyString
);
5410 #endif // TEST_DATETIME
5412 // ----------------------------------------------------------------------------
5413 // wxTextInput/OutputStream
5414 // ----------------------------------------------------------------------------
5416 #ifdef TEST_TEXTSTREAM
5418 #include "wx/txtstrm.h"
5419 #include "wx/wfstream.h"
5421 static void TestTextInputStream()
5423 wxPuts(_T("\n*** wxTextInputStream test ***"));
5425 wxString filename
= _T("testdata.fc");
5426 wxFileInputStream
fsIn(filename
);
5429 wxPuts(_T("ERROR: couldn't open file."));
5433 wxTextInputStream
tis(fsIn
);
5438 const wxString s
= tis
.ReadLine();
5440 // line could be non empty if the last line of the file isn't
5441 // terminated with EOL
5442 if ( fsIn
.Eof() && s
.empty() )
5445 wxPrintf(_T("Line %d: %s\n"), line
++, s
.c_str());
5450 #endif // TEST_TEXTSTREAM
5452 // ----------------------------------------------------------------------------
5454 // ----------------------------------------------------------------------------
5458 #include "wx/thread.h"
5460 static size_t gs_counter
= (size_t)-1;
5461 static wxCriticalSection gs_critsect
;
5462 static wxSemaphore gs_cond
;
5464 class MyJoinableThread
: public wxThread
5467 MyJoinableThread(size_t n
) : wxThread(wxTHREAD_JOINABLE
)
5468 { m_n
= n
; Create(); }
5470 // thread execution starts here
5471 virtual ExitCode
Entry();
5477 wxThread::ExitCode
MyJoinableThread::Entry()
5479 unsigned long res
= 1;
5480 for ( size_t n
= 1; n
< m_n
; n
++ )
5484 // it's a loooong calculation :-)
5488 return (ExitCode
)res
;
5491 class MyDetachedThread
: public wxThread
5494 MyDetachedThread(size_t n
, wxChar ch
)
5498 m_cancelled
= false;
5503 // thread execution starts here
5504 virtual ExitCode
Entry();
5507 virtual void OnExit();
5510 size_t m_n
; // number of characters to write
5511 wxChar m_ch
; // character to write
5513 bool m_cancelled
; // false if we exit normally
5516 wxThread::ExitCode
MyDetachedThread::Entry()
5519 wxCriticalSectionLocker
lock(gs_critsect
);
5520 if ( gs_counter
== (size_t)-1 )
5526 for ( size_t n
= 0; n
< m_n
; n
++ )
5528 if ( TestDestroy() )
5538 wxThread::Sleep(100);
5544 void MyDetachedThread::OnExit()
5546 wxLogTrace(_T("thread"), _T("Thread %ld is in OnExit"), GetId());
5548 wxCriticalSectionLocker
lock(gs_critsect
);
5549 if ( !--gs_counter
&& !m_cancelled
)
5553 static void TestDetachedThreads()
5555 wxPuts(_T("\n*** Testing detached threads ***"));
5557 static const size_t nThreads
= 3;
5558 MyDetachedThread
*threads
[nThreads
];
5560 for ( n
= 0; n
< nThreads
; n
++ )
5562 threads
[n
] = new MyDetachedThread(10, 'A' + n
);
5565 threads
[0]->SetPriority(WXTHREAD_MIN_PRIORITY
);
5566 threads
[1]->SetPriority(WXTHREAD_MAX_PRIORITY
);
5568 for ( n
= 0; n
< nThreads
; n
++ )
5573 // wait until all threads terminate
5576 wxPuts(wxEmptyString
);
5579 static void TestJoinableThreads()
5581 wxPuts(_T("\n*** Testing a joinable thread (a loooong calculation...) ***"));
5583 // calc 10! in the background
5584 MyJoinableThread
thread(10);
5587 wxPrintf(_T("\nThread terminated with exit code %lu.\n"),
5588 (unsigned long)thread
.Wait());
5591 static void TestThreadSuspend()
5593 wxPuts(_T("\n*** Testing thread suspend/resume functions ***"));
5595 MyDetachedThread
*thread
= new MyDetachedThread(15, 'X');
5599 // this is for this demo only, in a real life program we'd use another
5600 // condition variable which would be signaled from wxThread::Entry() to
5601 // tell us that the thread really started running - but here just wait a
5602 // bit and hope that it will be enough (the problem is, of course, that
5603 // the thread might still not run when we call Pause() which will result
5605 wxThread::Sleep(300);
5607 for ( size_t n
= 0; n
< 3; n
++ )
5611 wxPuts(_T("\nThread suspended"));
5614 // don't sleep but resume immediately the first time
5615 wxThread::Sleep(300);
5617 wxPuts(_T("Going to resume the thread"));
5622 wxPuts(_T("Waiting until it terminates now"));
5624 // wait until the thread terminates
5627 wxPuts(wxEmptyString
);
5630 static void TestThreadDelete()
5632 // As above, using Sleep() is only for testing here - we must use some
5633 // synchronisation object instead to ensure that the thread is still
5634 // running when we delete it - deleting a detached thread which already
5635 // terminated will lead to a crash!
5637 wxPuts(_T("\n*** Testing thread delete function ***"));
5639 MyDetachedThread
*thread0
= new MyDetachedThread(30, 'W');
5643 wxPuts(_T("\nDeleted a thread which didn't start to run yet."));
5645 MyDetachedThread
*thread1
= new MyDetachedThread(30, 'Y');
5649 wxThread::Sleep(300);
5653 wxPuts(_T("\nDeleted a running thread."));
5655 MyDetachedThread
*thread2
= new MyDetachedThread(30, 'Z');
5659 wxThread::Sleep(300);
5665 wxPuts(_T("\nDeleted a sleeping thread."));
5667 MyJoinableThread
thread3(20);
5672 wxPuts(_T("\nDeleted a joinable thread."));
5674 MyJoinableThread
thread4(2);
5677 wxThread::Sleep(300);
5681 wxPuts(_T("\nDeleted a joinable thread which already terminated."));
5683 wxPuts(wxEmptyString
);
5686 class MyWaitingThread
: public wxThread
5689 MyWaitingThread( wxMutex
*mutex
, wxCondition
*condition
)
5692 m_condition
= condition
;
5697 virtual ExitCode
Entry()
5699 wxPrintf(_T("Thread %lu has started running.\n"), GetId());
5704 wxPrintf(_T("Thread %lu starts to wait...\n"), GetId());
5708 m_condition
->Wait();
5711 wxPrintf(_T("Thread %lu finished to wait, exiting.\n"), GetId());
5719 wxCondition
*m_condition
;
5722 static void TestThreadConditions()
5725 wxCondition
condition(mutex
);
5727 // otherwise its difficult to understand which log messages pertain to
5729 //wxLogTrace(_T("thread"), _T("Local condition var is %08x, gs_cond = %08x"),
5730 // condition.GetId(), gs_cond.GetId());
5732 // create and launch threads
5733 MyWaitingThread
*threads
[10];
5736 for ( n
= 0; n
< WXSIZEOF(threads
); n
++ )
5738 threads
[n
] = new MyWaitingThread( &mutex
, &condition
);
5741 for ( n
= 0; n
< WXSIZEOF(threads
); n
++ )
5746 // wait until all threads run
5747 wxPuts(_T("Main thread is waiting for the other threads to start"));
5750 size_t nRunning
= 0;
5751 while ( nRunning
< WXSIZEOF(threads
) )
5757 wxPrintf(_T("Main thread: %u already running\n"), nRunning
);
5761 wxPuts(_T("Main thread: all threads started up."));
5764 wxThread::Sleep(500);
5767 // now wake one of them up
5768 wxPrintf(_T("Main thread: about to signal the condition.\n"));
5773 wxThread::Sleep(200);
5775 // wake all the (remaining) threads up, so that they can exit
5776 wxPrintf(_T("Main thread: about to broadcast the condition.\n"));
5778 condition
.Broadcast();
5780 // give them time to terminate (dirty!)
5781 wxThread::Sleep(500);
5784 #include "wx/utils.h"
5786 class MyExecThread
: public wxThread
5789 MyExecThread(const wxString
& command
) : wxThread(wxTHREAD_JOINABLE
),
5795 virtual ExitCode
Entry()
5797 return (ExitCode
)wxExecute(m_command
, wxEXEC_SYNC
);
5804 static void TestThreadExec()
5806 wxPuts(_T("*** Testing wxExecute interaction with threads ***\n"));
5808 MyExecThread
thread(_T("true"));
5811 wxPrintf(_T("Main program exit code: %ld.\n"),
5812 wxExecute(_T("false"), wxEXEC_SYNC
));
5814 wxPrintf(_T("Thread exit code: %ld.\n"), (long)thread
.Wait());
5818 #include "wx/datetime.h"
5820 class MySemaphoreThread
: public wxThread
5823 MySemaphoreThread(int i
, wxSemaphore
*sem
)
5824 : wxThread(wxTHREAD_JOINABLE
),
5831 virtual ExitCode
Entry()
5833 wxPrintf(_T("%s: Thread #%d (%ld) starting to wait for semaphore...\n"),
5834 wxDateTime::Now().FormatTime().c_str(), m_i
, (long)GetId());
5838 wxPrintf(_T("%s: Thread #%d (%ld) acquired the semaphore.\n"),
5839 wxDateTime::Now().FormatTime().c_str(), m_i
, (long)GetId());
5843 wxPrintf(_T("%s: Thread #%d (%ld) releasing the semaphore.\n"),
5844 wxDateTime::Now().FormatTime().c_str(), m_i
, (long)GetId());
5856 WX_DEFINE_ARRAY_PTR(wxThread
*, ArrayThreads
);
5858 static void TestSemaphore()
5860 wxPuts(_T("*** Testing wxSemaphore class. ***"));
5862 static const int SEM_LIMIT
= 3;
5864 wxSemaphore
sem(SEM_LIMIT
, SEM_LIMIT
);
5865 ArrayThreads threads
;
5867 for ( int i
= 0; i
< 3*SEM_LIMIT
; i
++ )
5869 threads
.Add(new MySemaphoreThread(i
, &sem
));
5870 threads
.Last()->Run();
5873 for ( size_t n
= 0; n
< threads
.GetCount(); n
++ )
5880 #endif // TEST_THREADS
5882 // ----------------------------------------------------------------------------
5884 // ----------------------------------------------------------------------------
5886 #ifdef TEST_SNGLINST
5887 #include "wx/snglinst.h"
5888 #endif // TEST_SNGLINST
5890 int main(int argc
, char **argv
)
5892 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE
, "program");
5894 wxInitializer initializer
;
5897 fprintf(stderr
, "Failed to initialize the wxWindows library, aborting.");
5902 #ifdef TEST_SNGLINST
5903 wxSingleInstanceChecker checker
;
5904 if ( checker
.Create(_T(".wxconsole.lock")) )
5906 if ( checker
.IsAnotherRunning() )
5908 wxPrintf(_T("Another instance of the program is running, exiting.\n"));
5913 // wait some time to give time to launch another instance
5914 wxPrintf(_T("Press \"Enter\" to continue..."));
5917 else // failed to create
5919 wxPrintf(_T("Failed to init wxSingleInstanceChecker.\n"));
5921 #endif // TEST_SNGLINST
5925 #endif // TEST_CHARSET
5928 TestCmdLineConvert();
5930 #if wxUSE_CMDLINE_PARSER
5931 static const wxCmdLineEntryDesc cmdLineDesc
[] =
5933 { wxCMD_LINE_SWITCH
, _T("h"), _T("help"), _T("show this help message"),
5934 wxCMD_LINE_VAL_NONE
, wxCMD_LINE_OPTION_HELP
},
5935 { wxCMD_LINE_SWITCH
, _T("v"), _T("verbose"), _T("be verbose") },
5936 { wxCMD_LINE_SWITCH
, _T("q"), _T("quiet"), _T("be quiet") },
5938 { wxCMD_LINE_OPTION
, _T("o"), _T("output"), _T("output file") },
5939 { wxCMD_LINE_OPTION
, _T("i"), _T("input"), _T("input dir") },
5940 { wxCMD_LINE_OPTION
, _T("s"), _T("size"), _T("output block size"),
5941 wxCMD_LINE_VAL_NUMBER
},
5942 { wxCMD_LINE_OPTION
, _T("d"), _T("date"), _T("output file date"),
5943 wxCMD_LINE_VAL_DATE
},
5945 { wxCMD_LINE_PARAM
, NULL
, NULL
, _T("input file"),
5946 wxCMD_LINE_VAL_STRING
, wxCMD_LINE_PARAM_MULTIPLE
},
5952 wxChar
**wargv
= new wxChar
*[argc
+ 1];
5957 for (n
= 0; n
< argc
; n
++ )
5959 wxMB2WXbuf warg
= wxConvertMB2WX(argv
[n
]);
5960 wargv
[n
] = wxStrdup(warg
);
5967 #endif // wxUSE_UNICODE
5969 wxCmdLineParser
parser(cmdLineDesc
, argc
, argv
);
5973 for ( int n
= 0; n
< argc
; n
++ )
5978 #endif // wxUSE_UNICODE
5980 parser
.AddOption(_T("project_name"), _T(""), _T("full path to project file"),
5981 wxCMD_LINE_VAL_STRING
,
5982 wxCMD_LINE_OPTION_MANDATORY
| wxCMD_LINE_NEEDS_SEPARATOR
);
5984 switch ( parser
.Parse() )
5987 wxLogMessage(_T("Help was given, terminating."));
5991 ShowCmdLine(parser
);
5995 wxLogMessage(_T("Syntax error detected, aborting."));
5998 #endif // wxUSE_CMDLINE_PARSER
6000 #endif // TEST_CMDLINE
6010 #ifdef TEST_DLLLOADER
6012 #endif // TEST_DLLLOADER
6016 #endif // TEST_ENVIRON
6020 #endif // TEST_EXECUTE
6022 #ifdef TEST_FILECONF
6024 #endif // TEST_FILECONF
6033 #endif // TEST_LOCALE
6036 wxPuts(_T("*** Testing wxLog ***"));
6039 for ( size_t n
= 0; n
< 8000; n
++ )
6041 s
<< (wxChar
)(_T('A') + (n
% 26));
6044 wxLogWarning(_T("The length of the string is %lu"),
6045 (unsigned long)s
.length());
6048 msg
.Printf(_T("A very very long message: '%s', the end!\n"), s
.c_str());
6050 // this one shouldn't be truncated
6053 // but this one will because log functions use fixed size buffer
6054 // (note that it doesn't need '\n' at the end neither - will be added
6056 wxLogMessage(_T("A very very long message 2: '%s', the end!"), s
.c_str());
6065 #ifdef TEST_FILENAME
6066 TestFileNameConstruction();
6067 TestFileNameMakeRelative();
6068 TestFileNameMakeAbsolute();
6069 TestFileNameSplit();
6072 TestFileNameDirManip();
6073 TestFileNameComparison();
6074 TestFileNameOperations();
6075 #endif // TEST_FILENAME
6077 #ifdef TEST_FILETIME
6082 #endif // TEST_FILETIME
6085 wxLog::AddTraceMask(FTP_TRACE_MASK
);
6086 if ( TestFtpConnect() )
6096 #if TEST_INTERACTIVE
6097 TestFtpInteractive();
6100 //else: connecting to the FTP server failed
6113 #endif // TEST_HASHMAP
6117 #endif // TEST_HASHSET
6120 wxLog::AddTraceMask(_T("mime"));
6124 TestMimeAssociate();
6129 #ifdef TEST_INFO_FUNCTIONS
6134 #if TEST_INTERACTIVE
6138 #endif // TEST_INFO_FUNCTIONS
6140 #ifdef TEST_PATHLIST
6142 #endif // TEST_PATHLIST
6150 #endif // TEST_PRINTF
6157 #endif // TEST_REGCONF
6160 // TODO: write a real test using src/regex/tests file
6164 TestRegExSubmatch();
6165 TestRegExReplacement();
6167 #if TEST_INTERACTIVE
6168 TestRegExInteractive();
6171 #endif // TEST_REGEX
6173 #ifdef TEST_REGISTRY
6175 TestRegistryAssociation();
6176 #endif // TEST_REGISTRY
6181 #endif // TEST_SOCKETS
6188 #endif // TEST_STREAMS
6190 #ifdef TEST_TEXTSTREAM
6191 TestTextInputStream();
6192 #endif // TEST_TEXTSTREAM
6195 int nCPUs
= wxThread::GetCPUCount();
6196 wxPrintf(_T("This system has %d CPUs\n"), nCPUs
);
6198 wxThread::SetConcurrency(nCPUs
);
6200 TestJoinableThreads();
6203 TestJoinableThreads();
6204 TestDetachedThreads();
6205 TestThreadSuspend();
6207 TestThreadConditions();
6211 #endif // TEST_THREADS
6215 #endif // TEST_TIMER
6217 #ifdef TEST_DATETIME
6229 TestTimeArithmetics();
6232 TestTimeSpanFormat();
6238 #if TEST_INTERACTIVE
6239 TestDateTimeInteractive();
6241 #endif // TEST_DATETIME
6243 #ifdef TEST_SCOPEGUARD
6248 wxPuts(_T("Sleeping for 3 seconds... z-z-z-z-z..."));
6250 #endif // TEST_USLEEP
6255 #endif // TEST_VCARD
6259 #endif // TEST_VOLUME
6262 TestUnicodeTextFileRead();
6264 TestUnicodeToFromAscii();
6266 #endif // TEST_UNICODE
6270 TestEncodingConverter();
6271 #endif // TEST_WCHAR
6274 TestZipStreamRead();
6275 TestZipFileSystem();
6279 TestZlibStreamWrite();
6280 TestZlibStreamRead();