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 // IMPORTANT NOTE FOR WXWIDGETS USERS:
13 // If you're a wxWidgets user and you're looking at this file to learn how to
14 // structure a wxWidgets console application, then you don't have much to learn.
15 // This application is used more for testing rather than as sample but
16 // basically the following simple block is enough for you to start your
17 // own console application:
20 int main(int argc, char **argv)
22 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, "program");
24 wxInitializer initializer;
27 fprintf(stderr, "Failed to initialize the wxWidgets library, aborting.");
31 static const wxCmdLineEntryDesc cmdLineDesc[] =
33 { wxCMD_LINE_SWITCH, "h", "help", "show this help message",
34 wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP },
35 // ... your other command line options here...
40 wxCmdLineParser parser(cmdLineDesc, argc, wxArgv);
41 switch ( parser.Parse() )
44 wxLogMessage(wxT("Help was given, terminating."));
48 // everything is ok; proceed
52 wxLogMessage(wxT("Syntax error detected, aborting."));
56 // do something useful here
63 // ============================================================================
65 // ============================================================================
67 // ----------------------------------------------------------------------------
69 // ----------------------------------------------------------------------------
75 #include "wx/string.h"
77 #include "wx/filename.h"
80 #include "wx/apptrait.h"
81 #include "wx/platinfo.h"
82 #include "wx/wxchar.h"
84 // without this pragma, the stupid compiler precompiles #defines below so that
85 // changing them doesn't "take place" later!
90 // ----------------------------------------------------------------------------
91 // conditional compilation
92 // ----------------------------------------------------------------------------
95 A note about all these conditional compilation macros: this file is used
96 both as a test suite for various non-GUI wxWidgets classes and as a
97 scratchpad for quick tests. So there are two compilation modes: if you
98 define TEST_ALL all tests are run, otherwise you may enable the individual
99 tests individually in the "#else" branch below.
102 // what to test (in alphabetic order)? Define TEST_ALL to 0 to do a single
103 // test, define it to 1 to do all tests.
112 #define TEST_FILENAME
113 #define TEST_FILETIME
114 #define TEST_INFO_FUNCTIONS
119 #define TEST_PATHLIST
120 #else // #if TEST_ALL
121 #define TEST_DATETIME
123 #define TEST_STDPATHS
124 #define TEST_STACKWALKER
126 #define TEST_SNGLINST
130 // some tests are interactive, define this to run them
131 #ifdef TEST_INTERACTIVE
132 #undef TEST_INTERACTIVE
134 #define TEST_INTERACTIVE 1
136 #define TEST_INTERACTIVE 1
139 // ============================================================================
141 // ============================================================================
143 // ----------------------------------------------------------------------------
145 // ----------------------------------------------------------------------------
152 static const wxChar
*ROOTDIR
= wxT("/");
153 static const wxChar
*TESTDIR
= wxT("/usr/local/share");
154 #elif defined(__WXMSW__) || defined(__DOS__) || defined(__OS2__)
155 static const wxChar
*ROOTDIR
= wxT("c:\\");
156 static const wxChar
*TESTDIR
= wxT("d:\\");
158 #error "don't know where the root directory is"
161 static void TestDirEnumHelper(wxDir
& dir
,
162 int flags
= wxDIR_DEFAULT
,
163 const wxString
& filespec
= wxEmptyString
)
167 if ( !dir
.IsOpened() )
170 bool cont
= dir
.GetFirst(&filename
, filespec
, flags
);
173 wxPrintf(wxT("\t%s\n"), filename
.c_str());
175 cont
= dir
.GetNext(&filename
);
178 wxPuts(wxEmptyString
);
183 static void TestDirEnum()
185 wxPuts(wxT("*** Testing wxDir::GetFirst/GetNext ***"));
187 wxString cwd
= wxGetCwd();
188 if ( !wxDir::Exists(cwd
) )
190 wxPrintf(wxT("ERROR: current directory '%s' doesn't exist?\n"), cwd
.c_str());
195 if ( !dir
.IsOpened() )
197 wxPrintf(wxT("ERROR: failed to open current directory '%s'.\n"), cwd
.c_str());
201 wxPuts(wxT("Enumerating everything in current directory:"));
202 TestDirEnumHelper(dir
);
204 wxPuts(wxT("Enumerating really everything in current directory:"));
205 TestDirEnumHelper(dir
, wxDIR_DEFAULT
| wxDIR_DOTDOT
);
207 wxPuts(wxT("Enumerating object files in current directory:"));
208 TestDirEnumHelper(dir
, wxDIR_DEFAULT
, wxT("*.o*"));
210 wxPuts(wxT("Enumerating directories in current directory:"));
211 TestDirEnumHelper(dir
, wxDIR_DIRS
);
213 wxPuts(wxT("Enumerating files in current directory:"));
214 TestDirEnumHelper(dir
, wxDIR_FILES
);
216 wxPuts(wxT("Enumerating files including hidden in current directory:"));
217 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
221 wxPuts(wxT("Enumerating everything in root directory:"));
222 TestDirEnumHelper(dir
, wxDIR_DEFAULT
);
224 wxPuts(wxT("Enumerating directories in root directory:"));
225 TestDirEnumHelper(dir
, wxDIR_DIRS
);
227 wxPuts(wxT("Enumerating files in root directory:"));
228 TestDirEnumHelper(dir
, wxDIR_FILES
);
230 wxPuts(wxT("Enumerating files including hidden in root directory:"));
231 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
233 wxPuts(wxT("Enumerating files in non existing directory:"));
234 wxDir
dirNo(wxT("nosuchdir"));
235 TestDirEnumHelper(dirNo
);
240 class DirPrintTraverser
: public wxDirTraverser
243 virtual wxDirTraverseResult
OnFile(const wxString
& WXUNUSED(filename
))
245 return wxDIR_CONTINUE
;
248 virtual wxDirTraverseResult
OnDir(const wxString
& dirname
)
250 wxString path
, name
, ext
;
251 wxFileName::SplitPath(dirname
, &path
, &name
, &ext
);
254 name
<< wxT('.') << ext
;
257 for ( const wxChar
*p
= path
.c_str(); *p
; p
++ )
259 if ( wxIsPathSeparator(*p
) )
263 wxPrintf(wxT("%s%s\n"), indent
.c_str(), name
.c_str());
265 return wxDIR_CONTINUE
;
269 static void TestDirTraverse()
271 wxPuts(wxT("*** Testing wxDir::Traverse() ***"));
275 size_t n
= wxDir::GetAllFiles(TESTDIR
, &files
);
276 wxPrintf(wxT("There are %u files under '%s'\n"), n
, TESTDIR
);
279 wxPrintf(wxT("First one is '%s'\n"), files
[0u].c_str());
280 wxPrintf(wxT(" last one is '%s'\n"), files
[n
- 1].c_str());
283 // enum again with custom traverser
284 wxPuts(wxT("Now enumerating directories:"));
286 DirPrintTraverser traverser
;
287 dir
.Traverse(traverser
, wxEmptyString
, wxDIR_DIRS
| wxDIR_HIDDEN
);
292 static void TestDirExists()
294 wxPuts(wxT("*** Testing wxDir::Exists() ***"));
296 static const wxChar
*dirnames
[] =
299 #if defined(__WXMSW__)
302 wxT("\\\\share\\file"),
306 wxT("c:\\autoexec.bat"),
307 #elif defined(__UNIX__)
316 for ( size_t n
= 0; n
< WXSIZEOF(dirnames
); n
++ )
318 wxPrintf(wxT("%-40s: %s\n"),
320 wxDir::Exists(dirnames
[n
]) ? wxT("exists")
321 : wxT("doesn't exist"));
329 // ----------------------------------------------------------------------------
331 // ----------------------------------------------------------------------------
335 #include "wx/dynlib.h"
337 static void TestDllLoad()
339 #if defined(__WXMSW__)
340 static const wxChar
*LIB_NAME
= wxT("kernel32.dll");
341 static const wxChar
*FUNC_NAME
= wxT("lstrlenA");
342 #elif defined(__UNIX__)
343 // weird: using just libc.so does *not* work!
344 static const wxChar
*LIB_NAME
= wxT("/lib/libc.so.6");
345 static const wxChar
*FUNC_NAME
= wxT("strlen");
347 #error "don't know how to test wxDllLoader on this platform"
350 wxPuts(wxT("*** testing basic wxDynamicLibrary functions ***\n"));
352 wxDynamicLibrary
lib(LIB_NAME
);
353 if ( !lib
.IsLoaded() )
355 wxPrintf(wxT("ERROR: failed to load '%s'.\n"), LIB_NAME
);
359 typedef int (wxSTDCALL
*wxStrlenType
)(const char *);
360 wxStrlenType pfnStrlen
= (wxStrlenType
)lib
.GetSymbol(FUNC_NAME
);
363 wxPrintf(wxT("ERROR: function '%s' wasn't found in '%s'.\n"),
364 FUNC_NAME
, LIB_NAME
);
368 wxPrintf(wxT("Calling %s dynamically loaded from %s "),
369 FUNC_NAME
, LIB_NAME
);
371 if ( pfnStrlen("foo") != 3 )
373 wxPrintf(wxT("ERROR: loaded function is not wxStrlen()!\n"));
377 wxPuts(wxT("... ok"));
382 static const wxChar
*FUNC_NAME_AW
= wxT("lstrlen");
384 typedef int (wxSTDCALL
*wxStrlenTypeAorW
)(const wxChar
*);
386 pfnStrlenAorW
= (wxStrlenTypeAorW
)lib
.GetSymbolAorW(FUNC_NAME_AW
);
387 if ( !pfnStrlenAorW
)
389 wxPrintf(wxT("ERROR: function '%s' wasn't found in '%s'.\n"),
390 FUNC_NAME_AW
, LIB_NAME
);
394 if ( pfnStrlenAorW(wxT("foobar")) != 6 )
396 wxPrintf(wxT("ERROR: loaded function is not wxStrlen()!\n"));
403 #if defined(__WXMSW__) || defined(__UNIX__)
405 static void TestDllListLoaded()
407 wxPuts(wxT("*** testing wxDynamicLibrary::ListLoaded() ***\n"));
409 puts("\nLoaded modules:");
410 wxDynamicLibraryDetailsArray dlls
= wxDynamicLibrary::ListLoaded();
411 const size_t count
= dlls
.GetCount();
412 for ( size_t n
= 0; n
< count
; ++n
)
414 const wxDynamicLibraryDetails
& details
= dlls
[n
];
415 printf("%-45s", (const char *)details
.GetPath().mb_str());
417 void *addr
wxDUMMY_INITIALIZE(NULL
);
418 size_t len
wxDUMMY_INITIALIZE(0);
419 if ( details
.GetAddress(&addr
, &len
) )
421 printf(" %08lx:%08lx",
422 (unsigned long)addr
, (unsigned long)((char *)addr
+ len
));
425 printf(" %s\n", (const char *)details
.GetVersion().mb_str());
431 #endif // TEST_DYNLIB
433 // ----------------------------------------------------------------------------
435 // ----------------------------------------------------------------------------
439 #include "wx/utils.h"
441 static wxString
MyGetEnv(const wxString
& var
)
444 if ( !wxGetEnv(var
, &val
) )
445 val
= wxT("<empty>");
447 val
= wxString(wxT('\'')) + val
+ wxT('\'');
452 static void TestEnvironment()
454 const wxChar
*var
= wxT("wxTestVar");
456 wxPuts(wxT("*** testing environment access functions ***"));
458 wxPrintf(wxT("Initially getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
459 wxSetEnv(var
, wxT("value for wxTestVar"));
460 wxPrintf(wxT("After wxSetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
461 wxSetEnv(var
, wxT("another value"));
462 wxPrintf(wxT("After 2nd wxSetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
464 wxPrintf(wxT("After wxUnsetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
465 wxPrintf(wxT("PATH = %s\n"), MyGetEnv(wxT("PATH")).c_str());
468 #endif // TEST_ENVIRON
470 // ----------------------------------------------------------------------------
472 // ----------------------------------------------------------------------------
477 #include "wx/ffile.h"
478 #include "wx/textfile.h"
480 static void TestFileRead()
482 wxPuts(wxT("*** wxFile read test ***"));
484 wxFile
file(wxT("testdata.fc"));
485 if ( file
.IsOpened() )
487 wxPrintf(wxT("File length: %lu\n"), file
.Length());
489 wxPuts(wxT("File dump:\n----------"));
491 static const size_t len
= 1024;
495 size_t nRead
= file
.Read(buf
, len
);
496 if ( nRead
== (size_t)wxInvalidOffset
)
498 wxPrintf(wxT("Failed to read the file."));
502 fwrite(buf
, nRead
, 1, stdout
);
508 wxPuts(wxT("----------"));
512 wxPrintf(wxT("ERROR: can't open test file.\n"));
515 wxPuts(wxEmptyString
);
518 static void TestTextFileRead()
520 wxPuts(wxT("*** wxTextFile read test ***"));
522 wxTextFile
file(wxT("testdata.fc"));
525 wxPrintf(wxT("Number of lines: %u\n"), file
.GetLineCount());
526 wxPrintf(wxT("Last line: '%s'\n"), file
.GetLastLine().c_str());
530 wxPuts(wxT("\nDumping the entire file:"));
531 for ( s
= file
.GetFirstLine(); !file
.Eof(); s
= file
.GetNextLine() )
533 wxPrintf(wxT("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
535 wxPrintf(wxT("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
537 wxPuts(wxT("\nAnd now backwards:"));
538 for ( s
= file
.GetLastLine();
539 file
.GetCurrentLine() != 0;
540 s
= file
.GetPrevLine() )
542 wxPrintf(wxT("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
544 wxPrintf(wxT("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
548 wxPrintf(wxT("ERROR: can't open '%s'\n"), file
.GetName());
551 wxPuts(wxEmptyString
);
554 static void TestFileCopy()
556 wxPuts(wxT("*** Testing wxCopyFile ***"));
558 static const wxChar
*filename1
= wxT("testdata.fc");
559 static const wxChar
*filename2
= wxT("test2");
560 if ( !wxCopyFile(filename1
, filename2
) )
562 wxPuts(wxT("ERROR: failed to copy file"));
566 wxFFile
f1(filename1
, wxT("rb")),
567 f2(filename2
, wxT("rb"));
569 if ( !f1
.IsOpened() || !f2
.IsOpened() )
571 wxPuts(wxT("ERROR: failed to open file(s)"));
576 if ( !f1
.ReadAll(&s1
) || !f2
.ReadAll(&s2
) )
578 wxPuts(wxT("ERROR: failed to read file(s)"));
582 if ( (s1
.length() != s2
.length()) ||
583 (memcmp(s1
.c_str(), s2
.c_str(), s1
.length()) != 0) )
585 wxPuts(wxT("ERROR: copy error!"));
589 wxPuts(wxT("File was copied ok."));
595 if ( !wxRemoveFile(filename2
) )
597 wxPuts(wxT("ERROR: failed to remove the file"));
600 wxPuts(wxEmptyString
);
603 static void TestTempFile()
605 wxPuts(wxT("*** wxTempFile test ***"));
608 if ( tmpFile
.Open(wxT("test2")) && tmpFile
.Write(wxT("the answer is 42")) )
610 if ( tmpFile
.Commit() )
611 wxPuts(wxT("File committed."));
613 wxPuts(wxT("ERROR: could't commit temp file."));
615 wxRemoveFile(wxT("test2"));
618 wxPuts(wxEmptyString
);
623 // ----------------------------------------------------------------------------
625 // ----------------------------------------------------------------------------
629 #include "wx/filename.h"
632 static void DumpFileName(const wxChar
*desc
, const wxFileName
& fn
)
636 wxString full
= fn
.GetFullPath();
638 wxString vol
, path
, name
, ext
;
639 wxFileName::SplitPath(full
, &vol
, &path
, &name
, &ext
);
641 wxPrintf(wxT("'%s'-> vol '%s', path '%s', name '%s', ext '%s'\n"),
642 full
.c_str(), vol
.c_str(), path
.c_str(), name
.c_str(), ext
.c_str());
644 wxFileName::SplitPath(full
, &path
, &name
, &ext
);
645 wxPrintf(wxT("or\t\t-> path '%s', name '%s', ext '%s'\n"),
646 path
.c_str(), name
.c_str(), ext
.c_str());
648 wxPrintf(wxT("path is also:\t'%s'\n"), fn
.GetPath().c_str());
649 wxPrintf(wxT("with volume: \t'%s'\n"),
650 fn
.GetPath(wxPATH_GET_VOLUME
).c_str());
651 wxPrintf(wxT("with separator:\t'%s'\n"),
652 fn
.GetPath(wxPATH_GET_SEPARATOR
).c_str());
653 wxPrintf(wxT("with both: \t'%s'\n"),
654 fn
.GetPath(wxPATH_GET_SEPARATOR
| wxPATH_GET_VOLUME
).c_str());
656 wxPuts(wxT("The directories in the path are:"));
657 wxArrayString dirs
= fn
.GetDirs();
658 size_t count
= dirs
.GetCount();
659 for ( size_t n
= 0; n
< count
; n
++ )
661 wxPrintf(wxT("\t%u: %s\n"), n
, dirs
[n
].c_str());
666 static void TestFileNameTemp()
668 wxPuts(wxT("*** testing wxFileName temp file creation ***"));
670 static const wxChar
*tmpprefixes
[] =
678 wxT("/tmp/foo/bar"), // this one must be an error
682 for ( size_t n
= 0; n
< WXSIZEOF(tmpprefixes
); n
++ )
684 wxString path
= wxFileName::CreateTempFileName(tmpprefixes
[n
]);
687 // "error" is not in upper case because it may be ok
688 wxPrintf(wxT("Prefix '%s'\t-> error\n"), tmpprefixes
[n
]);
692 wxPrintf(wxT("Prefix '%s'\t-> temp file '%s'\n"),
693 tmpprefixes
[n
], path
.c_str());
695 if ( !wxRemoveFile(path
) )
697 wxLogWarning(wxT("Failed to remove temp file '%s'"),
704 static void TestFileNameDirManip()
706 // TODO: test AppendDir(), RemoveDir(), ...
709 static void TestFileNameComparison()
714 static void TestFileNameOperations()
719 static void TestFileNameCwd()
724 #endif // TEST_FILENAME
726 // ----------------------------------------------------------------------------
727 // wxFileName time functions
728 // ----------------------------------------------------------------------------
732 #include "wx/filename.h"
733 #include "wx/datetime.h"
735 static void TestFileGetTimes()
737 wxFileName
fn(wxT("testdata.fc"));
739 wxDateTime dtAccess
, dtMod
, dtCreate
;
740 if ( !fn
.GetTimes(&dtAccess
, &dtMod
, &dtCreate
) )
742 wxPrintf(wxT("ERROR: GetTimes() failed.\n"));
746 static const wxChar
*fmt
= wxT("%Y-%b-%d %H:%M:%S");
748 wxPrintf(wxT("File times for '%s':\n"), fn
.GetFullPath().c_str());
749 wxPrintf(wxT("Creation: \t%s\n"), dtCreate
.Format(fmt
).c_str());
750 wxPrintf(wxT("Last read: \t%s\n"), dtAccess
.Format(fmt
).c_str());
751 wxPrintf(wxT("Last write: \t%s\n"), dtMod
.Format(fmt
).c_str());
756 static void TestFileSetTimes()
758 wxFileName
fn(wxT("testdata.fc"));
762 wxPrintf(wxT("ERROR: Touch() failed.\n"));
767 #endif // TEST_FILETIME
769 // ----------------------------------------------------------------------------
771 // ----------------------------------------------------------------------------
776 #include "wx/utils.h" // for wxSetEnv
778 static wxLocale gs_localeDefault
;
779 // NOTE: don't init it here as it needs a wxAppTraits object
780 // and thus must be init-ed after creation of the wxInitializer
781 // class in the main()
783 // find the name of the language from its value
784 static const wxChar
*GetLangName(int lang
)
786 static const wxChar
*languageNames
[] =
796 wxT("ARABIC_ALGERIA"),
797 wxT("ARABIC_BAHRAIN"),
800 wxT("ARABIC_JORDAN"),
801 wxT("ARABIC_KUWAIT"),
802 wxT("ARABIC_LEBANON"),
804 wxT("ARABIC_MOROCCO"),
807 wxT("ARABIC_SAUDI_ARABIA"),
810 wxT("ARABIC_TUNISIA"),
817 wxT("AZERI_CYRILLIC"),
832 wxT("CHINESE_SIMPLIFIED"),
833 wxT("CHINESE_TRADITIONAL"),
834 wxT("CHINESE_HONGKONG"),
835 wxT("CHINESE_MACAU"),
836 wxT("CHINESE_SINGAPORE"),
837 wxT("CHINESE_TAIWAN"),
843 wxT("DUTCH_BELGIAN"),
847 wxT("ENGLISH_AUSTRALIA"),
848 wxT("ENGLISH_BELIZE"),
849 wxT("ENGLISH_BOTSWANA"),
850 wxT("ENGLISH_CANADA"),
851 wxT("ENGLISH_CARIBBEAN"),
852 wxT("ENGLISH_DENMARK"),
854 wxT("ENGLISH_JAMAICA"),
855 wxT("ENGLISH_NEW_ZEALAND"),
856 wxT("ENGLISH_PHILIPPINES"),
857 wxT("ENGLISH_SOUTH_AFRICA"),
858 wxT("ENGLISH_TRINIDAD"),
859 wxT("ENGLISH_ZIMBABWE"),
867 wxT("FRENCH_BELGIAN"),
868 wxT("FRENCH_CANADIAN"),
869 wxT("FRENCH_LUXEMBOURG"),
870 wxT("FRENCH_MONACO"),
876 wxT("GERMAN_AUSTRIAN"),
877 wxT("GERMAN_BELGIUM"),
878 wxT("GERMAN_LIECHTENSTEIN"),
879 wxT("GERMAN_LUXEMBOURG"),
897 wxT("ITALIAN_SWISS"),
902 wxT("KASHMIRI_INDIA"),
920 wxT("MALAY_BRUNEI_DARUSSALAM"),
921 wxT("MALAY_MALAYSIA"),
931 wxT("NORWEGIAN_BOKMAL"),
932 wxT("NORWEGIAN_NYNORSK"),
939 wxT("PORTUGUESE_BRAZILIAN"),
942 wxT("RHAETO_ROMANCE"),
945 wxT("RUSSIAN_UKRAINE"),
951 wxT("SERBIAN_CYRILLIC"),
952 wxT("SERBIAN_LATIN"),
953 wxT("SERBO_CROATIAN"),
964 wxT("SPANISH_ARGENTINA"),
965 wxT("SPANISH_BOLIVIA"),
966 wxT("SPANISH_CHILE"),
967 wxT("SPANISH_COLOMBIA"),
968 wxT("SPANISH_COSTA_RICA"),
969 wxT("SPANISH_DOMINICAN_REPUBLIC"),
970 wxT("SPANISH_ECUADOR"),
971 wxT("SPANISH_EL_SALVADOR"),
972 wxT("SPANISH_GUATEMALA"),
973 wxT("SPANISH_HONDURAS"),
974 wxT("SPANISH_MEXICAN"),
975 wxT("SPANISH_MODERN"),
976 wxT("SPANISH_NICARAGUA"),
977 wxT("SPANISH_PANAMA"),
978 wxT("SPANISH_PARAGUAY"),
980 wxT("SPANISH_PUERTO_RICO"),
981 wxT("SPANISH_URUGUAY"),
983 wxT("SPANISH_VENEZUELA"),
987 wxT("SWEDISH_FINLAND"),
1005 wxT("URDU_PAKISTAN"),
1007 wxT("UZBEK_CYRILLIC"),
1020 if ( (size_t)lang
< WXSIZEOF(languageNames
) )
1021 return languageNames
[lang
];
1023 return wxT("INVALID");
1026 static void TestDefaultLang()
1028 wxPuts(wxT("*** Testing wxLocale::GetSystemLanguage ***"));
1030 gs_localeDefault
.Init(wxLANGUAGE_ENGLISH
);
1032 static const wxChar
*langStrings
[] =
1034 NULL
, // system default
1041 wxT("de_DE.iso88591"),
1043 wxT("?"), // invalid lang spec
1044 wxT("klingonese"), // I bet on some systems it does exist...
1047 wxPrintf(wxT("The default system encoding is %s (%d)\n"),
1048 wxLocale::GetSystemEncodingName().c_str(),
1049 wxLocale::GetSystemEncoding());
1051 for ( size_t n
= 0; n
< WXSIZEOF(langStrings
); n
++ )
1053 const wxChar
*langStr
= langStrings
[n
];
1056 // FIXME: this doesn't do anything at all under Windows, we need
1057 // to create a new wxLocale!
1058 wxSetEnv(wxT("LC_ALL"), langStr
);
1061 int lang
= gs_localeDefault
.GetSystemLanguage();
1062 wxPrintf(wxT("Locale for '%s' is %s.\n"),
1063 langStr
? langStr
: wxT("system default"), GetLangName(lang
));
1067 #endif // TEST_LOCALE
1069 // ----------------------------------------------------------------------------
1071 // ----------------------------------------------------------------------------
1075 #include "wx/mimetype.h"
1077 static void TestMimeEnum()
1079 wxPuts(wxT("*** Testing wxMimeTypesManager::EnumAllFileTypes() ***\n"));
1081 wxArrayString mimetypes
;
1083 size_t count
= wxTheMimeTypesManager
->EnumAllFileTypes(mimetypes
);
1085 wxPrintf(wxT("*** All %u known filetypes: ***\n"), count
);
1090 for ( size_t n
= 0; n
< count
; n
++ )
1092 wxFileType
*filetype
=
1093 wxTheMimeTypesManager
->GetFileTypeFromMimeType(mimetypes
[n
]);
1096 wxPrintf(wxT("nothing known about the filetype '%s'!\n"),
1097 mimetypes
[n
].c_str());
1101 filetype
->GetDescription(&desc
);
1102 filetype
->GetExtensions(exts
);
1104 filetype
->GetIcon(NULL
);
1107 for ( size_t e
= 0; e
< exts
.GetCount(); e
++ )
1110 extsAll
<< wxT(", ");
1114 wxPrintf(wxT("\t%s: %s (%s)\n"),
1115 mimetypes
[n
].c_str(), desc
.c_str(), extsAll
.c_str());
1118 wxPuts(wxEmptyString
);
1121 static void TestMimeFilename()
1123 wxPuts(wxT("*** Testing MIME type from filename query ***\n"));
1125 static const wxChar
*filenames
[] =
1128 wxT("document.pdf"),
1130 wxT("picture.jpeg"),
1133 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
1135 const wxString fname
= filenames
[n
];
1136 wxString ext
= fname
.AfterLast(wxT('.'));
1137 wxFileType
*ft
= wxTheMimeTypesManager
->GetFileTypeFromExtension(ext
);
1140 wxPrintf(wxT("WARNING: extension '%s' is unknown.\n"), ext
.c_str());
1145 if ( !ft
->GetDescription(&desc
) )
1146 desc
= wxT("<no description>");
1149 if ( !ft
->GetOpenCommand(&cmd
,
1150 wxFileType::MessageParameters(fname
, wxEmptyString
)) )
1151 cmd
= wxT("<no command available>");
1153 cmd
= wxString(wxT('"')) + cmd
+ wxT('"');
1155 wxPrintf(wxT("To open %s (%s) do %s.\n"),
1156 fname
.c_str(), desc
.c_str(), cmd
.c_str());
1162 wxPuts(wxEmptyString
);
1165 // these tests were broken by wxMimeTypesManager changes, temporarily disabling
1168 static void TestMimeOverride()
1170 wxPuts(wxT("*** Testing wxMimeTypesManager additional files loading ***\n"));
1172 static const wxChar
*mailcap
= wxT("/tmp/mailcap");
1173 static const wxChar
*mimetypes
= wxT("/tmp/mime.types");
1175 if ( wxFile::Exists(mailcap
) )
1176 wxPrintf(wxT("Loading mailcap from '%s': %s\n"),
1178 wxTheMimeTypesManager
->ReadMailcap(mailcap
) ? wxT("ok") : wxT("ERROR"));
1180 wxPrintf(wxT("WARN: mailcap file '%s' doesn't exist, not loaded.\n"),
1183 if ( wxFile::Exists(mimetypes
) )
1184 wxPrintf(wxT("Loading mime.types from '%s': %s\n"),
1186 wxTheMimeTypesManager
->ReadMimeTypes(mimetypes
) ? wxT("ok") : wxT("ERROR"));
1188 wxPrintf(wxT("WARN: mime.types file '%s' doesn't exist, not loaded.\n"),
1191 wxPuts(wxEmptyString
);
1194 static void TestMimeAssociate()
1196 wxPuts(wxT("*** Testing creation of filetype association ***\n"));
1198 wxFileTypeInfo
ftInfo(
1199 wxT("application/x-xyz"),
1200 wxT("xyzview '%s'"), // open cmd
1201 wxT(""), // print cmd
1202 wxT("XYZ File"), // description
1203 wxT(".xyz"), // extensions
1204 wxNullPtr
// end of extensions
1206 ftInfo
.SetShortDesc(wxT("XYZFile")); // used under Win32 only
1208 wxFileType
*ft
= wxTheMimeTypesManager
->Associate(ftInfo
);
1211 wxPuts(wxT("ERROR: failed to create association!"));
1215 // TODO: read it back
1219 wxPuts(wxEmptyString
);
1226 // ----------------------------------------------------------------------------
1227 // module dependencies feature
1228 // ----------------------------------------------------------------------------
1232 #include "wx/module.h"
1234 class wxTestModule
: public wxModule
1237 virtual bool OnInit() { wxPrintf(wxT("Load module: %s\n"), GetClassInfo()->GetClassName()); return true; }
1238 virtual void OnExit() { wxPrintf(wxT("Unload module: %s\n"), GetClassInfo()->GetClassName()); }
1241 class wxTestModuleA
: public wxTestModule
1246 DECLARE_DYNAMIC_CLASS(wxTestModuleA
)
1249 class wxTestModuleB
: public wxTestModule
1254 DECLARE_DYNAMIC_CLASS(wxTestModuleB
)
1257 class wxTestModuleC
: public wxTestModule
1262 DECLARE_DYNAMIC_CLASS(wxTestModuleC
)
1265 class wxTestModuleD
: public wxTestModule
1270 DECLARE_DYNAMIC_CLASS(wxTestModuleD
)
1273 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleC
, wxModule
)
1274 wxTestModuleC::wxTestModuleC()
1276 AddDependency(CLASSINFO(wxTestModuleD
));
1279 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleA
, wxModule
)
1280 wxTestModuleA::wxTestModuleA()
1282 AddDependency(CLASSINFO(wxTestModuleB
));
1283 AddDependency(CLASSINFO(wxTestModuleD
));
1286 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleD
, wxModule
)
1287 wxTestModuleD::wxTestModuleD()
1291 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleB
, wxModule
)
1292 wxTestModuleB::wxTestModuleB()
1294 AddDependency(CLASSINFO(wxTestModuleD
));
1295 AddDependency(CLASSINFO(wxTestModuleC
));
1298 #endif // TEST_MODULE
1300 // ----------------------------------------------------------------------------
1301 // misc information functions
1302 // ----------------------------------------------------------------------------
1304 #ifdef TEST_INFO_FUNCTIONS
1306 #include "wx/utils.h"
1308 #if TEST_INTERACTIVE
1309 static void TestDiskInfo()
1311 wxPuts(wxT("*** Testing wxGetDiskSpace() ***"));
1315 wxChar pathname
[128];
1316 wxPrintf(wxT("\nEnter a directory name: "));
1317 if ( !wxFgets(pathname
, WXSIZEOF(pathname
), stdin
) )
1320 // kill the last '\n'
1321 pathname
[wxStrlen(pathname
) - 1] = 0;
1323 wxLongLong total
, free
;
1324 if ( !wxGetDiskSpace(pathname
, &total
, &free
) )
1326 wxPuts(wxT("ERROR: wxGetDiskSpace failed."));
1330 wxPrintf(wxT("%sKb total, %sKb free on '%s'.\n"),
1331 (total
/ 1024).ToString().c_str(),
1332 (free
/ 1024).ToString().c_str(),
1337 #endif // TEST_INTERACTIVE
1339 static void TestOsInfo()
1341 wxPuts(wxT("*** Testing OS info functions ***\n"));
1344 wxGetOsVersion(&major
, &minor
);
1345 wxPrintf(wxT("Running under: %s, version %d.%d\n"),
1346 wxGetOsDescription().c_str(), major
, minor
);
1348 wxPrintf(wxT("%ld free bytes of memory left.\n"), wxGetFreeMemory().ToLong());
1350 wxPrintf(wxT("Host name is %s (%s).\n"),
1351 wxGetHostName().c_str(), wxGetFullHostName().c_str());
1353 wxPuts(wxEmptyString
);
1356 static void TestPlatformInfo()
1358 wxPuts(wxT("*** Testing wxPlatformInfo functions ***\n"));
1360 // get this platform
1361 wxPlatformInfo plat
;
1363 wxPrintf(wxT("Operating system family name is: %s\n"), plat
.GetOperatingSystemFamilyName().c_str());
1364 wxPrintf(wxT("Operating system name is: %s\n"), plat
.GetOperatingSystemIdName().c_str());
1365 wxPrintf(wxT("Port ID name is: %s\n"), plat
.GetPortIdName().c_str());
1366 wxPrintf(wxT("Port ID short name is: %s\n"), plat
.GetPortIdShortName().c_str());
1367 wxPrintf(wxT("Architecture is: %s\n"), plat
.GetArchName().c_str());
1368 wxPrintf(wxT("Endianness is: %s\n"), plat
.GetEndiannessName().c_str());
1370 wxPuts(wxEmptyString
);
1373 static void TestUserInfo()
1375 wxPuts(wxT("*** Testing user info functions ***\n"));
1377 wxPrintf(wxT("User id is:\t%s\n"), wxGetUserId().c_str());
1378 wxPrintf(wxT("User name is:\t%s\n"), wxGetUserName().c_str());
1379 wxPrintf(wxT("Home dir is:\t%s\n"), wxGetHomeDir().c_str());
1380 wxPrintf(wxT("Email address:\t%s\n"), wxGetEmailAddress().c_str());
1382 wxPuts(wxEmptyString
);
1385 #endif // TEST_INFO_FUNCTIONS
1387 // ----------------------------------------------------------------------------
1389 // ----------------------------------------------------------------------------
1391 #ifdef TEST_PATHLIST
1394 #define CMD_IN_PATH wxT("ls")
1396 #define CMD_IN_PATH wxT("command.com")
1399 static void TestPathList()
1401 wxPuts(wxT("*** Testing wxPathList ***\n"));
1403 wxPathList pathlist
;
1404 pathlist
.AddEnvList(wxT("PATH"));
1405 wxString path
= pathlist
.FindValidPath(CMD_IN_PATH
);
1408 wxPrintf(wxT("ERROR: command not found in the path.\n"));
1412 wxPrintf(wxT("Command found in the path as '%s'.\n"), path
.c_str());
1416 #endif // TEST_PATHLIST
1418 // ----------------------------------------------------------------------------
1419 // regular expressions
1420 // ----------------------------------------------------------------------------
1422 #if defined TEST_REGEX && TEST_INTERACTIVE
1424 #include "wx/regex.h"
1426 static void TestRegExInteractive()
1428 wxPuts(wxT("*** Testing RE interactively ***"));
1432 wxChar pattern
[128];
1433 wxPrintf(wxT("\nEnter a pattern: "));
1434 if ( !wxFgets(pattern
, WXSIZEOF(pattern
), stdin
) )
1437 // kill the last '\n'
1438 pattern
[wxStrlen(pattern
) - 1] = 0;
1441 if ( !re
.Compile(pattern
) )
1449 wxPrintf(wxT("Enter text to match: "));
1450 if ( !wxFgets(text
, WXSIZEOF(text
), stdin
) )
1453 // kill the last '\n'
1454 text
[wxStrlen(text
) - 1] = 0;
1456 if ( !re
.Matches(text
) )
1458 wxPrintf(wxT("No match.\n"));
1462 wxPrintf(wxT("Pattern matches at '%s'\n"), re
.GetMatch(text
).c_str());
1465 for ( size_t n
= 1; ; n
++ )
1467 if ( !re
.GetMatch(&start
, &len
, n
) )
1472 wxPrintf(wxT("Subexpr %u matched '%s'\n"),
1473 n
, wxString(text
+ start
, len
).c_str());
1480 #endif // TEST_REGEX
1482 // ----------------------------------------------------------------------------
1484 // ----------------------------------------------------------------------------
1488 #include "wx/protocol/ftp.h"
1489 #include "wx/protocol/log.h"
1491 #define FTP_ANONYMOUS
1495 #ifdef FTP_ANONYMOUS
1496 static const wxChar
*hostname
= wxT("ftp.wxwidgets.org");
1497 static const wxChar
*directory
= wxT("/pub");
1498 static const wxChar
*filename
= wxT("welcome.msg");
1500 static const wxChar
*hostname
= "localhost";
1501 static const wxChar
*directory
= wxT("/etc");
1502 static const wxChar
*filename
= wxT("issue");
1505 static bool TestFtpConnect()
1507 wxPuts(wxT("*** Testing FTP connect ***"));
1509 #ifdef FTP_ANONYMOUS
1510 wxPrintf(wxT("--- Attempting to connect to %s:21 anonymously...\n"), hostname
);
1511 #else // !FTP_ANONYMOUS
1513 wxFgets(user
, WXSIZEOF(user
), stdin
);
1514 user
[wxStrlen(user
) - 1] = '\0'; // chop off '\n'
1517 wxChar password
[256];
1518 wxPrintf(wxT("Password for %s: "), password
);
1519 wxFgets(password
, WXSIZEOF(password
), stdin
);
1520 password
[wxStrlen(password
) - 1] = '\0'; // chop off '\n'
1521 ftp
->SetPassword(password
);
1523 wxPrintf(wxT("--- Attempting to connect to %s:21 as %s...\n"), hostname
, user
);
1524 #endif // FTP_ANONYMOUS/!FTP_ANONYMOUS
1526 if ( !ftp
->Connect(hostname
) )
1528 wxPrintf(wxT("ERROR: failed to connect to %s\n"), hostname
);
1534 wxPrintf(wxT("--- Connected to %s, current directory is '%s'\n"),
1535 hostname
, ftp
->Pwd().c_str());
1542 #if TEST_INTERACTIVE
1543 static void TestFtpInteractive()
1545 wxPuts(wxT("\n*** Interactive wxFTP test ***"));
1551 wxPrintf(wxT("Enter FTP command (or 'quit' to escape): "));
1552 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
1555 // kill the last '\n'
1556 buf
[wxStrlen(buf
) - 1] = 0;
1558 // special handling of LIST and NLST as they require data connection
1559 wxString
start(buf
, 4);
1561 if ( start
== wxT("LIST") || start
== wxT("NLST") )
1564 if ( wxStrlen(buf
) > 4 )
1567 wxArrayString files
;
1568 if ( !ftp
->GetList(files
, wildcard
, start
== wxT("LIST")) )
1570 wxPrintf(wxT("ERROR: failed to get %s of files\n"), start
.c_str());
1574 wxPrintf(wxT("--- %s of '%s' under '%s':\n"),
1575 start
.c_str(), wildcard
.c_str(), ftp
->Pwd().c_str());
1576 size_t count
= files
.GetCount();
1577 for ( size_t n
= 0; n
< count
; n
++ )
1579 wxPrintf(wxT("\t%s\n"), files
[n
].c_str());
1581 wxPuts(wxT("--- End of the file list"));
1584 else if ( start
== wxT("QUIT") )
1586 break; // get out of here!
1590 wxChar ch
= ftp
->SendCommand(buf
);
1591 wxPrintf(wxT("Command %s"), ch
? wxT("succeeded") : wxT("failed"));
1594 wxPrintf(wxT(" (return code %c)"), ch
);
1597 wxPrintf(wxT(", server reply:\n%s\n\n"), ftp
->GetLastResult().c_str());
1603 #endif // TEST_INTERACTIVE
1606 // ----------------------------------------------------------------------------
1608 // ----------------------------------------------------------------------------
1610 #ifdef TEST_STACKWALKER
1612 #if wxUSE_STACKWALKER
1614 #include "wx/stackwalk.h"
1616 class StackDump
: public wxStackWalker
1619 StackDump(const char *argv0
)
1620 : wxStackWalker(argv0
)
1624 virtual void Walk(size_t skip
= 1, size_t maxdepth
= wxSTACKWALKER_MAX_DEPTH
)
1626 wxPuts(wxT("Stack dump:"));
1628 wxStackWalker::Walk(skip
, maxdepth
);
1632 virtual void OnStackFrame(const wxStackFrame
& frame
)
1634 printf("[%2d] ", (int) frame
.GetLevel());
1636 wxString name
= frame
.GetName();
1637 if ( !name
.empty() )
1639 printf("%-20.40s", (const char*)name
.mb_str());
1643 printf("0x%08lx", (unsigned long)frame
.GetAddress());
1646 if ( frame
.HasSourceLocation() )
1649 (const char*)frame
.GetFileName().mb_str(),
1650 (int)frame
.GetLine());
1656 for ( size_t n
= 0; frame
.GetParam(n
, &type
, &name
, &val
); n
++ )
1658 printf("\t%s %s = %s\n", (const char*)type
.mb_str(),
1659 (const char*)name
.mb_str(),
1660 (const char*)val
.mb_str());
1665 static void TestStackWalk(const char *argv0
)
1667 wxPuts(wxT("*** Testing wxStackWalker ***"));
1669 StackDump
dump(argv0
);
1675 #endif // wxUSE_STACKWALKER
1677 #endif // TEST_STACKWALKER
1679 // ----------------------------------------------------------------------------
1681 // ----------------------------------------------------------------------------
1683 #ifdef TEST_STDPATHS
1685 #include "wx/stdpaths.h"
1686 #include "wx/wxchar.h" // wxPrintf
1688 static void TestStandardPaths()
1690 wxPuts(wxT("*** Testing wxStandardPaths ***"));
1692 wxTheApp
->SetAppName(wxT("console"));
1694 wxStandardPathsBase
& stdp
= wxStandardPaths::Get();
1695 wxPrintf(wxT("Config dir (sys):\t%s\n"), stdp
.GetConfigDir().c_str());
1696 wxPrintf(wxT("Config dir (user):\t%s\n"), stdp
.GetUserConfigDir().c_str());
1697 wxPrintf(wxT("Data dir (sys):\t\t%s\n"), stdp
.GetDataDir().c_str());
1698 wxPrintf(wxT("Data dir (sys local):\t%s\n"), stdp
.GetLocalDataDir().c_str());
1699 wxPrintf(wxT("Data dir (user):\t%s\n"), stdp
.GetUserDataDir().c_str());
1700 wxPrintf(wxT("Data dir (user local):\t%s\n"), stdp
.GetUserLocalDataDir().c_str());
1701 wxPrintf(wxT("Documents dir:\t\t%s\n"), stdp
.GetDocumentsDir().c_str());
1702 wxPrintf(wxT("Executable path:\t%s\n"), stdp
.GetExecutablePath().c_str());
1703 wxPrintf(wxT("Plugins dir:\t\t%s\n"), stdp
.GetPluginsDir().c_str());
1704 wxPrintf(wxT("Resources dir:\t\t%s\n"), stdp
.GetResourcesDir().c_str());
1705 wxPrintf(wxT("Localized res. dir:\t%s\n"),
1706 stdp
.GetLocalizedResourcesDir(wxT("fr")).c_str());
1707 wxPrintf(wxT("Message catalogs dir:\t%s\n"),
1708 stdp
.GetLocalizedResourcesDir
1711 wxStandardPaths::ResourceCat_Messages
1717 #endif // TEST_STDPATHS
1719 // ----------------------------------------------------------------------------
1721 // ----------------------------------------------------------------------------
1723 #if !defined(__WIN32__) || !wxUSE_FSVOLUME
1729 #include "wx/volume.h"
1731 static const wxChar
*volumeKinds
[] =
1737 wxT("network volume"),
1738 wxT("other volume"),
1741 static void TestFSVolume()
1743 wxPuts(wxT("*** Testing wxFSVolume class ***"));
1745 wxArrayString volumes
= wxFSVolume::GetVolumes();
1746 size_t count
= volumes
.GetCount();
1750 wxPuts(wxT("ERROR: no mounted volumes?"));
1754 wxPrintf(wxT("%u mounted volumes found:\n"), count
);
1756 for ( size_t n
= 0; n
< count
; n
++ )
1758 wxFSVolume
vol(volumes
[n
]);
1761 wxPuts(wxT("ERROR: couldn't create volume"));
1765 wxPrintf(wxT("%u: %s (%s), %s, %s, %s\n"),
1767 vol
.GetDisplayName().c_str(),
1768 vol
.GetName().c_str(),
1769 volumeKinds
[vol
.GetKind()],
1770 vol
.IsWritable() ? wxT("rw") : wxT("ro"),
1771 vol
.GetFlags() & wxFS_VOL_REMOVABLE
? wxT("removable")
1778 #endif // TEST_VOLUME
1780 // ----------------------------------------------------------------------------
1782 // ----------------------------------------------------------------------------
1784 #ifdef TEST_DATETIME
1786 #include "wx/math.h"
1787 #include "wx/datetime.h"
1789 #if TEST_INTERACTIVE
1791 static void TestDateTimeInteractive()
1793 wxPuts(wxT("\n*** interactive wxDateTime tests ***"));
1799 wxPrintf(wxT("Enter a date (or 'quit' to escape): "));
1800 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
1803 // kill the last '\n'
1804 buf
[wxStrlen(buf
) - 1] = 0;
1806 if ( wxString(buf
).CmpNoCase("quit") == 0 )
1810 const wxChar
*p
= dt
.ParseDate(buf
);
1813 wxPrintf(wxT("ERROR: failed to parse the date '%s'.\n"), buf
);
1819 wxPrintf(wxT("WARNING: parsed only first %u characters.\n"), p
- buf
);
1822 wxPrintf(wxT("%s: day %u, week of month %u/%u, week of year %u\n"),
1823 dt
.Format(wxT("%b %d, %Y")).c_str(),
1825 dt
.GetWeekOfMonth(wxDateTime::Monday_First
),
1826 dt
.GetWeekOfMonth(wxDateTime::Sunday_First
),
1827 dt
.GetWeekOfYear(wxDateTime::Monday_First
));
1833 #endif // TEST_INTERACTIVE
1834 #endif // TEST_DATETIME
1836 // ----------------------------------------------------------------------------
1838 // ----------------------------------------------------------------------------
1840 #ifdef TEST_SNGLINST
1842 #include "wx/snglinst.h"
1844 static bool TestSingleIstance()
1846 wxPuts(wxT("\n*** Testing wxSingleInstanceChecker ***"));
1848 wxSingleInstanceChecker checker
;
1849 if ( checker
.Create(wxT(".wxconsole.lock")) )
1851 if ( checker
.IsAnotherRunning() )
1853 wxPrintf(wxT("Another instance of the program is running, exiting.\n"));
1858 // wait some time to give time to launch another instance
1859 wxPuts(wxT("If you try to run another instance of this program now, it won't start."));
1860 wxPrintf(wxT("Press \"Enter\" to exit wxSingleInstanceChecker test and proceed..."));
1863 else // failed to create
1865 wxPrintf(wxT("Failed to init wxSingleInstanceChecker.\n"));
1872 #endif // TEST_SNGLINST
1875 // ----------------------------------------------------------------------------
1877 // ----------------------------------------------------------------------------
1879 int main(int argc
, char **argv
)
1882 wxChar
**wxArgv
= new wxChar
*[argc
+ 1];
1887 for (n
= 0; n
< argc
; n
++ )
1889 wxMB2WXbuf warg
= wxConvertMB2WX(argv
[n
]);
1890 wxArgv
[n
] = wxStrdup(warg
);
1895 #else // !wxUSE_UNICODE
1897 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1899 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE
, "program");
1901 wxInitializer initializer
;
1904 fprintf(stderr
, "Failed to initialize the wxWidgets library, aborting.");
1909 #ifdef TEST_SNGLINST
1910 if (!TestSingleIstance())
1912 #endif // TEST_SNGLINST
1924 TestDllListLoaded();
1925 #endif // TEST_DYNLIB
1929 #endif // TEST_ENVIRON
1933 #endif // TEST_LOCALE
1936 wxPuts(wxT("*** Testing wxLog ***"));
1939 for ( size_t n
= 0; n
< 8000; n
++ )
1941 s
<< (wxChar
)(wxT('A') + (n
% 26));
1944 wxLogWarning(wxT("The length of the string is %lu"),
1945 (unsigned long)s
.length());
1948 msg
.Printf(wxT("A very very long message: '%s', the end!\n"), s
.c_str());
1950 // this one shouldn't be truncated
1953 // but this one will because log functions use fixed size buffer
1954 // (note that it doesn't need '\n' at the end neither - will be added
1956 wxLogMessage(wxT("A very very long message 2: '%s', the end!"), s
.c_str());
1966 #ifdef TEST_FILENAME
1969 TestFileNameDirManip();
1970 TestFileNameComparison();
1971 TestFileNameOperations();
1972 #endif // TEST_FILENAME
1974 #ifdef TEST_FILETIME
1979 #endif // TEST_FILETIME
1982 wxLog::AddTraceMask(FTP_TRACE_MASK
);
1984 // wxFTP cannot be a static variable as its ctor needs to access
1985 // wxWidgets internals after it has been initialized
1987 ftp
->SetLog(new wxProtocolLog(FTP_TRACE_MASK
));
1988 if ( TestFtpConnect() )
1989 TestFtpInteractive();
1990 //else: connecting to the FTP server failed
1996 //wxLog::AddTraceMask(wxT("mime"));
2000 TestMimeAssociate();
2005 #ifdef TEST_INFO_FUNCTIONS
2010 #if TEST_INTERACTIVE
2013 #endif // TEST_INFO_FUNCTIONS
2015 #ifdef TEST_PATHLIST
2017 #endif // TEST_PATHLIST
2021 #endif // TEST_PRINTF
2023 #if defined TEST_REGEX && TEST_INTERACTIVE
2024 TestRegExInteractive();
2025 #endif // defined TEST_REGEX && TEST_INTERACTIVE
2027 #ifdef TEST_DATETIME
2028 #if TEST_INTERACTIVE
2029 TestDateTimeInteractive();
2031 #endif // TEST_DATETIME
2033 #ifdef TEST_STACKWALKER
2034 #if wxUSE_STACKWALKER
2035 TestStackWalk(argv
[0]);
2037 #endif // TEST_STACKWALKER
2039 #ifdef TEST_STDPATHS
2040 TestStandardPaths();
2044 wxPuts(wxT("Sleeping for 3 seconds... z-z-z-z-z..."));
2046 #endif // TEST_USLEEP
2050 #endif // TEST_VOLUME
2054 for ( int n
= 0; n
< argc
; n
++ )
2059 #endif // wxUSE_UNICODE