1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/console/console.cpp
3 // Purpose: A sample console (as opposed to GUI) program using wxWidgets
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"
28 #include "wx/apptrait.h"
29 #include "wx/platinfo.h"
31 // without this pragma, the stupid compiler precompiles #defines below so that
32 // changing them doesn't "take place" later!
37 // ----------------------------------------------------------------------------
38 // conditional compilation
39 // ----------------------------------------------------------------------------
42 A note about all these conditional compilation macros: this file is used
43 both as a test suite for various non-GUI wxWidgets classes and as a
44 scratchpad for quick tests. So there are two compilation modes: if you
45 define TEST_ALL all tests are run, otherwise you may enable the individual
46 tests individually in the "#else" branch below.
49 // what to test (in alphabetic order)? Define TEST_ALL to 0 to do a single
50 // test, define it to 1 to do all tests.
65 // #define TEST_FTP --FIXME! (RN)
66 #define TEST_INFO_FUNCTIONS
77 #define TEST_SCOPEGUARD
79 // #define TEST_SOCKETS --FIXME! (RN)
80 #define TEST_STACKWALKER
83 #define TEST_TEXTSTREAM
86 // #define TEST_VCARD -- don't enable this (VZ)
87 // #define TEST_VOLUME --FIXME! (RN)
104 #define TEST_INFO_FUNCTIONS
107 #define TEST_STDPATHS
114 // some tests are interactive, define this to run them
115 #ifdef TEST_INTERACTIVE
116 #undef TEST_INTERACTIVE
118 #define TEST_INTERACTIVE 1
120 #define TEST_INTERACTIVE 0
123 // ============================================================================
125 // ============================================================================
127 // ----------------------------------------------------------------------------
129 // ----------------------------------------------------------------------------
131 #if defined(TEST_SOCKETS)
133 // replace TABs with \t and CRs with \n
134 static wxString
MakePrintable(const wxChar
*s
)
137 (void)str
.Replace(_T("\t"), _T("\\t"));
138 (void)str
.Replace(_T("\n"), _T("\\n"));
139 (void)str
.Replace(_T("\r"), _T("\\r"));
144 #endif // MakePrintable() is used
146 // ----------------------------------------------------------------------------
148 // ----------------------------------------------------------------------------
152 #include "wx/cmdline.h"
153 #include "wx/datetime.h"
155 #if wxUSE_CMDLINE_PARSER
157 static void ShowCmdLine(const wxCmdLineParser
& parser
)
159 wxString s
= _T("Command line parsed successfully:\nInput files: ");
161 size_t count
= parser
.GetParamCount();
162 for ( size_t param
= 0; param
< count
; param
++ )
164 s
<< parser
.GetParam(param
) << ' ';
168 << _T("Verbose:\t") << (parser
.Found(_T("v")) ? _T("yes") : _T("no")) << '\n'
169 << _T("Quiet:\t") << (parser
.Found(_T("q")) ? _T("yes") : _T("no")) << '\n';
174 if ( parser
.Found(_T("o"), &strVal
) )
175 s
<< _T("Output file:\t") << strVal
<< '\n';
176 if ( parser
.Found(_T("i"), &strVal
) )
177 s
<< _T("Input dir:\t") << strVal
<< '\n';
178 if ( parser
.Found(_T("s"), &lVal
) )
179 s
<< _T("Size:\t") << lVal
<< '\n';
180 if ( parser
.Found(_T("d"), &dt
) )
181 s
<< _T("Date:\t") << dt
.FormatISODate() << '\n';
182 if ( parser
.Found(_T("project_name"), &strVal
) )
183 s
<< _T("Project:\t") << strVal
<< '\n';
188 #endif // wxUSE_CMDLINE_PARSER
190 static void TestCmdLineConvert()
192 static const wxChar
*cmdlines
[] =
195 _T("-a \"-bstring 1\" -c\"string 2\" \"string 3\""),
196 _T("literal \\\" and \"\""),
199 for ( size_t n
= 0; n
< WXSIZEOF(cmdlines
); n
++ )
201 const wxChar
*cmdline
= cmdlines
[n
];
202 wxPrintf(_T("Parsing: %s\n"), cmdline
);
203 wxArrayString args
= wxCmdLineParser::ConvertStringToArgs(cmdline
);
205 size_t count
= args
.GetCount();
206 wxPrintf(_T("\targc = %u\n"), count
);
207 for ( size_t arg
= 0; arg
< count
; arg
++ )
209 wxPrintf(_T("\targv[%u] = %s\n"), arg
, args
[arg
].c_str());
214 #endif // TEST_CMDLINE
216 // ----------------------------------------------------------------------------
218 // ----------------------------------------------------------------------------
225 static const wxChar
*ROOTDIR
= _T("/");
226 static const wxChar
*TESTDIR
= _T("/usr/local/share");
227 #elif defined(__WXMSW__) || defined(__DOS__) || defined(__OS2__)
228 static const wxChar
*ROOTDIR
= _T("c:\\");
229 static const wxChar
*TESTDIR
= _T("d:\\");
231 #error "don't know where the root directory is"
234 static void TestDirEnumHelper(wxDir
& dir
,
235 int flags
= wxDIR_DEFAULT
,
236 const wxString
& filespec
= wxEmptyString
)
240 if ( !dir
.IsOpened() )
243 bool cont
= dir
.GetFirst(&filename
, filespec
, flags
);
246 wxPrintf(_T("\t%s\n"), filename
.c_str());
248 cont
= dir
.GetNext(&filename
);
251 wxPuts(wxEmptyString
);
256 static void TestDirEnum()
258 wxPuts(_T("*** Testing wxDir::GetFirst/GetNext ***"));
260 wxString cwd
= wxGetCwd();
261 if ( !wxDir::Exists(cwd
) )
263 wxPrintf(_T("ERROR: current directory '%s' doesn't exist?\n"), cwd
.c_str());
268 if ( !dir
.IsOpened() )
270 wxPrintf(_T("ERROR: failed to open current directory '%s'.\n"), cwd
.c_str());
274 wxPuts(_T("Enumerating everything in current directory:"));
275 TestDirEnumHelper(dir
);
277 wxPuts(_T("Enumerating really everything in current directory:"));
278 TestDirEnumHelper(dir
, wxDIR_DEFAULT
| wxDIR_DOTDOT
);
280 wxPuts(_T("Enumerating object files in current directory:"));
281 TestDirEnumHelper(dir
, wxDIR_DEFAULT
, _T("*.o*"));
283 wxPuts(_T("Enumerating directories in current directory:"));
284 TestDirEnumHelper(dir
, wxDIR_DIRS
);
286 wxPuts(_T("Enumerating files in current directory:"));
287 TestDirEnumHelper(dir
, wxDIR_FILES
);
289 wxPuts(_T("Enumerating files including hidden in current directory:"));
290 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
294 wxPuts(_T("Enumerating everything in root directory:"));
295 TestDirEnumHelper(dir
, wxDIR_DEFAULT
);
297 wxPuts(_T("Enumerating directories in root directory:"));
298 TestDirEnumHelper(dir
, wxDIR_DIRS
);
300 wxPuts(_T("Enumerating files in root directory:"));
301 TestDirEnumHelper(dir
, wxDIR_FILES
);
303 wxPuts(_T("Enumerating files including hidden in root directory:"));
304 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
306 wxPuts(_T("Enumerating files in non existing directory:"));
307 wxDir
dirNo(_T("nosuchdir"));
308 TestDirEnumHelper(dirNo
);
313 class DirPrintTraverser
: public wxDirTraverser
316 virtual wxDirTraverseResult
OnFile(const wxString
& WXUNUSED(filename
))
318 return wxDIR_CONTINUE
;
321 virtual wxDirTraverseResult
OnDir(const wxString
& dirname
)
323 wxString path
, name
, ext
;
324 wxSplitPath(dirname
, &path
, &name
, &ext
);
327 name
<< _T('.') << ext
;
330 for ( const wxChar
*p
= path
.c_str(); *p
; p
++ )
332 if ( wxIsPathSeparator(*p
) )
336 wxPrintf(_T("%s%s\n"), indent
.c_str(), name
.c_str());
338 return wxDIR_CONTINUE
;
342 static void TestDirTraverse()
344 wxPuts(_T("*** Testing wxDir::Traverse() ***"));
348 size_t n
= wxDir::GetAllFiles(TESTDIR
, &files
);
349 wxPrintf(_T("There are %u files under '%s'\n"), n
, TESTDIR
);
352 wxPrintf(_T("First one is '%s'\n"), files
[0u].c_str());
353 wxPrintf(_T(" last one is '%s'\n"), files
[n
- 1].c_str());
356 // enum again with custom traverser
357 wxPuts(_T("Now enumerating directories:"));
359 DirPrintTraverser traverser
;
360 dir
.Traverse(traverser
, wxEmptyString
, wxDIR_DIRS
| wxDIR_HIDDEN
);
365 static void TestDirExists()
367 wxPuts(_T("*** Testing wxDir::Exists() ***"));
369 static const wxChar
*dirnames
[] =
372 #if defined(__WXMSW__)
375 _T("\\\\share\\file"),
379 _T("c:\\autoexec.bat"),
380 #elif defined(__UNIX__)
389 for ( size_t n
= 0; n
< WXSIZEOF(dirnames
); n
++ )
391 wxPrintf(_T("%-40s: %s\n"),
393 wxDir::Exists(dirnames
[n
]) ? _T("exists")
394 : _T("doesn't exist"));
402 // ----------------------------------------------------------------------------
404 // ----------------------------------------------------------------------------
408 #include "wx/dynlib.h"
410 static void TestDllLoad()
412 #if defined(__WXMSW__)
413 static const wxChar
*LIB_NAME
= _T("kernel32.dll");
414 static const wxChar
*FUNC_NAME
= _T("lstrlenA");
415 #elif defined(__UNIX__)
416 // weird: using just libc.so does *not* work!
417 static const wxChar
*LIB_NAME
= _T("/lib/libc.so.6");
418 static const wxChar
*FUNC_NAME
= _T("strlen");
420 #error "don't know how to test wxDllLoader on this platform"
423 wxPuts(_T("*** testing basic wxDynamicLibrary functions ***\n"));
425 wxDynamicLibrary
lib(LIB_NAME
);
426 if ( !lib
.IsLoaded() )
428 wxPrintf(_T("ERROR: failed to load '%s'.\n"), LIB_NAME
);
432 typedef int (wxSTDCALL
*wxStrlenType
)(const char *);
433 wxStrlenType pfnStrlen
= (wxStrlenType
)lib
.GetSymbol(FUNC_NAME
);
436 wxPrintf(_T("ERROR: function '%s' wasn't found in '%s'.\n"),
437 FUNC_NAME
, LIB_NAME
);
441 wxPrintf(_T("Calling %s dynamically loaded from %s "),
442 FUNC_NAME
, LIB_NAME
);
444 if ( pfnStrlen("foo") != 3 )
446 wxPrintf(_T("ERROR: loaded function is not wxStrlen()!\n"));
450 wxPuts(_T("... ok"));
455 static const wxChar
*FUNC_NAME_AW
= _T("lstrlen");
457 typedef int (wxSTDCALL
*wxStrlenTypeAorW
)(const wxChar
*);
459 pfnStrlenAorW
= (wxStrlenTypeAorW
)lib
.GetSymbolAorW(FUNC_NAME_AW
);
460 if ( !pfnStrlenAorW
)
462 wxPrintf(_T("ERROR: function '%s' wasn't found in '%s'.\n"),
463 FUNC_NAME_AW
, LIB_NAME
);
467 if ( pfnStrlenAorW(_T("foobar")) != 6 )
469 wxPrintf(_T("ERROR: loaded function is not wxStrlen()!\n"));
476 #if defined(__WXMSW__) || defined(__UNIX__)
478 static void TestDllListLoaded()
480 wxPuts(_T("*** testing wxDynamicLibrary::ListLoaded() ***\n"));
482 puts("\nLoaded modules:");
483 wxDynamicLibraryDetailsArray dlls
= wxDynamicLibrary::ListLoaded();
484 const size_t count
= dlls
.GetCount();
485 for ( size_t n
= 0; n
< count
; ++n
)
487 const wxDynamicLibraryDetails
& details
= dlls
[n
];
488 printf("%-45s", details
.GetPath().mb_str());
492 if ( details
.GetAddress(&addr
, &len
) )
494 printf(" %08lx:%08lx",
495 (unsigned long)addr
, (unsigned long)((char *)addr
+ len
));
498 printf(" %s\n", details
.GetVersion().mb_str());
504 #endif // TEST_DYNLIB
506 // ----------------------------------------------------------------------------
508 // ----------------------------------------------------------------------------
512 #include "wx/utils.h"
514 static wxString
MyGetEnv(const wxString
& var
)
517 if ( !wxGetEnv(var
, &val
) )
520 val
= wxString(_T('\'')) + val
+ _T('\'');
525 static void TestEnvironment()
527 const wxChar
*var
= _T("wxTestVar");
529 wxPuts(_T("*** testing environment access functions ***"));
531 wxPrintf(_T("Initially getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
532 wxSetEnv(var
, _T("value for wxTestVar"));
533 wxPrintf(_T("After wxSetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
534 wxSetEnv(var
, _T("another value"));
535 wxPrintf(_T("After 2nd wxSetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
537 wxPrintf(_T("After wxUnsetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
538 wxPrintf(_T("PATH = %s\n"), MyGetEnv(_T("PATH")).c_str());
541 #endif // TEST_ENVIRON
543 // ----------------------------------------------------------------------------
545 // ----------------------------------------------------------------------------
549 #include "wx/utils.h"
551 static void TestExecute()
553 wxPuts(_T("*** testing wxExecute ***"));
556 #define COMMAND "cat -n ../../Makefile" // "echo hi"
557 #define SHELL_COMMAND "echo hi from shell"
558 #define REDIRECT_COMMAND COMMAND // "date"
559 #elif defined(__WXMSW__)
560 #define COMMAND "command.com /c echo hi"
561 #define SHELL_COMMAND "echo hi"
562 #define REDIRECT_COMMAND COMMAND
564 #error "no command to exec"
567 wxPrintf(_T("Testing wxShell: "));
569 if ( wxShell(_T(SHELL_COMMAND
)) )
572 wxPuts(_T("ERROR."));
574 wxPrintf(_T("Testing wxExecute: "));
576 if ( wxExecute(_T(COMMAND
), true /* sync */) == 0 )
579 wxPuts(_T("ERROR."));
581 #if 0 // no, it doesn't work (yet?)
582 wxPrintf(_T("Testing async wxExecute: "));
584 if ( wxExecute(COMMAND
) != 0 )
585 wxPuts(_T("Ok (command launched)."));
587 wxPuts(_T("ERROR."));
590 wxPrintf(_T("Testing wxExecute with redirection:\n"));
591 wxArrayString output
;
592 if ( wxExecute(_T(REDIRECT_COMMAND
), output
) != 0 )
594 wxPuts(_T("ERROR."));
598 size_t count
= output
.GetCount();
599 for ( size_t n
= 0; n
< count
; n
++ )
601 wxPrintf(_T("\t%s\n"), output
[n
].c_str());
608 #endif // TEST_EXECUTE
610 // ----------------------------------------------------------------------------
612 // ----------------------------------------------------------------------------
617 #include "wx/ffile.h"
618 #include "wx/textfile.h"
620 static void TestFileRead()
622 wxPuts(_T("*** wxFile read test ***"));
624 wxFile
file(_T("testdata.fc"));
625 if ( file
.IsOpened() )
627 wxPrintf(_T("File length: %lu\n"), file
.Length());
629 wxPuts(_T("File dump:\n----------"));
631 static const size_t len
= 1024;
635 size_t nRead
= file
.Read(buf
, len
);
636 if ( nRead
== (size_t)wxInvalidOffset
)
638 wxPrintf(_T("Failed to read the file."));
642 fwrite(buf
, nRead
, 1, stdout
);
648 wxPuts(_T("----------"));
652 wxPrintf(_T("ERROR: can't open test file.\n"));
655 wxPuts(wxEmptyString
);
658 static void TestTextFileRead()
660 wxPuts(_T("*** wxTextFile read test ***"));
662 wxTextFile
file(_T("testdata.fc"));
665 wxPrintf(_T("Number of lines: %u\n"), file
.GetLineCount());
666 wxPrintf(_T("Last line: '%s'\n"), file
.GetLastLine().c_str());
670 wxPuts(_T("\nDumping the entire file:"));
671 for ( s
= file
.GetFirstLine(); !file
.Eof(); s
= file
.GetNextLine() )
673 wxPrintf(_T("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
675 wxPrintf(_T("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
677 wxPuts(_T("\nAnd now backwards:"));
678 for ( s
= file
.GetLastLine();
679 file
.GetCurrentLine() != 0;
680 s
= file
.GetPrevLine() )
682 wxPrintf(_T("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
684 wxPrintf(_T("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
688 wxPrintf(_T("ERROR: can't open '%s'\n"), file
.GetName());
691 wxPuts(wxEmptyString
);
694 static void TestFileCopy()
696 wxPuts(_T("*** Testing wxCopyFile ***"));
698 static const wxChar
*filename1
= _T("testdata.fc");
699 static const wxChar
*filename2
= _T("test2");
700 if ( !wxCopyFile(filename1
, filename2
) )
702 wxPuts(_T("ERROR: failed to copy file"));
706 wxFFile
f1(filename1
, _T("rb")),
707 f2(filename2
, _T("rb"));
709 if ( !f1
.IsOpened() || !f2
.IsOpened() )
711 wxPuts(_T("ERROR: failed to open file(s)"));
716 if ( !f1
.ReadAll(&s1
) || !f2
.ReadAll(&s2
) )
718 wxPuts(_T("ERROR: failed to read file(s)"));
722 if ( (s1
.length() != s2
.length()) ||
723 (memcmp(s1
.c_str(), s2
.c_str(), s1
.length()) != 0) )
725 wxPuts(_T("ERROR: copy error!"));
729 wxPuts(_T("File was copied ok."));
735 if ( !wxRemoveFile(filename2
) )
737 wxPuts(_T("ERROR: failed to remove the file"));
740 wxPuts(wxEmptyString
);
743 static void TestTempFile()
745 wxPuts(_T("*** wxTempFile test ***"));
748 if ( tmpFile
.Open(_T("test2")) && tmpFile
.Write(_T("the answer is 42")) )
750 if ( tmpFile
.Commit() )
751 wxPuts(_T("File committed."));
753 wxPuts(_T("ERROR: could't commit temp file."));
755 wxRemoveFile(_T("test2"));
758 wxPuts(wxEmptyString
);
763 // ----------------------------------------------------------------------------
765 // ----------------------------------------------------------------------------
769 #include "wx/confbase.h"
770 #include "wx/fileconf.h"
772 static const struct FileConfTestData
774 const wxChar
*name
; // value name
775 const wxChar
*value
; // the value from the file
778 { _T("value1"), _T("one") },
779 { _T("value2"), _T("two") },
780 { _T("novalue"), _T("default") },
783 static void TestFileConfRead()
785 wxPuts(_T("*** testing wxFileConfig loading/reading ***"));
787 wxFileConfig
fileconf(_T("test"), wxEmptyString
,
788 _T("testdata.fc"), wxEmptyString
,
789 wxCONFIG_USE_RELATIVE_PATH
);
791 // test simple reading
792 wxPuts(_T("\nReading config file:"));
793 wxString
defValue(_T("default")), value
;
794 for ( size_t n
= 0; n
< WXSIZEOF(fcTestData
); n
++ )
796 const FileConfTestData
& data
= fcTestData
[n
];
797 value
= fileconf
.Read(data
.name
, defValue
);
798 wxPrintf(_T("\t%s = %s "), data
.name
, value
.c_str());
799 if ( value
== data
.value
)
805 wxPrintf(_T("(ERROR: should be %s)\n"), data
.value
);
809 // test enumerating the entries
810 wxPuts(_T("\nEnumerating all root entries:"));
813 bool cont
= fileconf
.GetFirstEntry(name
, dummy
);
816 wxPrintf(_T("\t%s = %s\n"),
818 fileconf
.Read(name
.c_str(), _T("ERROR")).c_str());
820 cont
= fileconf
.GetNextEntry(name
, dummy
);
823 static const wxChar
*testEntry
= _T("TestEntry");
824 wxPrintf(_T("\nTesting deletion of newly created \"Test\" entry: "));
825 fileconf
.Write(testEntry
, _T("A value"));
826 fileconf
.DeleteEntry(testEntry
);
827 wxPrintf(fileconf
.HasEntry(testEntry
) ? _T("ERROR\n") : _T("ok\n"));
830 #endif // TEST_FILECONF
832 // ----------------------------------------------------------------------------
834 // ----------------------------------------------------------------------------
838 #include "wx/filename.h"
841 static void DumpFileName(const wxChar
*desc
, const wxFileName
& fn
)
845 wxString full
= fn
.GetFullPath();
847 wxString vol
, path
, name
, ext
;
848 wxFileName::SplitPath(full
, &vol
, &path
, &name
, &ext
);
850 wxPrintf(_T("'%s'-> vol '%s', path '%s', name '%s', ext '%s'\n"),
851 full
.c_str(), vol
.c_str(), path
.c_str(), name
.c_str(), ext
.c_str());
853 wxFileName::SplitPath(full
, &path
, &name
, &ext
);
854 wxPrintf(_T("or\t\t-> path '%s', name '%s', ext '%s'\n"),
855 path
.c_str(), name
.c_str(), ext
.c_str());
857 wxPrintf(_T("path is also:\t'%s'\n"), fn
.GetPath().c_str());
858 wxPrintf(_T("with volume: \t'%s'\n"),
859 fn
.GetPath(wxPATH_GET_VOLUME
).c_str());
860 wxPrintf(_T("with separator:\t'%s'\n"),
861 fn
.GetPath(wxPATH_GET_SEPARATOR
).c_str());
862 wxPrintf(_T("with both: \t'%s'\n"),
863 fn
.GetPath(wxPATH_GET_SEPARATOR
| wxPATH_GET_VOLUME
).c_str());
865 wxPuts(_T("The directories in the path are:"));
866 wxArrayString dirs
= fn
.GetDirs();
867 size_t count
= dirs
.GetCount();
868 for ( size_t n
= 0; n
< count
; n
++ )
870 wxPrintf(_T("\t%u: %s\n"), n
, dirs
[n
].c_str());
875 static void TestFileNameTemp()
877 wxPuts(_T("*** testing wxFileName temp file creation ***"));
879 static const wxChar
*tmpprefixes
[] =
887 _T("/tmp/foo/bar"), // this one must be an error
891 for ( size_t n
= 0; n
< WXSIZEOF(tmpprefixes
); n
++ )
893 wxString path
= wxFileName::CreateTempFileName(tmpprefixes
[n
]);
896 // "error" is not in upper case because it may be ok
897 wxPrintf(_T("Prefix '%s'\t-> error\n"), tmpprefixes
[n
]);
901 wxPrintf(_T("Prefix '%s'\t-> temp file '%s'\n"),
902 tmpprefixes
[n
], path
.c_str());
904 if ( !wxRemoveFile(path
) )
906 wxLogWarning(_T("Failed to remove temp file '%s'"),
913 static void TestFileNameDirManip()
915 // TODO: test AppendDir(), RemoveDir(), ...
918 static void TestFileNameComparison()
923 static void TestFileNameOperations()
928 static void TestFileNameCwd()
933 #endif // TEST_FILENAME
935 // ----------------------------------------------------------------------------
936 // wxFileName time functions
937 // ----------------------------------------------------------------------------
941 #include "wx/filename.h"
942 #include "wx/datetime.h"
944 static void TestFileGetTimes()
946 wxFileName
fn(_T("testdata.fc"));
948 wxDateTime dtAccess
, dtMod
, dtCreate
;
949 if ( !fn
.GetTimes(&dtAccess
, &dtMod
, &dtCreate
) )
951 wxPrintf(_T("ERROR: GetTimes() failed.\n"));
955 static const wxChar
*fmt
= _T("%Y-%b-%d %H:%M:%S");
957 wxPrintf(_T("File times for '%s':\n"), fn
.GetFullPath().c_str());
958 wxPrintf(_T("Creation: \t%s\n"), dtCreate
.Format(fmt
).c_str());
959 wxPrintf(_T("Last read: \t%s\n"), dtAccess
.Format(fmt
).c_str());
960 wxPrintf(_T("Last write: \t%s\n"), dtMod
.Format(fmt
).c_str());
965 static void TestFileSetTimes()
967 wxFileName
fn(_T("testdata.fc"));
971 wxPrintf(_T("ERROR: Touch() failed.\n"));
976 #endif // TEST_FILETIME
978 // ----------------------------------------------------------------------------
980 // ----------------------------------------------------------------------------
985 #include "wx/utils.h" // for wxSetEnv
987 static wxLocale
gs_localeDefault(wxLANGUAGE_ENGLISH
);
989 // find the name of the language from its value
990 static const wxChar
*GetLangName(int lang
)
992 static const wxChar
*languageNames
[] =
1002 _T("ARABIC_ALGERIA"),
1003 _T("ARABIC_BAHRAIN"),
1006 _T("ARABIC_JORDAN"),
1007 _T("ARABIC_KUWAIT"),
1008 _T("ARABIC_LEBANON"),
1010 _T("ARABIC_MOROCCO"),
1013 _T("ARABIC_SAUDI_ARABIA"),
1016 _T("ARABIC_TUNISIA"),
1023 _T("AZERI_CYRILLIC"),
1038 _T("CHINESE_SIMPLIFIED"),
1039 _T("CHINESE_TRADITIONAL"),
1040 _T("CHINESE_HONGKONG"),
1041 _T("CHINESE_MACAU"),
1042 _T("CHINESE_SINGAPORE"),
1043 _T("CHINESE_TAIWAN"),
1049 _T("DUTCH_BELGIAN"),
1053 _T("ENGLISH_AUSTRALIA"),
1054 _T("ENGLISH_BELIZE"),
1055 _T("ENGLISH_BOTSWANA"),
1056 _T("ENGLISH_CANADA"),
1057 _T("ENGLISH_CARIBBEAN"),
1058 _T("ENGLISH_DENMARK"),
1060 _T("ENGLISH_JAMAICA"),
1061 _T("ENGLISH_NEW_ZEALAND"),
1062 _T("ENGLISH_PHILIPPINES"),
1063 _T("ENGLISH_SOUTH_AFRICA"),
1064 _T("ENGLISH_TRINIDAD"),
1065 _T("ENGLISH_ZIMBABWE"),
1073 _T("FRENCH_BELGIAN"),
1074 _T("FRENCH_CANADIAN"),
1075 _T("FRENCH_LUXEMBOURG"),
1076 _T("FRENCH_MONACO"),
1082 _T("GERMAN_AUSTRIAN"),
1083 _T("GERMAN_BELGIUM"),
1084 _T("GERMAN_LIECHTENSTEIN"),
1085 _T("GERMAN_LUXEMBOURG"),
1103 _T("ITALIAN_SWISS"),
1108 _T("KASHMIRI_INDIA"),
1126 _T("MALAY_BRUNEI_DARUSSALAM"),
1127 _T("MALAY_MALAYSIA"),
1137 _T("NORWEGIAN_BOKMAL"),
1138 _T("NORWEGIAN_NYNORSK"),
1145 _T("PORTUGUESE_BRAZILIAN"),
1148 _T("RHAETO_ROMANCE"),
1151 _T("RUSSIAN_UKRAINE"),
1157 _T("SERBIAN_CYRILLIC"),
1158 _T("SERBIAN_LATIN"),
1159 _T("SERBO_CROATIAN"),
1170 _T("SPANISH_ARGENTINA"),
1171 _T("SPANISH_BOLIVIA"),
1172 _T("SPANISH_CHILE"),
1173 _T("SPANISH_COLOMBIA"),
1174 _T("SPANISH_COSTA_RICA"),
1175 _T("SPANISH_DOMINICAN_REPUBLIC"),
1176 _T("SPANISH_ECUADOR"),
1177 _T("SPANISH_EL_SALVADOR"),
1178 _T("SPANISH_GUATEMALA"),
1179 _T("SPANISH_HONDURAS"),
1180 _T("SPANISH_MEXICAN"),
1181 _T("SPANISH_MODERN"),
1182 _T("SPANISH_NICARAGUA"),
1183 _T("SPANISH_PANAMA"),
1184 _T("SPANISH_PARAGUAY"),
1186 _T("SPANISH_PUERTO_RICO"),
1187 _T("SPANISH_URUGUAY"),
1189 _T("SPANISH_VENEZUELA"),
1193 _T("SWEDISH_FINLAND"),
1211 _T("URDU_PAKISTAN"),
1213 _T("UZBEK_CYRILLIC"),
1226 if ( (size_t)lang
< WXSIZEOF(languageNames
) )
1227 return languageNames
[lang
];
1229 return _T("INVALID");
1232 static void TestDefaultLang()
1234 wxPuts(_T("*** Testing wxLocale::GetSystemLanguage ***"));
1236 static const wxChar
*langStrings
[] =
1238 NULL
, // system default
1245 _T("de_DE.iso88591"),
1247 _T("?"), // invalid lang spec
1248 _T("klingonese"), // I bet on some systems it does exist...
1251 wxPrintf(_T("The default system encoding is %s (%d)\n"),
1252 wxLocale::GetSystemEncodingName().c_str(),
1253 wxLocale::GetSystemEncoding());
1255 for ( size_t n
= 0; n
< WXSIZEOF(langStrings
); n
++ )
1257 const wxChar
*langStr
= langStrings
[n
];
1260 // FIXME: this doesn't do anything at all under Windows, we need
1261 // to create a new wxLocale!
1262 wxSetEnv(_T("LC_ALL"), langStr
);
1265 int lang
= gs_localeDefault
.GetSystemLanguage();
1266 wxPrintf(_T("Locale for '%s' is %s.\n"),
1267 langStr
? langStr
: _T("system default"), GetLangName(lang
));
1271 #endif // TEST_LOCALE
1273 // ----------------------------------------------------------------------------
1275 // ----------------------------------------------------------------------------
1279 #include "wx/mimetype.h"
1281 static void TestMimeEnum()
1283 wxPuts(_T("*** Testing wxMimeTypesManager::EnumAllFileTypes() ***\n"));
1285 wxArrayString mimetypes
;
1287 size_t count
= wxTheMimeTypesManager
->EnumAllFileTypes(mimetypes
);
1289 wxPrintf(_T("*** All %u known filetypes: ***\n"), count
);
1294 for ( size_t n
= 0; n
< count
; n
++ )
1296 wxFileType
*filetype
=
1297 wxTheMimeTypesManager
->GetFileTypeFromMimeType(mimetypes
[n
]);
1300 wxPrintf(_T("nothing known about the filetype '%s'!\n"),
1301 mimetypes
[n
].c_str());
1305 filetype
->GetDescription(&desc
);
1306 filetype
->GetExtensions(exts
);
1308 filetype
->GetIcon(NULL
);
1311 for ( size_t e
= 0; e
< exts
.GetCount(); e
++ )
1314 extsAll
<< _T(", ");
1318 wxPrintf(_T("\t%s: %s (%s)\n"),
1319 mimetypes
[n
].c_str(), desc
.c_str(), extsAll
.c_str());
1322 wxPuts(wxEmptyString
);
1325 static void TestMimeOverride()
1327 wxPuts(_T("*** Testing wxMimeTypesManager additional files loading ***\n"));
1329 static const wxChar
*mailcap
= _T("/tmp/mailcap");
1330 static const wxChar
*mimetypes
= _T("/tmp/mime.types");
1332 if ( wxFile::Exists(mailcap
) )
1333 wxPrintf(_T("Loading mailcap from '%s': %s\n"),
1335 wxTheMimeTypesManager
->ReadMailcap(mailcap
) ? _T("ok") : _T("ERROR"));
1337 wxPrintf(_T("WARN: mailcap file '%s' doesn't exist, not loaded.\n"),
1340 if ( wxFile::Exists(mimetypes
) )
1341 wxPrintf(_T("Loading mime.types from '%s': %s\n"),
1343 wxTheMimeTypesManager
->ReadMimeTypes(mimetypes
) ? _T("ok") : _T("ERROR"));
1345 wxPrintf(_T("WARN: mime.types file '%s' doesn't exist, not loaded.\n"),
1348 wxPuts(wxEmptyString
);
1351 static void TestMimeFilename()
1353 wxPuts(_T("*** Testing MIME type from filename query ***\n"));
1355 static const wxChar
*filenames
[] =
1363 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
1365 const wxString fname
= filenames
[n
];
1366 wxString ext
= fname
.AfterLast(_T('.'));
1367 wxFileType
*ft
= wxTheMimeTypesManager
->GetFileTypeFromExtension(ext
);
1370 wxPrintf(_T("WARNING: extension '%s' is unknown.\n"), ext
.c_str());
1375 if ( !ft
->GetDescription(&desc
) )
1376 desc
= _T("<no description>");
1379 if ( !ft
->GetOpenCommand(&cmd
,
1380 wxFileType::MessageParameters(fname
, wxEmptyString
)) )
1381 cmd
= _T("<no command available>");
1383 cmd
= wxString(_T('"')) + cmd
+ _T('"');
1385 wxPrintf(_T("To open %s (%s) do %s.\n"),
1386 fname
.c_str(), desc
.c_str(), cmd
.c_str());
1392 wxPuts(wxEmptyString
);
1395 static void TestMimeAssociate()
1397 wxPuts(_T("*** Testing creation of filetype association ***\n"));
1399 wxFileTypeInfo
ftInfo(
1400 _T("application/x-xyz"),
1401 _T("xyzview '%s'"), // open cmd
1402 _T(""), // print cmd
1403 _T("XYZ File"), // description
1404 _T(".xyz"), // extensions
1405 NULL
// end of extensions
1407 ftInfo
.SetShortDesc(_T("XYZFile")); // used under Win32 only
1409 wxFileType
*ft
= wxTheMimeTypesManager
->Associate(ftInfo
);
1412 wxPuts(_T("ERROR: failed to create association!"));
1416 // TODO: read it back
1420 wxPuts(wxEmptyString
);
1425 // ----------------------------------------------------------------------------
1426 // module dependencies feature
1427 // ----------------------------------------------------------------------------
1431 #include "wx/module.h"
1433 class wxTestModule
: public wxModule
1436 virtual bool OnInit() { wxPrintf(_T("Load module: %s\n"), GetClassInfo()->GetClassName()); return true; }
1437 virtual void OnExit() { wxPrintf(_T("Unload module: %s\n"), GetClassInfo()->GetClassName()); }
1440 class wxTestModuleA
: public wxTestModule
1445 DECLARE_DYNAMIC_CLASS(wxTestModuleA
)
1448 class wxTestModuleB
: public wxTestModule
1453 DECLARE_DYNAMIC_CLASS(wxTestModuleB
)
1456 class wxTestModuleC
: public wxTestModule
1461 DECLARE_DYNAMIC_CLASS(wxTestModuleC
)
1464 class wxTestModuleD
: public wxTestModule
1469 DECLARE_DYNAMIC_CLASS(wxTestModuleD
)
1472 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleC
, wxModule
)
1473 wxTestModuleC::wxTestModuleC()
1475 AddDependency(CLASSINFO(wxTestModuleD
));
1478 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleA
, wxModule
)
1479 wxTestModuleA::wxTestModuleA()
1481 AddDependency(CLASSINFO(wxTestModuleB
));
1482 AddDependency(CLASSINFO(wxTestModuleD
));
1485 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleD
, wxModule
)
1486 wxTestModuleD::wxTestModuleD()
1490 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleB
, wxModule
)
1491 wxTestModuleB::wxTestModuleB()
1493 AddDependency(CLASSINFO(wxTestModuleD
));
1494 AddDependency(CLASSINFO(wxTestModuleC
));
1497 #endif // TEST_MODULE
1499 // ----------------------------------------------------------------------------
1500 // misc information functions
1501 // ----------------------------------------------------------------------------
1503 #ifdef TEST_INFO_FUNCTIONS
1505 #include "wx/utils.h"
1507 #if TEST_INTERACTIVE
1508 static void TestDiskInfo()
1510 wxPuts(_T("*** Testing wxGetDiskSpace() ***"));
1514 wxChar pathname
[128];
1515 wxPrintf(_T("\nEnter a directory name: "));
1516 if ( !wxFgets(pathname
, WXSIZEOF(pathname
), stdin
) )
1519 // kill the last '\n'
1520 pathname
[wxStrlen(pathname
) - 1] = 0;
1522 wxLongLong total
, free
;
1523 if ( !wxGetDiskSpace(pathname
, &total
, &free
) )
1525 wxPuts(_T("ERROR: wxGetDiskSpace failed."));
1529 wxPrintf(_T("%sKb total, %sKb free on '%s'.\n"),
1530 (total
/ 1024).ToString().c_str(),
1531 (free
/ 1024).ToString().c_str(),
1536 #endif // TEST_INTERACTIVE
1538 static void TestOsInfo()
1540 wxPuts(_T("*** Testing OS info functions ***\n"));
1543 wxGetOsVersion(&major
, &minor
);
1544 wxPrintf(_T("Running under: %s, version %d.%d\n"),
1545 wxGetOsDescription().c_str(), major
, minor
);
1547 wxPrintf(_T("%ld free bytes of memory left.\n"), wxGetFreeMemory().ToLong());
1549 wxPrintf(_T("Host name is %s (%s).\n"),
1550 wxGetHostName().c_str(), wxGetFullHostName().c_str());
1552 wxPuts(wxEmptyString
);
1555 static void TestPlatformInfo()
1557 wxPuts(_T("*** Testing wxPlatformInfo functions ***\n"));
1559 // get this platform
1560 wxPlatformInfo plat
;
1562 wxPrintf(_T("Operating system family name is: %s\n"), plat
.GetOperatingSystemFamilyName().c_str());
1563 wxPrintf(_T("Operating system name is: %s\n"), plat
.GetOperatingSystemIdName().c_str());
1564 wxPrintf(_T("Port ID name is: %s\n"), plat
.GetPortIdName().c_str());
1565 wxPrintf(_T("Port ID short name is: %s\n"), plat
.GetPortIdShortName().c_str());
1566 wxPrintf(_T("Architecture is: %s\n"), plat
.GetArchName().c_str());
1567 wxPrintf(_T("Endianness is: %s\n"), plat
.GetEndiannessName().c_str());
1569 wxPuts(wxEmptyString
);
1572 static void TestUserInfo()
1574 wxPuts(_T("*** Testing user info functions ***\n"));
1576 wxPrintf(_T("User id is:\t%s\n"), wxGetUserId().c_str());
1577 wxPrintf(_T("User name is:\t%s\n"), wxGetUserName().c_str());
1578 wxPrintf(_T("Home dir is:\t%s\n"), wxGetHomeDir().c_str());
1579 wxPrintf(_T("Email address:\t%s\n"), wxGetEmailAddress().c_str());
1581 wxPuts(wxEmptyString
);
1584 #endif // TEST_INFO_FUNCTIONS
1586 // ----------------------------------------------------------------------------
1588 // ----------------------------------------------------------------------------
1590 #ifdef TEST_PATHLIST
1593 #define CMD_IN_PATH _T("ls")
1595 #define CMD_IN_PATH _T("command.com")
1598 static void TestPathList()
1600 wxPuts(_T("*** Testing wxPathList ***\n"));
1602 wxPathList pathlist
;
1603 pathlist
.AddEnvList(_T("PATH"));
1604 wxString path
= pathlist
.FindValidPath(CMD_IN_PATH
);
1607 wxPrintf(_T("ERROR: command not found in the path.\n"));
1611 wxPrintf(_T("Command found in the path as '%s'.\n"), path
.c_str());
1615 #endif // TEST_PATHLIST
1617 // ----------------------------------------------------------------------------
1618 // regular expressions
1619 // ----------------------------------------------------------------------------
1623 #include "wx/regex.h"
1625 static void TestRegExInteractive()
1627 wxPuts(_T("*** Testing RE interactively ***"));
1631 wxChar pattern
[128];
1632 wxPrintf(_T("\nEnter a pattern: "));
1633 if ( !wxFgets(pattern
, WXSIZEOF(pattern
), stdin
) )
1636 // kill the last '\n'
1637 pattern
[wxStrlen(pattern
) - 1] = 0;
1640 if ( !re
.Compile(pattern
) )
1648 wxPrintf(_T("Enter text to match: "));
1649 if ( !wxFgets(text
, WXSIZEOF(text
), stdin
) )
1652 // kill the last '\n'
1653 text
[wxStrlen(text
) - 1] = 0;
1655 if ( !re
.Matches(text
) )
1657 wxPrintf(_T("No match.\n"));
1661 wxPrintf(_T("Pattern matches at '%s'\n"), re
.GetMatch(text
).c_str());
1664 for ( size_t n
= 1; ; n
++ )
1666 if ( !re
.GetMatch(&start
, &len
, n
) )
1671 wxPrintf(_T("Subexpr %u matched '%s'\n"),
1672 n
, wxString(text
+ start
, len
).c_str());
1679 #endif // TEST_REGEX
1681 // ----------------------------------------------------------------------------
1683 // ----------------------------------------------------------------------------
1693 static void TestDbOpen()
1701 // ----------------------------------------------------------------------------
1703 // ----------------------------------------------------------------------------
1706 NB: this stuff was taken from the glibc test suite and modified to build
1707 in wxWidgets: if I read the copyright below properly, this shouldn't
1713 #ifdef wxTEST_PRINTF
1714 // use our functions from wxchar.cpp
1718 // NB: do _not_ use ATTRIBUTE_PRINTF here, we have some invalid formats
1719 // in the tests below
1720 int wxPrintf( const wxChar
*format
, ... );
1721 int wxSprintf( wxChar
*str
, const wxChar
*format
, ... );
1724 #include "wx/longlong.h"
1728 static void rfg1 (void);
1729 static void rfg2 (void);
1733 fmtchk (const wxChar
*fmt
)
1735 (void) wxPrintf(_T("%s:\t`"), fmt
);
1736 (void) wxPrintf(fmt
, 0x12);
1737 (void) wxPrintf(_T("'\n"));
1741 fmtst1chk (const wxChar
*fmt
)
1743 (void) wxPrintf(_T("%s:\t`"), fmt
);
1744 (void) wxPrintf(fmt
, 4, 0x12);
1745 (void) wxPrintf(_T("'\n"));
1749 fmtst2chk (const wxChar
*fmt
)
1751 (void) wxPrintf(_T("%s:\t`"), fmt
);
1752 (void) wxPrintf(fmt
, 4, 4, 0x12);
1753 (void) wxPrintf(_T("'\n"));
1756 /* This page is covered by the following copyright: */
1758 /* (C) Copyright C E Chew
1760 * Feel free to copy, use and distribute this software provided:
1762 * 1. you do not pretend that you wrote it
1763 * 2. you leave this copyright notice intact.
1767 * Extracted from exercise.c for glibc-1.05 bug report by Bruce Evans.
1774 /* Formatted Output Test
1776 * This exercises the output formatting code.
1779 wxChar
*PointerNull
= NULL
;
1786 wxChar
*prefix
= buf
;
1789 wxPuts(_T("\nFormatted output test"));
1790 wxPrintf(_T("prefix 6d 6o 6x 6X 6u\n"));
1791 wxStrcpy(prefix
, _T("%"));
1792 for (i
= 0; i
< 2; i
++) {
1793 for (j
= 0; j
< 2; j
++) {
1794 for (k
= 0; k
< 2; k
++) {
1795 for (l
= 0; l
< 2; l
++) {
1796 wxStrcpy(prefix
, _T("%"));
1797 if (i
== 0) wxStrcat(prefix
, _T("-"));
1798 if (j
== 0) wxStrcat(prefix
, _T("+"));
1799 if (k
== 0) wxStrcat(prefix
, _T("#"));
1800 if (l
== 0) wxStrcat(prefix
, _T("0"));
1801 wxPrintf(_T("%5s |"), prefix
);
1802 wxStrcpy(tp
, prefix
);
1803 wxStrcat(tp
, _T("6d |"));
1805 wxStrcpy(tp
, prefix
);
1806 wxStrcat(tp
, _T("6o |"));
1808 wxStrcpy(tp
, prefix
);
1809 wxStrcat(tp
, _T("6x |"));
1811 wxStrcpy(tp
, prefix
);
1812 wxStrcat(tp
, _T("6X |"));
1814 wxStrcpy(tp
, prefix
);
1815 wxStrcat(tp
, _T("6u |"));
1822 wxPrintf(_T("%10s\n"), PointerNull
);
1823 wxPrintf(_T("%-10s\n"), PointerNull
);
1826 static void TestPrintf()
1828 static wxChar shortstr
[] = _T("Hi, Z.");
1829 static wxChar longstr
[] = _T("Good morning, Doctor Chandra. This is Hal. \
1830 I am ready for my first lesson today.");
1832 wxString test_format
;
1836 fmtchk(_T("%4.4x"));
1837 fmtchk(_T("%04.4x"));
1838 fmtchk(_T("%4.3x"));
1839 fmtchk(_T("%04.3x"));
1841 fmtst1chk(_T("%.*x"));
1842 fmtst1chk(_T("%0*x"));
1843 fmtst2chk(_T("%*.*x"));
1844 fmtst2chk(_T("%0*.*x"));
1846 wxString bad_format
= _T("bad format:\t\"%b\"\n");
1847 wxPrintf(bad_format
.c_str());
1848 wxPrintf(_T("nil pointer (padded):\t\"%10p\"\n"), (void *) NULL
);
1850 wxPrintf(_T("decimal negative:\t\"%d\"\n"), -2345);
1851 wxPrintf(_T("octal negative:\t\"%o\"\n"), -2345);
1852 wxPrintf(_T("hex negative:\t\"%x\"\n"), -2345);
1853 wxPrintf(_T("long decimal number:\t\"%ld\"\n"), -123456L);
1854 wxPrintf(_T("long octal negative:\t\"%lo\"\n"), -2345L);
1855 wxPrintf(_T("long unsigned decimal number:\t\"%lu\"\n"), -123456L);
1856 wxPrintf(_T("zero-padded LDN:\t\"%010ld\"\n"), -123456L);
1857 test_format
= _T("left-adjusted ZLDN:\t\"%-010ld\"\n");
1858 wxPrintf(test_format
.c_str(), -123456);
1859 wxPrintf(_T("space-padded LDN:\t\"%10ld\"\n"), -123456L);
1860 wxPrintf(_T("left-adjusted SLDN:\t\"%-10ld\"\n"), -123456L);
1862 test_format
= _T("zero-padded string:\t\"%010s\"\n");
1863 wxPrintf(test_format
.c_str(), shortstr
);
1864 test_format
= _T("left-adjusted Z string:\t\"%-010s\"\n");
1865 wxPrintf(test_format
.c_str(), shortstr
);
1866 wxPrintf(_T("space-padded string:\t\"%10s\"\n"), shortstr
);
1867 wxPrintf(_T("left-adjusted S string:\t\"%-10s\"\n"), shortstr
);
1868 wxPrintf(_T("null string:\t\"%s\"\n"), PointerNull
);
1869 wxPrintf(_T("limited string:\t\"%.22s\"\n"), longstr
);
1871 wxPrintf(_T("e-style >= 1:\t\"%e\"\n"), 12.34);
1872 wxPrintf(_T("e-style >= .1:\t\"%e\"\n"), 0.1234);
1873 wxPrintf(_T("e-style < .1:\t\"%e\"\n"), 0.001234);
1874 wxPrintf(_T("e-style big:\t\"%.60e\"\n"), 1e20
);
1875 wxPrintf(_T("e-style == .1:\t\"%e\"\n"), 0.1);
1876 wxPrintf(_T("f-style >= 1:\t\"%f\"\n"), 12.34);
1877 wxPrintf(_T("f-style >= .1:\t\"%f\"\n"), 0.1234);
1878 wxPrintf(_T("f-style < .1:\t\"%f\"\n"), 0.001234);
1879 wxPrintf(_T("g-style >= 1:\t\"%g\"\n"), 12.34);
1880 wxPrintf(_T("g-style >= .1:\t\"%g\"\n"), 0.1234);
1881 wxPrintf(_T("g-style < .1:\t\"%g\"\n"), 0.001234);
1882 wxPrintf(_T("g-style big:\t\"%.60g\"\n"), 1e20
);
1884 wxPrintf (_T(" %6.5f\n"), .099999999860301614);
1885 wxPrintf (_T(" %6.5f\n"), .1);
1886 wxPrintf (_T("x%5.4fx\n"), .5);
1888 wxPrintf (_T("%#03x\n"), 1);
1890 //wxPrintf (_T("something really insane: %.10000f\n"), 1.0);
1896 while (niter
-- != 0)
1897 wxPrintf (_T("%.17e\n"), d
/ 2);
1902 // Open Watcom cause compiler error here
1903 // Error! E173: col(24) floating-point constant too small to represent
1904 wxPrintf (_T("%15.5e\n"), 4.9406564584124654e-324);
1907 #define FORMAT _T("|%12.4f|%12.4e|%12.4g|\n")
1908 wxPrintf (FORMAT
, 0.0, 0.0, 0.0);
1909 wxPrintf (FORMAT
, 1.0, 1.0, 1.0);
1910 wxPrintf (FORMAT
, -1.0, -1.0, -1.0);
1911 wxPrintf (FORMAT
, 100.0, 100.0, 100.0);
1912 wxPrintf (FORMAT
, 1000.0, 1000.0, 1000.0);
1913 wxPrintf (FORMAT
, 10000.0, 10000.0, 10000.0);
1914 wxPrintf (FORMAT
, 12345.0, 12345.0, 12345.0);
1915 wxPrintf (FORMAT
, 100000.0, 100000.0, 100000.0);
1916 wxPrintf (FORMAT
, 123456.0, 123456.0, 123456.0);
1921 int rc
= wxSnprintf (buf
, WXSIZEOF(buf
), _T("%30s"), _T("foo"));
1923 wxPrintf(_T("snprintf (\"%%30s\", \"foo\") == %d, \"%.*s\"\n"),
1924 rc
, WXSIZEOF(buf
), buf
);
1927 wxPrintf ("snprintf (\"%%.999999u\", 10)\n",
1928 wxSnprintf(buf2
, WXSIZEOFbuf2
), "%.999999u", 10));
1934 wxPrintf (_T("%e should be 1.234568e+06\n"), 1234567.8);
1935 wxPrintf (_T("%f should be 1234567.800000\n"), 1234567.8);
1936 wxPrintf (_T("%g should be 1.23457e+06\n"), 1234567.8);
1937 wxPrintf (_T("%g should be 123.456\n"), 123.456);
1938 wxPrintf (_T("%g should be 1e+06\n"), 1000000.0);
1939 wxPrintf (_T("%g should be 10\n"), 10.0);
1940 wxPrintf (_T("%g should be 0.02\n"), 0.02);
1944 wxPrintf(_T("%.17f\n"),(1.0/x
/10.0+1.0)*x
-x
);
1950 wxSprintf(buf
,_T("%*s%*s%*s"),-1,_T("one"),-20,_T("two"),-30,_T("three"));
1952 result
|= wxStrcmp (buf
,
1953 _T("onetwo three "));
1955 wxPuts (result
!= 0 ? _T("Test failed!") : _T("Test ok."));
1962 wxSprintf(buf
, _T("%07") wxLongLongFmtSpec
_T("o"), wxLL(040000000000));
1964 // for some reason below line fails under Borland
1965 wxPrintf (_T("sprintf (buf, \"%%07Lo\", 040000000000ll) = %s"), buf
);
1968 if (wxStrcmp (buf
, _T("40000000000")) != 0)
1971 wxPuts (_T("\tFAILED"));
1973 wxUnusedVar(result
);
1974 wxPuts (wxEmptyString
);
1976 #endif // wxLongLong_t
1978 wxPrintf (_T("printf (\"%%hhu\", %u) = %hhu\n"), UCHAR_MAX
+ 2, UCHAR_MAX
+ 2);
1979 wxPrintf (_T("printf (\"%%hu\", %u) = %hu\n"), USHRT_MAX
+ 2, USHRT_MAX
+ 2);
1981 wxPuts (_T("--- Should be no further output. ---"));
1990 memset (bytes
, '\xff', sizeof bytes
);
1991 wxSprintf (buf
, _T("foo%hhn\n"), &bytes
[3]);
1992 if (bytes
[0] != '\xff' || bytes
[1] != '\xff' || bytes
[2] != '\xff'
1993 || bytes
[4] != '\xff' || bytes
[5] != '\xff' || bytes
[6] != '\xff')
1995 wxPuts (_T("%hhn overwrite more bytes"));
2000 wxPuts (_T("%hhn wrote incorrect value"));
2012 wxSprintf (buf
, _T("%5.s"), _T("xyz"));
2013 if (wxStrcmp (buf
, _T(" ")) != 0)
2014 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" "));
2015 wxSprintf (buf
, _T("%5.f"), 33.3);
2016 if (wxStrcmp (buf
, _T(" 33")) != 0)
2017 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 33"));
2018 wxSprintf (buf
, _T("%8.e"), 33.3e7
);
2019 if (wxStrcmp (buf
, _T(" 3e+08")) != 0)
2020 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 3e+08"));
2021 wxSprintf (buf
, _T("%8.E"), 33.3e7
);
2022 if (wxStrcmp (buf
, _T(" 3E+08")) != 0)
2023 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 3E+08"));
2024 wxSprintf (buf
, _T("%.g"), 33.3);
2025 if (wxStrcmp (buf
, _T("3e+01")) != 0)
2026 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T("3e+01"));
2027 wxSprintf (buf
, _T("%.G"), 33.3);
2028 if (wxStrcmp (buf
, _T("3E+01")) != 0)
2029 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T("3E+01"));
2037 wxString test_format
;
2040 wxSprintf (buf
, _T("%.*g"), prec
, 3.3);
2041 if (wxStrcmp (buf
, _T("3")) != 0)
2042 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T("3"));
2044 wxSprintf (buf
, _T("%.*G"), prec
, 3.3);
2045 if (wxStrcmp (buf
, _T("3")) != 0)
2046 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T("3"));
2048 wxSprintf (buf
, _T("%7.*G"), prec
, 3.33);
2049 if (wxStrcmp (buf
, _T(" 3")) != 0)
2050 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 3"));
2052 test_format
= _T("%04.*o");
2053 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2054 if (wxStrcmp (buf
, _T(" 041")) != 0)
2055 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 041"));
2057 test_format
= _T("%09.*u");
2058 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2059 if (wxStrcmp (buf
, _T(" 0000033")) != 0)
2060 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 0000033"));
2062 test_format
= _T("%04.*x");
2063 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2064 if (wxStrcmp (buf
, _T(" 021")) != 0)
2065 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 021"));
2067 test_format
= _T("%04.*X");
2068 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2069 if (wxStrcmp (buf
, _T(" 021")) != 0)
2070 wxPrintf (_T("got: '%s', expected: '%s'\n"), buf
, _T(" 021"));
2073 #endif // TEST_PRINTF
2075 // ----------------------------------------------------------------------------
2076 // registry and related stuff
2077 // ----------------------------------------------------------------------------
2079 // this is for MSW only
2082 #undef TEST_REGISTRY
2087 #include "wx/confbase.h"
2088 #include "wx/msw/regconf.h"
2091 static void TestRegConfWrite()
2093 wxConfig
*config
= new wxConfig(_T("myapp"));
2094 config
->SetPath(_T("/group1"));
2095 config
->Write(_T("entry1"), _T("foo"));
2096 config
->SetPath(_T("/group2"));
2097 config
->Write(_T("entry1"), _T("bar"));
2101 static void TestRegConfRead()
2103 wxConfig
*config
= new wxConfig(_T("myapp"));
2107 config
->SetPath(_T("/"));
2108 wxPuts(_T("Enumerating / subgroups:"));
2109 bool bCont
= config
->GetFirstGroup(str
, dummy
);
2113 bCont
= config
->GetNextGroup(str
, dummy
);
2117 #endif // TEST_REGCONF
2119 #ifdef TEST_REGISTRY
2121 #include "wx/msw/registry.h"
2123 // I chose this one because I liked its name, but it probably only exists under
2125 static const wxChar
*TESTKEY
=
2126 _T("HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\CrashControl");
2128 static void TestRegistryRead()
2130 wxPuts(_T("*** testing registry reading ***"));
2132 wxRegKey
key(TESTKEY
);
2133 wxPrintf(_T("The test key name is '%s'.\n"), key
.GetName().c_str());
2136 wxPuts(_T("ERROR: test key can't be opened, aborting test."));
2141 size_t nSubKeys
, nValues
;
2142 if ( key
.GetKeyInfo(&nSubKeys
, NULL
, &nValues
, NULL
) )
2144 wxPrintf(_T("It has %u subkeys and %u values.\n"), nSubKeys
, nValues
);
2147 wxPrintf(_T("Enumerating values:\n"));
2151 bool cont
= key
.GetFirstValue(value
, dummy
);
2154 wxPrintf(_T("Value '%s': type "), value
.c_str());
2155 switch ( key
.GetValueType(value
) )
2157 case wxRegKey::Type_None
: wxPrintf(_T("ERROR (none)")); break;
2158 case wxRegKey::Type_String
: wxPrintf(_T("SZ")); break;
2159 case wxRegKey::Type_Expand_String
: wxPrintf(_T("EXPAND_SZ")); break;
2160 case wxRegKey::Type_Binary
: wxPrintf(_T("BINARY")); break;
2161 case wxRegKey::Type_Dword
: wxPrintf(_T("DWORD")); break;
2162 case wxRegKey::Type_Multi_String
: wxPrintf(_T("MULTI_SZ")); break;
2163 default: wxPrintf(_T("other (unknown)")); break;
2166 wxPrintf(_T(", value = "));
2167 if ( key
.IsNumericValue(value
) )
2170 key
.QueryValue(value
, &val
);
2171 wxPrintf(_T("%ld"), val
);
2176 key
.QueryValue(value
, val
);
2177 wxPrintf(_T("'%s'"), val
.c_str());
2179 key
.QueryRawValue(value
, val
);
2180 wxPrintf(_T(" (raw value '%s')"), val
.c_str());
2185 cont
= key
.GetNextValue(value
, dummy
);
2189 static void TestRegistryAssociation()
2192 The second call to deleteself genertaes an error message, with a
2193 messagebox saying .flo is crucial to system operation, while the .ddf
2194 call also fails, but with no error message
2199 key
.SetName(_T("HKEY_CLASSES_ROOT\\.ddf") );
2201 key
= _T("ddxf_auto_file") ;
2202 key
.SetName(_T("HKEY_CLASSES_ROOT\\.flo") );
2204 key
= _T("ddxf_auto_file") ;
2205 key
.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\DefaultIcon"));
2207 key
= _T("program,0") ;
2208 key
.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\shell\\open\\command"));
2210 key
= _T("program \"%1\"") ;
2212 key
.SetName(_T("HKEY_CLASSES_ROOT\\.ddf") );
2214 key
.SetName(_T("HKEY_CLASSES_ROOT\\.flo") );
2216 key
.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\DefaultIcon"));
2218 key
.SetName(_T("HKEY_CLASSES_ROOT\\ddxf_auto_file\\shell\\open\\command"));
2222 #endif // TEST_REGISTRY
2224 // ----------------------------------------------------------------------------
2226 // ----------------------------------------------------------------------------
2228 #ifdef TEST_SCOPEGUARD
2230 #include "wx/scopeguard.h"
2232 static void function0() { puts("function0()"); }
2233 static void function1(int n
) { printf("function1(%d)\n", n
); }
2234 static void function2(double x
, char c
) { printf("function2(%g, %c)\n", x
, c
); }
2238 void method0() { printf("method0()\n"); }
2239 void method1(int n
) { printf("method1(%d)\n", n
); }
2240 void method2(double x
, char c
) { printf("method2(%g, %c)\n", x
, c
); }
2243 static void TestScopeGuard()
2245 wxON_BLOCK_EXIT0(function0
);
2246 wxON_BLOCK_EXIT1(function1
, 17);
2247 wxON_BLOCK_EXIT2(function2
, 3.14, 'p');
2250 wxON_BLOCK_EXIT_OBJ0(obj
, Object::method0
);
2251 wxON_BLOCK_EXIT_OBJ1(obj
, Object::method1
, 7);
2252 wxON_BLOCK_EXIT_OBJ2(obj
, Object::method2
, 2.71, 'e');
2254 wxScopeGuard dismissed
= wxMakeGuard(function0
);
2255 dismissed
.Dismiss();
2260 // ----------------------------------------------------------------------------
2262 // ----------------------------------------------------------------------------
2266 #include "wx/socket.h"
2267 #include "wx/protocol/protocol.h"
2268 #include "wx/protocol/http.h"
2270 static void TestSocketServer()
2272 wxPuts(_T("*** Testing wxSocketServer ***\n"));
2274 static const int PORT
= 3000;
2279 wxSocketServer
*server
= new wxSocketServer(addr
);
2280 if ( !server
->Ok() )
2282 wxPuts(_T("ERROR: failed to bind"));
2290 wxPrintf(_T("Server: waiting for connection on port %d...\n"), PORT
);
2292 wxSocketBase
*socket
= server
->Accept();
2295 wxPuts(_T("ERROR: wxSocketServer::Accept() failed."));
2299 wxPuts(_T("Server: got a client."));
2301 server
->SetTimeout(60); // 1 min
2304 while ( !close
&& socket
->IsConnected() )
2307 wxChar ch
= _T('\0');
2310 if ( socket
->Read(&ch
, sizeof(ch
)).Error() )
2312 // don't log error if the client just close the connection
2313 if ( socket
->IsConnected() )
2315 wxPuts(_T("ERROR: in wxSocket::Read."));
2335 wxPrintf(_T("Server: got '%s'.\n"), s
.c_str());
2336 if ( s
== _T("close") )
2338 wxPuts(_T("Closing connection"));
2342 else if ( s
== _T("quit") )
2347 wxPuts(_T("Shutting down the server"));
2349 else // not a special command
2351 socket
->Write(s
.MakeUpper().c_str(), s
.length());
2352 socket
->Write("\r\n", 2);
2353 wxPrintf(_T("Server: wrote '%s'.\n"), s
.c_str());
2359 wxPuts(_T("Server: lost a client unexpectedly."));
2365 // same as "delete server" but is consistent with GUI programs
2369 static void TestSocketClient()
2371 wxPuts(_T("*** Testing wxSocketClient ***\n"));
2373 static const wxChar
*hostname
= _T("www.wxwidgets.org");
2376 addr
.Hostname(hostname
);
2379 wxPrintf(_T("--- Attempting to connect to %s:80...\n"), hostname
);
2381 wxSocketClient client
;
2382 if ( !client
.Connect(addr
) )
2384 wxPrintf(_T("ERROR: failed to connect to %s\n"), hostname
);
2388 wxPrintf(_T("--- Connected to %s:%u...\n"),
2389 addr
.Hostname().c_str(), addr
.Service());
2393 // could use simply "GET" here I suppose
2395 wxString::Format(_T("GET http://%s/\r\n"), hostname
);
2396 client
.Write(cmdGet
, cmdGet
.length());
2397 wxPrintf(_T("--- Sent command '%s' to the server\n"),
2398 MakePrintable(cmdGet
).c_str());
2399 client
.Read(buf
, WXSIZEOF(buf
));
2400 wxPrintf(_T("--- Server replied:\n%s"), buf
);
2404 #endif // TEST_SOCKETS
2406 // ----------------------------------------------------------------------------
2408 // ----------------------------------------------------------------------------
2412 #include "wx/protocol/ftp.h"
2416 #define FTP_ANONYMOUS
2418 #ifdef FTP_ANONYMOUS
2419 static const wxChar
*directory
= _T("/pub");
2420 static const wxChar
*filename
= _T("welcome.msg");
2422 static const wxChar
*directory
= _T("/etc");
2423 static const wxChar
*filename
= _T("issue");
2426 static bool TestFtpConnect()
2428 wxPuts(_T("*** Testing FTP connect ***"));
2430 #ifdef FTP_ANONYMOUS
2431 static const wxChar
*hostname
= _T("ftp.wxwidgets.org");
2433 wxPrintf(_T("--- Attempting to connect to %s:21 anonymously...\n"), hostname
);
2434 #else // !FTP_ANONYMOUS
2435 static const wxChar
*hostname
= "localhost";
2438 wxFgets(user
, WXSIZEOF(user
), stdin
);
2439 user
[wxStrlen(user
) - 1] = '\0'; // chop off '\n'
2442 wxChar password
[256];
2443 wxPrintf(_T("Password for %s: "), password
);
2444 wxFgets(password
, WXSIZEOF(password
), stdin
);
2445 password
[wxStrlen(password
) - 1] = '\0'; // chop off '\n'
2446 ftp
.SetPassword(password
);
2448 wxPrintf(_T("--- Attempting to connect to %s:21 as %s...\n"), hostname
, user
);
2449 #endif // FTP_ANONYMOUS/!FTP_ANONYMOUS
2451 if ( !ftp
.Connect(hostname
) )
2453 wxPrintf(_T("ERROR: failed to connect to %s\n"), hostname
);
2459 wxPrintf(_T("--- Connected to %s, current directory is '%s'\n"),
2460 hostname
, ftp
.Pwd().c_str());
2467 // test (fixed?) wxFTP bug with wu-ftpd >= 2.6.0?
2468 static void TestFtpWuFtpd()
2471 static const wxChar
*hostname
= _T("ftp.eudora.com");
2472 if ( !ftp
.Connect(hostname
) )
2474 wxPrintf(_T("ERROR: failed to connect to %s\n"), hostname
);
2478 static const wxChar
*filename
= _T("eudora/pubs/draft-gellens-submit-09.txt");
2479 wxInputStream
*in
= ftp
.GetInputStream(filename
);
2482 wxPrintf(_T("ERROR: couldn't get input stream for %s\n"), filename
);
2486 size_t size
= in
->GetSize();
2487 wxPrintf(_T("Reading file %s (%u bytes)..."), filename
, size
);
2489 wxChar
*data
= new wxChar
[size
];
2490 if ( !in
->Read(data
, size
) )
2492 wxPuts(_T("ERROR: read error"));
2496 wxPrintf(_T("Successfully retrieved the file.\n"));
2505 static void TestFtpList()
2507 wxPuts(_T("*** Testing wxFTP file listing ***\n"));
2510 if ( !ftp
.ChDir(directory
) )
2512 wxPrintf(_T("ERROR: failed to cd to %s\n"), directory
);
2515 wxPrintf(_T("Current directory is '%s'\n"), ftp
.Pwd().c_str());
2517 // test NLIST and LIST
2518 wxArrayString files
;
2519 if ( !ftp
.GetFilesList(files
) )
2521 wxPuts(_T("ERROR: failed to get NLIST of files"));
2525 wxPrintf(_T("Brief list of files under '%s':\n"), ftp
.Pwd().c_str());
2526 size_t count
= files
.GetCount();
2527 for ( size_t n
= 0; n
< count
; n
++ )
2529 wxPrintf(_T("\t%s\n"), files
[n
].c_str());
2531 wxPuts(_T("End of the file list"));
2534 if ( !ftp
.GetDirList(files
) )
2536 wxPuts(_T("ERROR: failed to get LIST of files"));
2540 wxPrintf(_T("Detailed list of files under '%s':\n"), ftp
.Pwd().c_str());
2541 size_t count
= files
.GetCount();
2542 for ( size_t n
= 0; n
< count
; n
++ )
2544 wxPrintf(_T("\t%s\n"), files
[n
].c_str());
2546 wxPuts(_T("End of the file list"));
2549 if ( !ftp
.ChDir(_T("..")) )
2551 wxPuts(_T("ERROR: failed to cd to .."));
2554 wxPrintf(_T("Current directory is '%s'\n"), ftp
.Pwd().c_str());
2557 static void TestFtpDownload()
2559 wxPuts(_T("*** Testing wxFTP download ***\n"));
2562 wxInputStream
*in
= ftp
.GetInputStream(filename
);
2565 wxPrintf(_T("ERROR: couldn't get input stream for %s\n"), filename
);
2569 size_t size
= in
->GetSize();
2570 wxPrintf(_T("Reading file %s (%u bytes)..."), filename
, size
);
2573 wxChar
*data
= new wxChar
[size
];
2574 if ( !in
->Read(data
, size
) )
2576 wxPuts(_T("ERROR: read error"));
2580 wxPrintf(_T("\nContents of %s:\n%s\n"), filename
, data
);
2588 static void TestFtpFileSize()
2590 wxPuts(_T("*** Testing FTP SIZE command ***"));
2592 if ( !ftp
.ChDir(directory
) )
2594 wxPrintf(_T("ERROR: failed to cd to %s\n"), directory
);
2597 wxPrintf(_T("Current directory is '%s'\n"), ftp
.Pwd().c_str());
2599 if ( ftp
.FileExists(filename
) )
2601 int size
= ftp
.GetFileSize(filename
);
2603 wxPrintf(_T("ERROR: couldn't get size of '%s'\n"), filename
);
2605 wxPrintf(_T("Size of '%s' is %d bytes.\n"), filename
, size
);
2609 wxPrintf(_T("ERROR: '%s' doesn't exist\n"), filename
);
2613 static void TestFtpMisc()
2615 wxPuts(_T("*** Testing miscellaneous wxFTP functions ***"));
2617 if ( ftp
.SendCommand(_T("STAT")) != '2' )
2619 wxPuts(_T("ERROR: STAT failed"));
2623 wxPrintf(_T("STAT returned:\n\n%s\n"), ftp
.GetLastResult().c_str());
2626 if ( ftp
.SendCommand(_T("HELP SITE")) != '2' )
2628 wxPuts(_T("ERROR: HELP SITE failed"));
2632 wxPrintf(_T("The list of site-specific commands:\n\n%s\n"),
2633 ftp
.GetLastResult().c_str());
2637 static void TestFtpInteractive()
2639 wxPuts(_T("\n*** Interactive wxFTP test ***"));
2645 wxPrintf(_T("Enter FTP command: "));
2646 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
2649 // kill the last '\n'
2650 buf
[wxStrlen(buf
) - 1] = 0;
2652 // special handling of LIST and NLST as they require data connection
2653 wxString
start(buf
, 4);
2655 if ( start
== _T("LIST") || start
== _T("NLST") )
2658 if ( wxStrlen(buf
) > 4 )
2661 wxArrayString files
;
2662 if ( !ftp
.GetList(files
, wildcard
, start
== _T("LIST")) )
2664 wxPrintf(_T("ERROR: failed to get %s of files\n"), start
.c_str());
2668 wxPrintf(_T("--- %s of '%s' under '%s':\n"),
2669 start
.c_str(), wildcard
.c_str(), ftp
.Pwd().c_str());
2670 size_t count
= files
.GetCount();
2671 for ( size_t n
= 0; n
< count
; n
++ )
2673 wxPrintf(_T("\t%s\n"), files
[n
].c_str());
2675 wxPuts(_T("--- End of the file list"));
2680 wxChar ch
= ftp
.SendCommand(buf
);
2681 wxPrintf(_T("Command %s"), ch
? _T("succeeded") : _T("failed"));
2684 wxPrintf(_T(" (return code %c)"), ch
);
2687 wxPrintf(_T(", server reply:\n%s\n\n"), ftp
.GetLastResult().c_str());
2691 wxPuts(_T("\n*** done ***"));
2694 static void TestFtpUpload()
2696 wxPuts(_T("*** Testing wxFTP uploading ***\n"));
2699 static const wxChar
*file1
= _T("test1");
2700 static const wxChar
*file2
= _T("test2");
2701 wxOutputStream
*out
= ftp
.GetOutputStream(file1
);
2704 wxPrintf(_T("--- Uploading to %s ---\n"), file1
);
2705 out
->Write("First hello", 11);
2709 // send a command to check the remote file
2710 if ( ftp
.SendCommand(wxString(_T("STAT ")) + file1
) != '2' )
2712 wxPrintf(_T("ERROR: STAT %s failed\n"), file1
);
2716 wxPrintf(_T("STAT %s returned:\n\n%s\n"),
2717 file1
, ftp
.GetLastResult().c_str());
2720 out
= ftp
.GetOutputStream(file2
);
2723 wxPrintf(_T("--- Uploading to %s ---\n"), file1
);
2724 out
->Write("Second hello", 12);
2731 // ----------------------------------------------------------------------------
2733 // ----------------------------------------------------------------------------
2735 #ifdef TEST_STACKWALKER
2737 #if wxUSE_STACKWALKER
2739 #include "wx/stackwalk.h"
2741 class StackDump
: public wxStackWalker
2744 StackDump(const char *argv0
)
2745 : wxStackWalker(argv0
)
2749 virtual void Walk(size_t skip
= 1)
2751 wxPuts(_T("Stack dump:"));
2753 wxStackWalker::Walk(skip
);
2757 virtual void OnStackFrame(const wxStackFrame
& frame
)
2759 printf("[%2d] ", frame
.GetLevel());
2761 wxString name
= frame
.GetName();
2762 if ( !name
.empty() )
2764 printf("%-20.40s", name
.mb_str());
2768 printf("0x%08lx", (unsigned long)frame
.GetAddress());
2771 if ( frame
.HasSourceLocation() )
2774 frame
.GetFileName().mb_str(),
2781 for ( size_t n
= 0; frame
.GetParam(n
, &type
, &name
, &val
); n
++ )
2783 printf("\t%s %s = %s\n", type
.mb_str(), name
.mb_str(), val
.mb_str());
2788 static void TestStackWalk(const char *argv0
)
2790 wxPuts(_T("*** Testing wxStackWalker ***\n"));
2792 StackDump
dump(argv0
);
2796 #endif // wxUSE_STACKWALKER
2798 #endif // TEST_STACKWALKER
2800 // ----------------------------------------------------------------------------
2802 // ----------------------------------------------------------------------------
2804 #ifdef TEST_STDPATHS
2806 #include "wx/stdpaths.h"
2808 static void TestStandardPaths()
2810 wxPuts(_T("*** Testing wxStandardPaths ***\n"));
2812 wxTheApp
->SetAppName(_T("console"));
2814 wxStandardPathsBase
& stdp
= wxStandardPaths::Get();
2815 wxPrintf(_T("Config dir (sys):\t%s\n"), stdp
.GetConfigDir().c_str());
2816 wxPrintf(_T("Config dir (user):\t%s\n"), stdp
.GetUserConfigDir().c_str());
2817 wxPrintf(_T("Data dir (sys):\t\t%s\n"), stdp
.GetDataDir().c_str());
2818 wxPrintf(_T("Data dir (sys local):\t%s\n"), stdp
.GetLocalDataDir().c_str());
2819 wxPrintf(_T("Data dir (user):\t%s\n"), stdp
.GetUserDataDir().c_str());
2820 wxPrintf(_T("Data dir (user local):\t%s\n"), stdp
.GetUserLocalDataDir().c_str());
2821 wxPrintf(_T("Documents dir:\t\t%s\n"), stdp
.GetDocumentsDir().c_str());
2822 wxPrintf(_T("Executable path:\t%s\n"), stdp
.GetExecutablePath().c_str());
2823 wxPrintf(_T("Plugins dir:\t\t%s\n"), stdp
.GetPluginsDir().c_str());
2824 wxPrintf(_T("Resources dir:\t\t%s\n"), stdp
.GetResourcesDir().c_str());
2825 wxPrintf(_T("Localized res. dir:\t%s\n"),
2826 stdp
.GetLocalizedResourcesDir(_T("fr")).c_str());
2827 wxPrintf(_T("Message catalogs dir:\t%s\n"),
2828 stdp
.GetLocalizedResourcesDir
2831 wxStandardPaths::ResourceCat_Messages
2835 #endif // TEST_STDPATHS
2837 // ----------------------------------------------------------------------------
2839 // ----------------------------------------------------------------------------
2843 #include "wx/wfstream.h"
2844 #include "wx/mstream.h"
2846 static void TestFileStream()
2848 wxPuts(_T("*** Testing wxFileInputStream ***"));
2850 static const wxString filename
= _T("testdata.fs");
2852 wxFileOutputStream
fsOut(filename
);
2853 fsOut
.Write("foo", 3);
2857 wxFileInputStream
fsIn(filename
);
2858 wxPrintf(_T("File stream size: %u\n"), fsIn
.GetSize());
2859 while ( !fsIn
.Eof() )
2861 wxPutchar(fsIn
.GetC());
2865 if ( !wxRemoveFile(filename
) )
2867 wxPrintf(_T("ERROR: failed to remove the file '%s'.\n"), filename
.c_str());
2870 wxPuts(_T("\n*** wxFileInputStream test done ***"));
2873 static void TestMemoryStream()
2875 wxPuts(_T("*** Testing wxMemoryOutputStream ***"));
2877 wxMemoryOutputStream memOutStream
;
2878 wxPrintf(_T("Initially out stream offset: %lu\n"),
2879 (unsigned long)memOutStream
.TellO());
2881 for ( const wxChar
*p
= _T("Hello, stream!"); *p
; p
++ )
2883 memOutStream
.PutC(*p
);
2886 wxPrintf(_T("Final out stream offset: %lu\n"),
2887 (unsigned long)memOutStream
.TellO());
2889 wxPuts(_T("*** Testing wxMemoryInputStream ***"));
2892 size_t len
= memOutStream
.CopyTo(buf
, WXSIZEOF(buf
));
2894 wxMemoryInputStream
memInpStream(buf
, len
);
2895 wxPrintf(_T("Memory stream size: %u\n"), memInpStream
.GetSize());
2896 while ( !memInpStream
.Eof() )
2898 wxPutchar(memInpStream
.GetC());
2901 wxPuts(_T("\n*** wxMemoryInputStream test done ***"));
2904 #endif // TEST_STREAMS
2906 // ----------------------------------------------------------------------------
2908 // ----------------------------------------------------------------------------
2912 #include "wx/stopwatch.h"
2913 #include "wx/utils.h"
2915 static void TestStopWatch()
2917 wxPuts(_T("*** Testing wxStopWatch ***\n"));
2921 wxPrintf(_T("Initially paused, after 2 seconds time is..."));
2924 wxPrintf(_T("\t%ldms\n"), sw
.Time());
2926 wxPrintf(_T("Resuming stopwatch and sleeping 3 seconds..."));
2930 wxPrintf(_T("\telapsed time: %ldms\n"), sw
.Time());
2933 wxPrintf(_T("Pausing agan and sleeping 2 more seconds..."));
2936 wxPrintf(_T("\telapsed time: %ldms\n"), sw
.Time());
2939 wxPrintf(_T("Finally resuming and sleeping 2 more seconds..."));
2942 wxPrintf(_T("\telapsed time: %ldms\n"), sw
.Time());
2945 wxPuts(_T("\nChecking for 'backwards clock' bug..."));
2946 for ( size_t n
= 0; n
< 70; n
++ )
2950 for ( size_t m
= 0; m
< 100000; m
++ )
2952 if ( sw
.Time() < 0 || sw2
.Time() < 0 )
2954 wxPuts(_T("\ntime is negative - ERROR!"));
2962 wxPuts(_T(", ok."));
2965 #endif // TEST_TIMER
2967 // ----------------------------------------------------------------------------
2969 // ----------------------------------------------------------------------------
2973 #include "wx/vcard.h"
2975 static void DumpVObject(size_t level
, const wxVCardObject
& vcard
)
2978 wxVCardObject
*vcObj
= vcard
.GetFirstProp(&cookie
);
2981 wxPrintf(_T("%s%s"),
2982 wxString(_T('\t'), level
).c_str(),
2983 vcObj
->GetName().c_str());
2986 switch ( vcObj
->GetType() )
2988 case wxVCardObject::String
:
2989 case wxVCardObject::UString
:
2992 vcObj
->GetValue(&val
);
2993 value
<< _T('"') << val
<< _T('"');
2997 case wxVCardObject::Int
:
3000 vcObj
->GetValue(&i
);
3001 value
.Printf(_T("%u"), i
);
3005 case wxVCardObject::Long
:
3008 vcObj
->GetValue(&l
);
3009 value
.Printf(_T("%lu"), l
);
3013 case wxVCardObject::None
:
3016 case wxVCardObject::Object
:
3017 value
= _T("<node>");
3021 value
= _T("<unknown value type>");
3025 wxPrintf(_T(" = %s"), value
.c_str());
3028 DumpVObject(level
+ 1, *vcObj
);
3031 vcObj
= vcard
.GetNextProp(&cookie
);
3035 static void DumpVCardAddresses(const wxVCard
& vcard
)
3037 wxPuts(_T("\nShowing all addresses from vCard:\n"));
3041 wxVCardAddress
*addr
= vcard
.GetFirstAddress(&cookie
);
3045 int flags
= addr
->GetFlags();
3046 if ( flags
& wxVCardAddress::Domestic
)
3048 flagsStr
<< _T("domestic ");
3050 if ( flags
& wxVCardAddress::Intl
)
3052 flagsStr
<< _T("international ");
3054 if ( flags
& wxVCardAddress::Postal
)
3056 flagsStr
<< _T("postal ");
3058 if ( flags
& wxVCardAddress::Parcel
)
3060 flagsStr
<< _T("parcel ");
3062 if ( flags
& wxVCardAddress::Home
)
3064 flagsStr
<< _T("home ");
3066 if ( flags
& wxVCardAddress::Work
)
3068 flagsStr
<< _T("work ");
3071 wxPrintf(_T("Address %u:\n")
3073 "\tvalue = %s;%s;%s;%s;%s;%s;%s\n",
3076 addr
->GetPostOffice().c_str(),
3077 addr
->GetExtAddress().c_str(),
3078 addr
->GetStreet().c_str(),
3079 addr
->GetLocality().c_str(),
3080 addr
->GetRegion().c_str(),
3081 addr
->GetPostalCode().c_str(),
3082 addr
->GetCountry().c_str()
3086 addr
= vcard
.GetNextAddress(&cookie
);
3090 static void DumpVCardPhoneNumbers(const wxVCard
& vcard
)
3092 wxPuts(_T("\nShowing all phone numbers from vCard:\n"));
3096 wxVCardPhoneNumber
*phone
= vcard
.GetFirstPhoneNumber(&cookie
);
3100 int flags
= phone
->GetFlags();
3101 if ( flags
& wxVCardPhoneNumber::Voice
)
3103 flagsStr
<< _T("voice ");
3105 if ( flags
& wxVCardPhoneNumber::Fax
)
3107 flagsStr
<< _T("fax ");
3109 if ( flags
& wxVCardPhoneNumber::Cellular
)
3111 flagsStr
<< _T("cellular ");
3113 if ( flags
& wxVCardPhoneNumber::Modem
)
3115 flagsStr
<< _T("modem ");
3117 if ( flags
& wxVCardPhoneNumber::Home
)
3119 flagsStr
<< _T("home ");
3121 if ( flags
& wxVCardPhoneNumber::Work
)
3123 flagsStr
<< _T("work ");
3126 wxPrintf(_T("Phone number %u:\n")
3131 phone
->GetNumber().c_str()
3135 phone
= vcard
.GetNextPhoneNumber(&cookie
);
3139 static void TestVCardRead()
3141 wxPuts(_T("*** Testing wxVCard reading ***\n"));
3143 wxVCard
vcard(_T("vcard.vcf"));
3144 if ( !vcard
.IsOk() )
3146 wxPuts(_T("ERROR: couldn't load vCard."));
3150 // read individual vCard properties
3151 wxVCardObject
*vcObj
= vcard
.GetProperty("FN");
3155 vcObj
->GetValue(&value
);
3160 value
= _T("<none>");
3163 wxPrintf(_T("Full name retrieved directly: %s\n"), value
.c_str());
3166 if ( !vcard
.GetFullName(&value
) )
3168 value
= _T("<none>");
3171 wxPrintf(_T("Full name from wxVCard API: %s\n"), value
.c_str());
3173 // now show how to deal with multiply occurring properties
3174 DumpVCardAddresses(vcard
);
3175 DumpVCardPhoneNumbers(vcard
);
3177 // and finally show all
3178 wxPuts(_T("\nNow dumping the entire vCard:\n")
3179 "-----------------------------\n");
3181 DumpVObject(0, vcard
);
3185 static void TestVCardWrite()
3187 wxPuts(_T("*** Testing wxVCard writing ***\n"));
3190 if ( !vcard
.IsOk() )
3192 wxPuts(_T("ERROR: couldn't create vCard."));
3197 vcard
.SetName("Zeitlin", "Vadim");
3198 vcard
.SetFullName("Vadim Zeitlin");
3199 vcard
.SetOrganization("wxWidgets", "R&D");
3201 // just dump the vCard back
3202 wxPuts(_T("Entire vCard follows:\n"));
3203 wxPuts(vcard
.Write());
3207 #endif // TEST_VCARD
3209 // ----------------------------------------------------------------------------
3211 // ----------------------------------------------------------------------------
3213 #if !defined(__WIN32__) || !wxUSE_FSVOLUME
3219 #include "wx/volume.h"
3221 static const wxChar
*volumeKinds
[] =
3227 _T("network volume"),
3231 static void TestFSVolume()
3233 wxPuts(_T("*** Testing wxFSVolume class ***"));
3235 wxArrayString volumes
= wxFSVolume::GetVolumes();
3236 size_t count
= volumes
.GetCount();
3240 wxPuts(_T("ERROR: no mounted volumes?"));
3244 wxPrintf(_T("%u mounted volumes found:\n"), count
);
3246 for ( size_t n
= 0; n
< count
; n
++ )
3248 wxFSVolume
vol(volumes
[n
]);
3251 wxPuts(_T("ERROR: couldn't create volume"));
3255 wxPrintf(_T("%u: %s (%s), %s, %s, %s\n"),
3257 vol
.GetDisplayName().c_str(),
3258 vol
.GetName().c_str(),
3259 volumeKinds
[vol
.GetKind()],
3260 vol
.IsWritable() ? _T("rw") : _T("ro"),
3261 vol
.GetFlags() & wxFS_VOL_REMOVABLE
? _T("removable")
3266 #endif // TEST_VOLUME
3268 // ----------------------------------------------------------------------------
3269 // wide char and Unicode support
3270 // ----------------------------------------------------------------------------
3274 #include "wx/strconv.h"
3275 #include "wx/fontenc.h"
3276 #include "wx/encconv.h"
3277 #include "wx/buffer.h"
3279 static const unsigned char utf8koi8r
[] =
3281 208, 157, 208, 181, 209, 129, 208, 186, 208, 176, 208, 183, 208, 176,
3282 208, 189, 208, 189, 208, 190, 32, 208, 191, 208, 190, 209, 128, 208,
3283 176, 208, 180, 208, 190, 208, 178, 208, 176, 208, 187, 32, 208, 188,
3284 208, 181, 208, 189, 209, 143, 32, 209, 129, 208, 178, 208, 190, 208,
3285 181, 208, 185, 32, 208, 186, 209, 128, 209, 131, 209, 130, 208, 181,
3286 208, 185, 209, 136, 208, 181, 208, 185, 32, 208, 189, 208, 190, 208,
3287 178, 208, 190, 209, 129, 209, 130, 209, 140, 209, 142, 0
3290 static const unsigned char utf8iso8859_1
[] =
3292 0x53, 0x79, 0x73, 0x74, 0xc3, 0xa8, 0x6d, 0x65, 0x73, 0x20, 0x49, 0x6e,
3293 0x74, 0xc3, 0xa9, 0x67, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x20, 0x65,
3294 0x6e, 0x20, 0x4d, 0xc3, 0xa9, 0x63, 0x61, 0x6e, 0x69, 0x71, 0x75, 0x65,
3295 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x69, 0x71, 0x75, 0x65, 0x20, 0x65,
3296 0x74, 0x20, 0x51, 0x75, 0x61, 0x6e, 0x74, 0x69, 0x71, 0x75, 0x65, 0
3299 static const unsigned char utf8Invalid
[] =
3301 0x3c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3e, 0x32, 0x30, 0x30,
3302 0x32, 0xe5, 0xb9, 0xb4, 0x30, 0x39, 0xe6, 0x9c, 0x88, 0x32, 0x35, 0xe6,
3303 0x97, 0xa5, 0x20, 0x30, 0x37, 0xe6, 0x99, 0x82, 0x33, 0x39, 0xe5, 0x88,
3304 0x86, 0x35, 0x37, 0xe7, 0xa7, 0x92, 0x3c, 0x2f, 0x64, 0x69, 0x73, 0x70,
3308 static const struct Utf8Data
3310 const unsigned char *text
;
3312 const wxChar
*charset
;
3313 wxFontEncoding encoding
;
3316 { utf8Invalid
, WXSIZEOF(utf8Invalid
), _T("iso8859-1"), wxFONTENCODING_ISO8859_1
},
3317 { utf8koi8r
, WXSIZEOF(utf8koi8r
), _T("koi8-r"), wxFONTENCODING_KOI8
},
3318 { utf8iso8859_1
, WXSIZEOF(utf8iso8859_1
), _T("iso8859-1"), wxFONTENCODING_ISO8859_1
},
3321 static void TestUtf8()
3323 wxPuts(_T("*** Testing UTF8 support ***\n"));
3328 for ( size_t n
= 0; n
< WXSIZEOF(utf8data
); n
++ )
3330 const Utf8Data
& u8d
= utf8data
[n
];
3331 if ( wxConvUTF8
.MB2WC(wbuf
, (const char *)u8d
.text
,
3332 WXSIZEOF(wbuf
)) == (size_t)-1 )
3334 wxPuts(_T("ERROR: UTF-8 decoding failed."));
3338 wxCSConv
conv(u8d
.charset
);
3339 if ( conv
.WC2MB(buf
, wbuf
, WXSIZEOF(buf
)) == (size_t)-1 )
3341 wxPrintf(_T("ERROR: conversion to %s failed.\n"), u8d
.charset
);
3345 wxPrintf(_T("String in %s: %s\n"), u8d
.charset
, buf
);
3349 wxString
s(wxConvUTF8
.cMB2WC((const char *)u8d
.text
));
3351 s
= _T("<< conversion failed >>");
3352 wxPrintf(_T("String in current cset: %s\n"), s
.c_str());
3356 wxPuts(wxEmptyString
);
3359 static void TestEncodingConverter()
3361 wxPuts(_T("*** Testing wxEncodingConverter ***\n"));
3363 // using wxEncodingConverter should give the same result as above
3366 if ( wxConvUTF8
.MB2WC(wbuf
, (const char *)utf8koi8r
,
3367 WXSIZEOF(utf8koi8r
)) == (size_t)-1 )
3369 wxPuts(_T("ERROR: UTF-8 decoding failed."));
3373 wxEncodingConverter ec
;
3374 ec
.Init(wxFONTENCODING_UNICODE
, wxFONTENCODING_KOI8
);
3375 ec
.Convert(wbuf
, buf
);
3376 wxPrintf(_T("The same KOI8-R string using wxEC: %s\n"), buf
);
3379 wxPuts(wxEmptyString
);
3382 #endif // TEST_WCHAR
3384 // ----------------------------------------------------------------------------
3386 // ----------------------------------------------------------------------------
3390 #include "wx/filesys.h"
3391 #include "wx/fs_zip.h"
3392 #include "wx/zipstrm.h"
3394 static const wxChar
*TESTFILE_ZIP
= _T("testdata.zip");
3396 static void TestZipStreamRead()
3398 wxPuts(_T("*** Testing ZIP reading ***\n"));
3400 static const wxString filename
= _T("foo");
3401 wxZipInputStream
istr(TESTFILE_ZIP
, filename
);
3402 wxPrintf(_T("Archive size: %u\n"), istr
.GetSize());
3404 wxPrintf(_T("Dumping the file '%s':\n"), filename
.c_str());
3405 while ( !istr
.Eof() )
3407 wxPutchar(istr
.GetC());
3411 wxPuts(_T("\n----- done ------"));
3414 static void DumpZipDirectory(wxFileSystem
& fs
,
3415 const wxString
& dir
,
3416 const wxString
& indent
)
3418 wxString prefix
= wxString::Format(_T("%s#zip:%s"),
3419 TESTFILE_ZIP
, dir
.c_str());
3420 wxString wildcard
= prefix
+ _T("/*");
3422 wxString dirname
= fs
.FindFirst(wildcard
, wxDIR
);
3423 while ( !dirname
.empty() )
3425 if ( !dirname
.StartsWith(prefix
+ _T('/'), &dirname
) )
3427 wxPrintf(_T("ERROR: unexpected wxFileSystem::FindNext result\n"));
3432 wxPrintf(_T("%s%s\n"), indent
.c_str(), dirname
.c_str());
3434 DumpZipDirectory(fs
, dirname
,
3435 indent
+ wxString(_T(' '), 4));
3437 dirname
= fs
.FindNext();
3440 wxString filename
= fs
.FindFirst(wildcard
, wxFILE
);
3441 while ( !filename
.empty() )
3443 if ( !filename
.StartsWith(prefix
, &filename
) )
3445 wxPrintf(_T("ERROR: unexpected wxFileSystem::FindNext result\n"));
3450 wxPrintf(_T("%s%s\n"), indent
.c_str(), filename
.c_str());
3452 filename
= fs
.FindNext();
3456 static void TestZipFileSystem()
3458 wxPuts(_T("*** Testing ZIP file system ***\n"));
3460 wxFileSystem::AddHandler(new wxZipFSHandler
);
3462 wxPrintf(_T("Dumping all files in the archive %s:\n"), TESTFILE_ZIP
);
3464 DumpZipDirectory(fs
, _T(""), wxString(_T(' '), 4));
3469 // ----------------------------------------------------------------------------
3471 // ----------------------------------------------------------------------------
3473 #ifdef TEST_DATETIME
3475 #include "wx/math.h"
3476 #include "wx/datetime.h"
3478 // this test miscellaneous static wxDateTime functions
3482 static void TestTimeStatic()
3484 wxPuts(_T("\n*** wxDateTime static methods test ***"));
3486 // some info about the current date
3487 int year
= wxDateTime::GetCurrentYear();
3488 wxPrintf(_T("Current year %d is %sa leap one and has %d days.\n"),
3490 wxDateTime::IsLeapYear(year
) ? "" : "not ",
3491 wxDateTime::GetNumberOfDays(year
));
3493 wxDateTime::Month month
= wxDateTime::GetCurrentMonth();
3494 wxPrintf(_T("Current month is '%s' ('%s') and it has %d days\n"),
3495 wxDateTime::GetMonthName(month
, wxDateTime::Name_Abbr
).c_str(),
3496 wxDateTime::GetMonthName(month
).c_str(),
3497 wxDateTime::GetNumberOfDays(month
));
3500 // test time zones stuff
3501 static void TestTimeZones()
3503 wxPuts(_T("\n*** wxDateTime timezone test ***"));
3505 wxDateTime now
= wxDateTime::Now();
3507 wxPrintf(_T("Current GMT time:\t%s\n"), now
.Format(_T("%c"), wxDateTime::GMT0
).c_str());
3508 wxPrintf(_T("Unix epoch (GMT):\t%s\n"), wxDateTime((time_t)0).Format(_T("%c"), wxDateTime::GMT0
).c_str());
3509 wxPrintf(_T("Unix epoch (EST):\t%s\n"), wxDateTime((time_t)0).Format(_T("%c"), wxDateTime::EST
).c_str());
3510 wxPrintf(_T("Current time in Paris:\t%s\n"), now
.Format(_T("%c"), wxDateTime::CET
).c_str());
3511 wxPrintf(_T(" Moscow:\t%s\n"), now
.Format(_T("%c"), wxDateTime::MSK
).c_str());
3512 wxPrintf(_T(" New York:\t%s\n"), now
.Format(_T("%c"), wxDateTime::EST
).c_str());
3514 wxPrintf(_T("%s\n"), wxDateTime::Now().Format(_T("Our timezone is %Z")).c_str());
3516 wxDateTime::Tm tm
= now
.GetTm();
3517 if ( wxDateTime(tm
) != now
)
3519 wxPrintf(_T("ERROR: got %s instead of %s\n"),
3520 wxDateTime(tm
).Format().c_str(), now
.Format().c_str());
3524 // test some minimal support for the dates outside the standard range
3525 static void TestTimeRange()
3527 wxPuts(_T("\n*** wxDateTime out-of-standard-range dates test ***"));
3529 static const wxChar
*fmt
= _T("%d-%b-%Y %H:%M:%S");
3531 wxPrintf(_T("Unix epoch:\t%s\n"),
3532 wxDateTime(2440587.5).Format(fmt
).c_str());
3533 wxPrintf(_T("Feb 29, 0: \t%s\n"),
3534 wxDateTime(29, wxDateTime::Feb
, 0).Format(fmt
).c_str());
3535 wxPrintf(_T("JDN 0: \t%s\n"),
3536 wxDateTime(0.0).Format(fmt
).c_str());
3537 wxPrintf(_T("Jan 1, 1AD:\t%s\n"),
3538 wxDateTime(1, wxDateTime::Jan
, 1).Format(fmt
).c_str());
3539 wxPrintf(_T("May 29, 2099:\t%s\n"),
3540 wxDateTime(29, wxDateTime::May
, 2099).Format(fmt
).c_str());
3543 // test DST calculations
3544 static void TestTimeDST()
3546 wxPuts(_T("\n*** wxDateTime DST test ***"));
3548 wxPrintf(_T("DST is%s in effect now.\n\n"),
3549 wxDateTime::Now().IsDST() ? wxEmptyString
: _T(" not"));
3551 for ( int year
= 1990; year
< 2005; year
++ )
3553 wxPrintf(_T("DST period in Europe for year %d: from %s to %s\n"),
3555 wxDateTime::GetBeginDST(year
, wxDateTime::Country_EEC
).Format().c_str(),
3556 wxDateTime::GetEndDST(year
, wxDateTime::Country_EEC
).Format().c_str());
3562 #if TEST_INTERACTIVE
3564 static void TestDateTimeInteractive()
3566 wxPuts(_T("\n*** interactive wxDateTime tests ***"));
3572 wxPrintf(_T("Enter a date: "));
3573 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
3576 // kill the last '\n'
3577 buf
[wxStrlen(buf
) - 1] = 0;
3580 const wxChar
*p
= dt
.ParseDate(buf
);
3583 wxPrintf(_T("ERROR: failed to parse the date '%s'.\n"), buf
);
3589 wxPrintf(_T("WARNING: parsed only first %u characters.\n"), p
- buf
);
3592 wxPrintf(_T("%s: day %u, week of month %u/%u, week of year %u\n"),
3593 dt
.Format(_T("%b %d, %Y")).c_str(),
3595 dt
.GetWeekOfMonth(wxDateTime::Monday_First
),
3596 dt
.GetWeekOfMonth(wxDateTime::Sunday_First
),
3597 dt
.GetWeekOfYear(wxDateTime::Monday_First
));
3600 wxPuts(_T("\n*** done ***"));
3603 #endif // TEST_INTERACTIVE
3607 static void TestTimeMS()
3609 wxPuts(_T("*** testing millisecond-resolution support in wxDateTime ***"));
3611 wxDateTime dt1
= wxDateTime::Now(),
3612 dt2
= wxDateTime::UNow();
3614 wxPrintf(_T("Now = %s\n"), dt1
.Format(_T("%H:%M:%S:%l")).c_str());
3615 wxPrintf(_T("UNow = %s\n"), dt2
.Format(_T("%H:%M:%S:%l")).c_str());
3616 wxPrintf(_T("Dummy loop: "));
3617 for ( int i
= 0; i
< 6000; i
++ )
3619 //for ( int j = 0; j < 10; j++ )
3622 s
.Printf(_T("%g"), sqrt((float)i
));
3628 wxPuts(_T(", done"));
3631 dt2
= wxDateTime::UNow();
3632 wxPrintf(_T("UNow = %s\n"), dt2
.Format(_T("%H:%M:%S:%l")).c_str());
3634 wxPrintf(_T("Loop executed in %s ms\n"), (dt2
- dt1
).Format(_T("%l")).c_str());
3636 wxPuts(_T("\n*** done ***"));
3639 static void TestTimeHolidays()
3641 wxPuts(_T("\n*** testing wxDateTimeHolidayAuthority ***\n"));
3643 wxDateTime::Tm tm
= wxDateTime(29, wxDateTime::May
, 2000).GetTm();
3644 wxDateTime
dtStart(1, tm
.mon
, tm
.year
),
3645 dtEnd
= dtStart
.GetLastMonthDay();
3647 wxDateTimeArray hol
;
3648 wxDateTimeHolidayAuthority::GetHolidaysInRange(dtStart
, dtEnd
, hol
);
3650 const wxChar
*format
= _T("%d-%b-%Y (%a)");
3652 wxPrintf(_T("All holidays between %s and %s:\n"),
3653 dtStart
.Format(format
).c_str(), dtEnd
.Format(format
).c_str());
3655 size_t count
= hol
.GetCount();
3656 for ( size_t n
= 0; n
< count
; n
++ )
3658 wxPrintf(_T("\t%s\n"), hol
[n
].Format(format
).c_str());
3661 wxPuts(wxEmptyString
);
3664 static void TestTimeZoneBug()
3666 wxPuts(_T("\n*** testing for DST/timezone bug ***\n"));
3668 wxDateTime date
= wxDateTime(1, wxDateTime::Mar
, 2000);
3669 for ( int i
= 0; i
< 31; i
++ )
3671 wxPrintf(_T("Date %s: week day %s.\n"),
3672 date
.Format(_T("%d-%m-%Y")).c_str(),
3673 date
.GetWeekDayName(date
.GetWeekDay()).c_str());
3675 date
+= wxDateSpan::Day();
3678 wxPuts(wxEmptyString
);
3681 static void TestTimeSpanFormat()
3683 wxPuts(_T("\n*** wxTimeSpan tests ***"));
3685 static const wxChar
*formats
[] =
3687 _T("(default) %H:%M:%S"),
3688 _T("%E weeks and %D days"),
3689 _T("%l milliseconds"),
3690 _T("(with ms) %H:%M:%S:%l"),
3691 _T("100%% of minutes is %M"), // test "%%"
3692 _T("%D days and %H hours"),
3693 _T("or also %S seconds"),
3696 wxTimeSpan
ts1(1, 2, 3, 4),
3698 for ( size_t n
= 0; n
< WXSIZEOF(formats
); n
++ )
3700 wxPrintf(_T("ts1 = %s\tts2 = %s\n"),
3701 ts1
.Format(formats
[n
]).c_str(),
3702 ts2
.Format(formats
[n
]).c_str());
3705 wxPuts(wxEmptyString
);
3710 #endif // TEST_DATETIME
3712 // ----------------------------------------------------------------------------
3713 // wxTextInput/OutputStream
3714 // ----------------------------------------------------------------------------
3716 #ifdef TEST_TEXTSTREAM
3718 #include "wx/txtstrm.h"
3719 #include "wx/wfstream.h"
3721 static void TestTextInputStream()
3723 wxPuts(_T("\n*** wxTextInputStream test ***"));
3725 wxString filename
= _T("testdata.fc");
3726 wxFileInputStream
fsIn(filename
);
3729 wxPuts(_T("ERROR: couldn't open file."));
3733 wxTextInputStream
tis(fsIn
);
3738 const wxString s
= tis
.ReadLine();
3740 // line could be non empty if the last line of the file isn't
3741 // terminated with EOL
3742 if ( fsIn
.Eof() && s
.empty() )
3745 wxPrintf(_T("Line %d: %s\n"), line
++, s
.c_str());
3750 #endif // TEST_TEXTSTREAM
3752 // ----------------------------------------------------------------------------
3754 // ----------------------------------------------------------------------------
3758 #include "wx/thread.h"
3760 static size_t gs_counter
= (size_t)-1;
3761 static wxCriticalSection gs_critsect
;
3762 static wxSemaphore gs_cond
;
3764 class MyJoinableThread
: public wxThread
3767 MyJoinableThread(size_t n
) : wxThread(wxTHREAD_JOINABLE
)
3768 { m_n
= n
; Create(); }
3770 // thread execution starts here
3771 virtual ExitCode
Entry();
3777 wxThread::ExitCode
MyJoinableThread::Entry()
3779 unsigned long res
= 1;
3780 for ( size_t n
= 1; n
< m_n
; n
++ )
3784 // it's a loooong calculation :-)
3788 return (ExitCode
)res
;
3791 class MyDetachedThread
: public wxThread
3794 MyDetachedThread(size_t n
, wxChar ch
)
3798 m_cancelled
= false;
3803 // thread execution starts here
3804 virtual ExitCode
Entry();
3807 virtual void OnExit();
3810 size_t m_n
; // number of characters to write
3811 wxChar m_ch
; // character to write
3813 bool m_cancelled
; // false if we exit normally
3816 wxThread::ExitCode
MyDetachedThread::Entry()
3819 wxCriticalSectionLocker
lock(gs_critsect
);
3820 if ( gs_counter
== (size_t)-1 )
3826 for ( size_t n
= 0; n
< m_n
; n
++ )
3828 if ( TestDestroy() )
3838 wxThread::Sleep(100);
3844 void MyDetachedThread::OnExit()
3846 wxLogTrace(_T("thread"), _T("Thread %ld is in OnExit"), GetId());
3848 wxCriticalSectionLocker
lock(gs_critsect
);
3849 if ( !--gs_counter
&& !m_cancelled
)
3853 static void TestDetachedThreads()
3855 wxPuts(_T("\n*** Testing detached threads ***"));
3857 static const size_t nThreads
= 3;
3858 MyDetachedThread
*threads
[nThreads
];
3860 for ( n
= 0; n
< nThreads
; n
++ )
3862 threads
[n
] = new MyDetachedThread(10, 'A' + n
);
3865 threads
[0]->SetPriority(WXTHREAD_MIN_PRIORITY
);
3866 threads
[1]->SetPriority(WXTHREAD_MAX_PRIORITY
);
3868 for ( n
= 0; n
< nThreads
; n
++ )
3873 // wait until all threads terminate
3876 wxPuts(wxEmptyString
);
3879 static void TestJoinableThreads()
3881 wxPuts(_T("\n*** Testing a joinable thread (a loooong calculation...) ***"));
3883 // calc 10! in the background
3884 MyJoinableThread
thread(10);
3887 wxPrintf(_T("\nThread terminated with exit code %lu.\n"),
3888 (unsigned long)thread
.Wait());
3891 static void TestThreadSuspend()
3893 wxPuts(_T("\n*** Testing thread suspend/resume functions ***"));
3895 MyDetachedThread
*thread
= new MyDetachedThread(15, 'X');
3899 // this is for this demo only, in a real life program we'd use another
3900 // condition variable which would be signaled from wxThread::Entry() to
3901 // tell us that the thread really started running - but here just wait a
3902 // bit and hope that it will be enough (the problem is, of course, that
3903 // the thread might still not run when we call Pause() which will result
3905 wxThread::Sleep(300);
3907 for ( size_t n
= 0; n
< 3; n
++ )
3911 wxPuts(_T("\nThread suspended"));
3914 // don't sleep but resume immediately the first time
3915 wxThread::Sleep(300);
3917 wxPuts(_T("Going to resume the thread"));
3922 wxPuts(_T("Waiting until it terminates now"));
3924 // wait until the thread terminates
3927 wxPuts(wxEmptyString
);
3930 static void TestThreadDelete()
3932 // As above, using Sleep() is only for testing here - we must use some
3933 // synchronisation object instead to ensure that the thread is still
3934 // running when we delete it - deleting a detached thread which already
3935 // terminated will lead to a crash!
3937 wxPuts(_T("\n*** Testing thread delete function ***"));
3939 MyDetachedThread
*thread0
= new MyDetachedThread(30, 'W');
3943 wxPuts(_T("\nDeleted a thread which didn't start to run yet."));
3945 MyDetachedThread
*thread1
= new MyDetachedThread(30, 'Y');
3949 wxThread::Sleep(300);
3953 wxPuts(_T("\nDeleted a running thread."));
3955 MyDetachedThread
*thread2
= new MyDetachedThread(30, 'Z');
3959 wxThread::Sleep(300);
3965 wxPuts(_T("\nDeleted a sleeping thread."));
3967 MyJoinableThread
thread3(20);
3972 wxPuts(_T("\nDeleted a joinable thread."));
3974 MyJoinableThread
thread4(2);
3977 wxThread::Sleep(300);
3981 wxPuts(_T("\nDeleted a joinable thread which already terminated."));
3983 wxPuts(wxEmptyString
);
3986 class MyWaitingThread
: public wxThread
3989 MyWaitingThread( wxMutex
*mutex
, wxCondition
*condition
)
3992 m_condition
= condition
;
3997 virtual ExitCode
Entry()
3999 wxPrintf(_T("Thread %lu has started running.\n"), GetId());
4004 wxPrintf(_T("Thread %lu starts to wait...\n"), GetId());
4008 m_condition
->Wait();
4011 wxPrintf(_T("Thread %lu finished to wait, exiting.\n"), GetId());
4019 wxCondition
*m_condition
;
4022 static void TestThreadConditions()
4025 wxCondition
condition(mutex
);
4027 // otherwise its difficult to understand which log messages pertain to
4029 //wxLogTrace(_T("thread"), _T("Local condition var is %08x, gs_cond = %08x"),
4030 // condition.GetId(), gs_cond.GetId());
4032 // create and launch threads
4033 MyWaitingThread
*threads
[10];
4036 for ( n
= 0; n
< WXSIZEOF(threads
); n
++ )
4038 threads
[n
] = new MyWaitingThread( &mutex
, &condition
);
4041 for ( n
= 0; n
< WXSIZEOF(threads
); n
++ )
4046 // wait until all threads run
4047 wxPuts(_T("Main thread is waiting for the other threads to start"));
4050 size_t nRunning
= 0;
4051 while ( nRunning
< WXSIZEOF(threads
) )
4057 wxPrintf(_T("Main thread: %u already running\n"), nRunning
);
4061 wxPuts(_T("Main thread: all threads started up."));
4064 wxThread::Sleep(500);
4067 // now wake one of them up
4068 wxPrintf(_T("Main thread: about to signal the condition.\n"));
4073 wxThread::Sleep(200);
4075 // wake all the (remaining) threads up, so that they can exit
4076 wxPrintf(_T("Main thread: about to broadcast the condition.\n"));
4078 condition
.Broadcast();
4080 // give them time to terminate (dirty!)
4081 wxThread::Sleep(500);
4084 #include "wx/utils.h"
4086 class MyExecThread
: public wxThread
4089 MyExecThread(const wxString
& command
) : wxThread(wxTHREAD_JOINABLE
),
4095 virtual ExitCode
Entry()
4097 return (ExitCode
)wxExecute(m_command
, wxEXEC_SYNC
);
4104 static void TestThreadExec()
4106 wxPuts(_T("*** Testing wxExecute interaction with threads ***\n"));
4108 MyExecThread
thread(_T("true"));
4111 wxPrintf(_T("Main program exit code: %ld.\n"),
4112 wxExecute(_T("false"), wxEXEC_SYNC
));
4114 wxPrintf(_T("Thread exit code: %ld.\n"), (long)thread
.Wait());
4118 #include "wx/datetime.h"
4120 class MySemaphoreThread
: public wxThread
4123 MySemaphoreThread(int i
, wxSemaphore
*sem
)
4124 : wxThread(wxTHREAD_JOINABLE
),
4131 virtual ExitCode
Entry()
4133 wxPrintf(_T("%s: Thread #%d (%ld) starting to wait for semaphore...\n"),
4134 wxDateTime::Now().FormatTime().c_str(), m_i
, (long)GetId());
4138 wxPrintf(_T("%s: Thread #%d (%ld) acquired the semaphore.\n"),
4139 wxDateTime::Now().FormatTime().c_str(), m_i
, (long)GetId());
4143 wxPrintf(_T("%s: Thread #%d (%ld) releasing the semaphore.\n"),
4144 wxDateTime::Now().FormatTime().c_str(), m_i
, (long)GetId());
4156 WX_DEFINE_ARRAY_PTR(wxThread
*, ArrayThreads
);
4158 static void TestSemaphore()
4160 wxPuts(_T("*** Testing wxSemaphore class. ***"));
4162 static const int SEM_LIMIT
= 3;
4164 wxSemaphore
sem(SEM_LIMIT
, SEM_LIMIT
);
4165 ArrayThreads threads
;
4167 for ( int i
= 0; i
< 3*SEM_LIMIT
; i
++ )
4169 threads
.Add(new MySemaphoreThread(i
, &sem
));
4170 threads
.Last()->Run();
4173 for ( size_t n
= 0; n
< threads
.GetCount(); n
++ )
4180 #endif // TEST_THREADS
4182 // ----------------------------------------------------------------------------
4184 // ----------------------------------------------------------------------------
4186 #ifdef TEST_SNGLINST
4187 #include "wx/snglinst.h"
4188 #endif // TEST_SNGLINST
4190 int main(int argc
, char **argv
)
4193 wxChar
**wxArgv
= new wxChar
*[argc
+ 1];
4198 for (n
= 0; n
< argc
; n
++ )
4200 wxMB2WXbuf warg
= wxConvertMB2WX(argv
[n
]);
4201 wxArgv
[n
] = wxStrdup(warg
);
4206 #else // !wxUSE_UNICODE
4208 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
4210 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE
, "program");
4212 wxInitializer initializer
;
4215 fprintf(stderr
, "Failed to initialize the wxWidgets library, aborting.");
4220 #ifdef TEST_SNGLINST
4221 wxSingleInstanceChecker checker
;
4222 if ( checker
.Create(_T(".wxconsole.lock")) )
4224 if ( checker
.IsAnotherRunning() )
4226 wxPrintf(_T("Another instance of the program is running, exiting.\n"));
4231 // wait some time to give time to launch another instance
4232 wxPrintf(_T("Press \"Enter\" to continue..."));
4235 else // failed to create
4237 wxPrintf(_T("Failed to init wxSingleInstanceChecker.\n"));
4239 #endif // TEST_SNGLINST
4242 TestCmdLineConvert();
4244 #if wxUSE_CMDLINE_PARSER
4245 static const wxCmdLineEntryDesc cmdLineDesc
[] =
4247 { wxCMD_LINE_SWITCH
, _T("h"), _T("help"), _T("show this help message"),
4248 wxCMD_LINE_VAL_NONE
, wxCMD_LINE_OPTION_HELP
},
4249 { wxCMD_LINE_SWITCH
, _T("v"), _T("verbose"), _T("be verbose") },
4250 { wxCMD_LINE_SWITCH
, _T("q"), _T("quiet"), _T("be quiet") },
4252 { wxCMD_LINE_OPTION
, _T("o"), _T("output"), _T("output file") },
4253 { wxCMD_LINE_OPTION
, _T("i"), _T("input"), _T("input dir") },
4254 { wxCMD_LINE_OPTION
, _T("s"), _T("size"), _T("output block size"),
4255 wxCMD_LINE_VAL_NUMBER
},
4256 { wxCMD_LINE_OPTION
, _T("d"), _T("date"), _T("output file date"),
4257 wxCMD_LINE_VAL_DATE
},
4259 { wxCMD_LINE_PARAM
, NULL
, NULL
, _T("input file"),
4260 wxCMD_LINE_VAL_STRING
, wxCMD_LINE_PARAM_MULTIPLE
},
4265 wxCmdLineParser
parser(cmdLineDesc
, argc
, wxArgv
);
4267 parser
.AddOption(_T("project_name"), _T(""), _T("full path to project file"),
4268 wxCMD_LINE_VAL_STRING
,
4269 wxCMD_LINE_OPTION_MANDATORY
| wxCMD_LINE_NEEDS_SEPARATOR
);
4271 switch ( parser
.Parse() )
4274 wxLogMessage(_T("Help was given, terminating."));
4278 ShowCmdLine(parser
);
4282 wxLogMessage(_T("Syntax error detected, aborting."));
4285 #endif // wxUSE_CMDLINE_PARSER
4287 #endif // TEST_CMDLINE
4299 TestDllListLoaded();
4300 #endif // TEST_DYNLIB
4304 #endif // TEST_ENVIRON
4308 #endif // TEST_EXECUTE
4310 #ifdef TEST_FILECONF
4312 #endif // TEST_FILECONF
4316 #endif // TEST_LOCALE
4319 wxPuts(_T("*** Testing wxLog ***"));
4322 for ( size_t n
= 0; n
< 8000; n
++ )
4324 s
<< (wxChar
)(_T('A') + (n
% 26));
4327 wxLogWarning(_T("The length of the string is %lu"),
4328 (unsigned long)s
.length());
4331 msg
.Printf(_T("A very very long message: '%s', the end!\n"), s
.c_str());
4333 // this one shouldn't be truncated
4336 // but this one will because log functions use fixed size buffer
4337 // (note that it doesn't need '\n' at the end neither - will be added
4339 wxLogMessage(_T("A very very long message 2: '%s', the end!"), s
.c_str());
4349 #ifdef TEST_FILENAME
4352 TestFileNameDirManip();
4353 TestFileNameComparison();
4354 TestFileNameOperations();
4355 #endif // TEST_FILENAME
4357 #ifdef TEST_FILETIME
4362 #endif // TEST_FILETIME
4365 wxLog::AddTraceMask(FTP_TRACE_MASK
);
4366 if ( TestFtpConnect() )
4376 #if TEST_INTERACTIVE
4377 TestFtpInteractive();
4380 //else: connecting to the FTP server failed
4388 wxLog::AddTraceMask(_T("mime"));
4393 TestMimeAssociate();
4397 #ifdef TEST_INFO_FUNCTIONS
4402 #if TEST_INTERACTIVE
4405 #endif // TEST_INFO_FUNCTIONS
4407 #ifdef TEST_PATHLIST
4409 #endif // TEST_PATHLIST
4417 #endif // TEST_PRINTF
4424 #endif // TEST_REGCONF
4426 #if defined TEST_REGEX && TEST_INTERACTIVE
4427 TestRegExInteractive();
4428 #endif // defined TEST_REGEX && TEST_INTERACTIVE
4430 #ifdef TEST_REGISTRY
4432 TestRegistryAssociation();
4433 #endif // TEST_REGISTRY
4438 #endif // TEST_SOCKETS
4445 #endif // TEST_STREAMS
4447 #ifdef TEST_TEXTSTREAM
4448 TestTextInputStream();
4449 #endif // TEST_TEXTSTREAM
4452 int nCPUs
= wxThread::GetCPUCount();
4453 wxPrintf(_T("This system has %d CPUs\n"), nCPUs
);
4455 wxThread::SetConcurrency(nCPUs
);
4457 TestJoinableThreads();
4460 TestJoinableThreads();
4461 TestDetachedThreads();
4462 TestThreadSuspend();
4464 TestThreadConditions();
4468 #endif // TEST_THREADS
4472 #endif // TEST_TIMER
4474 #ifdef TEST_DATETIME
4481 TestTimeSpanFormat();
4487 #if TEST_INTERACTIVE
4488 TestDateTimeInteractive();
4490 #endif // TEST_DATETIME
4492 #ifdef TEST_SCOPEGUARD
4496 #ifdef TEST_STACKWALKER
4497 #if wxUSE_STACKWALKER
4498 TestStackWalk(argv
[0]);
4500 #endif // TEST_STACKWALKER
4502 #ifdef TEST_STDPATHS
4503 TestStandardPaths();
4507 wxPuts(_T("Sleeping for 3 seconds... z-z-z-z-z..."));
4509 #endif // TEST_USLEEP
4514 #endif // TEST_VCARD
4518 #endif // TEST_VOLUME
4522 TestEncodingConverter();
4523 #endif // TEST_WCHAR
4526 TestZipStreamRead();
4527 TestZipFileSystem();
4532 for ( int n
= 0; n
< argc
; n
++ )
4537 #endif // wxUSE_UNICODE