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.
109 #define TEST_DATETIME
114 #define TEST_FILECONF
115 #define TEST_FILENAME
116 #define TEST_FILETIME
118 #define TEST_INFO_FUNCTIONS
123 #define TEST_PATHLIST
127 #define TEST_REGISTRY
128 #define TEST_SCOPEGUARD
129 #define TEST_SNGLINST
130 // #define TEST_SOCKETS --FIXME! (RN)
131 #define TEST_STACKWALKER
132 #define TEST_STDPATHS
134 #else // #if TEST_ALL
135 #define TEST_DATETIME
139 // some tests are interactive, define this to run them
140 #ifdef TEST_INTERACTIVE
141 #undef TEST_INTERACTIVE
143 #define TEST_INTERACTIVE 1
145 #define TEST_INTERACTIVE 1
148 // ============================================================================
150 // ============================================================================
152 // ----------------------------------------------------------------------------
154 // ----------------------------------------------------------------------------
156 #if defined(TEST_SOCKETS)
158 // replace TABs with \t and CRs with \n
159 static wxString
MakePrintable(const wxChar
*s
)
162 (void)str
.Replace(wxT("\t"), wxT("\\t"));
163 (void)str
.Replace(wxT("\n"), wxT("\\n"));
164 (void)str
.Replace(wxT("\r"), wxT("\\r"));
169 #endif // MakePrintable() is used
171 // ----------------------------------------------------------------------------
173 // ----------------------------------------------------------------------------
177 #include "wx/cmdline.h"
178 #include "wx/datetime.h"
180 #if wxUSE_CMDLINE_PARSER
182 static void ShowCmdLine(const wxCmdLineParser
& parser
)
184 wxString s
= wxT("Command line parsed successfully:\nInput files: ");
186 size_t count
= parser
.GetParamCount();
187 for ( size_t param
= 0; param
< count
; param
++ )
189 s
<< parser
.GetParam(param
) << ' ';
193 << wxT("Verbose:\t") << (parser
.Found(wxT("v")) ? wxT("yes") : wxT("no")) << '\n'
194 << wxT("Quiet:\t") << (parser
.Found(wxT("q")) ? wxT("yes") : wxT("no")) << '\n';
200 if ( parser
.Found(wxT("o"), &strVal
) )
201 s
<< wxT("Output file:\t") << strVal
<< '\n';
202 if ( parser
.Found(wxT("i"), &strVal
) )
203 s
<< wxT("Input dir:\t") << strVal
<< '\n';
204 if ( parser
.Found(wxT("s"), &lVal
) )
205 s
<< wxT("Size:\t") << lVal
<< '\n';
206 if ( parser
.Found(wxT("f"), &dVal
) )
207 s
<< wxT("Double:\t") << dVal
<< '\n';
208 if ( parser
.Found(wxT("d"), &dt
) )
209 s
<< wxT("Date:\t") << dt
.FormatISODate() << '\n';
210 if ( parser
.Found(wxT("project_name"), &strVal
) )
211 s
<< wxT("Project:\t") << strVal
<< '\n';
216 #endif // wxUSE_CMDLINE_PARSER
218 static void TestCmdLineConvert()
220 static const wxChar
*cmdlines
[] =
223 wxT("-a \"-bstring 1\" -c\"string 2\" \"string 3\""),
224 wxT("literal \\\" and \"\""),
227 for ( size_t n
= 0; n
< WXSIZEOF(cmdlines
); n
++ )
229 const wxChar
*cmdline
= cmdlines
[n
];
230 wxPrintf(wxT("Parsing: %s\n"), cmdline
);
231 wxArrayString args
= wxCmdLineParser::ConvertStringToArgs(cmdline
);
233 size_t count
= args
.GetCount();
234 wxPrintf(wxT("\targc = %u\n"), count
);
235 for ( size_t arg
= 0; arg
< count
; arg
++ )
237 wxPrintf(wxT("\targv[%u] = %s\n"), arg
, args
[arg
].c_str());
242 #endif // TEST_CMDLINE
244 // ----------------------------------------------------------------------------
246 // ----------------------------------------------------------------------------
253 static const wxChar
*ROOTDIR
= wxT("/");
254 static const wxChar
*TESTDIR
= wxT("/usr/local/share");
255 #elif defined(__WXMSW__) || defined(__DOS__) || defined(__OS2__)
256 static const wxChar
*ROOTDIR
= wxT("c:\\");
257 static const wxChar
*TESTDIR
= wxT("d:\\");
259 #error "don't know where the root directory is"
262 static void TestDirEnumHelper(wxDir
& dir
,
263 int flags
= wxDIR_DEFAULT
,
264 const wxString
& filespec
= wxEmptyString
)
268 if ( !dir
.IsOpened() )
271 bool cont
= dir
.GetFirst(&filename
, filespec
, flags
);
274 wxPrintf(wxT("\t%s\n"), filename
.c_str());
276 cont
= dir
.GetNext(&filename
);
279 wxPuts(wxEmptyString
);
284 static void TestDirEnum()
286 wxPuts(wxT("*** Testing wxDir::GetFirst/GetNext ***"));
288 wxString cwd
= wxGetCwd();
289 if ( !wxDir::Exists(cwd
) )
291 wxPrintf(wxT("ERROR: current directory '%s' doesn't exist?\n"), cwd
.c_str());
296 if ( !dir
.IsOpened() )
298 wxPrintf(wxT("ERROR: failed to open current directory '%s'.\n"), cwd
.c_str());
302 wxPuts(wxT("Enumerating everything in current directory:"));
303 TestDirEnumHelper(dir
);
305 wxPuts(wxT("Enumerating really everything in current directory:"));
306 TestDirEnumHelper(dir
, wxDIR_DEFAULT
| wxDIR_DOTDOT
);
308 wxPuts(wxT("Enumerating object files in current directory:"));
309 TestDirEnumHelper(dir
, wxDIR_DEFAULT
, wxT("*.o*"));
311 wxPuts(wxT("Enumerating directories in current directory:"));
312 TestDirEnumHelper(dir
, wxDIR_DIRS
);
314 wxPuts(wxT("Enumerating files in current directory:"));
315 TestDirEnumHelper(dir
, wxDIR_FILES
);
317 wxPuts(wxT("Enumerating files including hidden in current directory:"));
318 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
322 wxPuts(wxT("Enumerating everything in root directory:"));
323 TestDirEnumHelper(dir
, wxDIR_DEFAULT
);
325 wxPuts(wxT("Enumerating directories in root directory:"));
326 TestDirEnumHelper(dir
, wxDIR_DIRS
);
328 wxPuts(wxT("Enumerating files in root directory:"));
329 TestDirEnumHelper(dir
, wxDIR_FILES
);
331 wxPuts(wxT("Enumerating files including hidden in root directory:"));
332 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
334 wxPuts(wxT("Enumerating files in non existing directory:"));
335 wxDir
dirNo(wxT("nosuchdir"));
336 TestDirEnumHelper(dirNo
);
341 class DirPrintTraverser
: public wxDirTraverser
344 virtual wxDirTraverseResult
OnFile(const wxString
& WXUNUSED(filename
))
346 return wxDIR_CONTINUE
;
349 virtual wxDirTraverseResult
OnDir(const wxString
& dirname
)
351 wxString path
, name
, ext
;
352 wxFileName::SplitPath(dirname
, &path
, &name
, &ext
);
355 name
<< wxT('.') << ext
;
358 for ( const wxChar
*p
= path
.c_str(); *p
; p
++ )
360 if ( wxIsPathSeparator(*p
) )
364 wxPrintf(wxT("%s%s\n"), indent
.c_str(), name
.c_str());
366 return wxDIR_CONTINUE
;
370 static void TestDirTraverse()
372 wxPuts(wxT("*** Testing wxDir::Traverse() ***"));
376 size_t n
= wxDir::GetAllFiles(TESTDIR
, &files
);
377 wxPrintf(wxT("There are %u files under '%s'\n"), n
, TESTDIR
);
380 wxPrintf(wxT("First one is '%s'\n"), files
[0u].c_str());
381 wxPrintf(wxT(" last one is '%s'\n"), files
[n
- 1].c_str());
384 // enum again with custom traverser
385 wxPuts(wxT("Now enumerating directories:"));
387 DirPrintTraverser traverser
;
388 dir
.Traverse(traverser
, wxEmptyString
, wxDIR_DIRS
| wxDIR_HIDDEN
);
393 static void TestDirExists()
395 wxPuts(wxT("*** Testing wxDir::Exists() ***"));
397 static const wxChar
*dirnames
[] =
400 #if defined(__WXMSW__)
403 wxT("\\\\share\\file"),
407 wxT("c:\\autoexec.bat"),
408 #elif defined(__UNIX__)
417 for ( size_t n
= 0; n
< WXSIZEOF(dirnames
); n
++ )
419 wxPrintf(wxT("%-40s: %s\n"),
421 wxDir::Exists(dirnames
[n
]) ? wxT("exists")
422 : wxT("doesn't exist"));
430 // ----------------------------------------------------------------------------
432 // ----------------------------------------------------------------------------
436 #include "wx/dynlib.h"
438 static void TestDllLoad()
440 #if defined(__WXMSW__)
441 static const wxChar
*LIB_NAME
= wxT("kernel32.dll");
442 static const wxChar
*FUNC_NAME
= wxT("lstrlenA");
443 #elif defined(__UNIX__)
444 // weird: using just libc.so does *not* work!
445 static const wxChar
*LIB_NAME
= wxT("/lib/libc.so.6");
446 static const wxChar
*FUNC_NAME
= wxT("strlen");
448 #error "don't know how to test wxDllLoader on this platform"
451 wxPuts(wxT("*** testing basic wxDynamicLibrary functions ***\n"));
453 wxDynamicLibrary
lib(LIB_NAME
);
454 if ( !lib
.IsLoaded() )
456 wxPrintf(wxT("ERROR: failed to load '%s'.\n"), LIB_NAME
);
460 typedef int (wxSTDCALL
*wxStrlenType
)(const char *);
461 wxStrlenType pfnStrlen
= (wxStrlenType
)lib
.GetSymbol(FUNC_NAME
);
464 wxPrintf(wxT("ERROR: function '%s' wasn't found in '%s'.\n"),
465 FUNC_NAME
, LIB_NAME
);
469 wxPrintf(wxT("Calling %s dynamically loaded from %s "),
470 FUNC_NAME
, LIB_NAME
);
472 if ( pfnStrlen("foo") != 3 )
474 wxPrintf(wxT("ERROR: loaded function is not wxStrlen()!\n"));
478 wxPuts(wxT("... ok"));
483 static const wxChar
*FUNC_NAME_AW
= wxT("lstrlen");
485 typedef int (wxSTDCALL
*wxStrlenTypeAorW
)(const wxChar
*);
487 pfnStrlenAorW
= (wxStrlenTypeAorW
)lib
.GetSymbolAorW(FUNC_NAME_AW
);
488 if ( !pfnStrlenAorW
)
490 wxPrintf(wxT("ERROR: function '%s' wasn't found in '%s'.\n"),
491 FUNC_NAME_AW
, LIB_NAME
);
495 if ( pfnStrlenAorW(wxT("foobar")) != 6 )
497 wxPrintf(wxT("ERROR: loaded function is not wxStrlen()!\n"));
504 #if defined(__WXMSW__) || defined(__UNIX__)
506 static void TestDllListLoaded()
508 wxPuts(wxT("*** testing wxDynamicLibrary::ListLoaded() ***\n"));
510 puts("\nLoaded modules:");
511 wxDynamicLibraryDetailsArray dlls
= wxDynamicLibrary::ListLoaded();
512 const size_t count
= dlls
.GetCount();
513 for ( size_t n
= 0; n
< count
; ++n
)
515 const wxDynamicLibraryDetails
& details
= dlls
[n
];
516 printf("%-45s", (const char *)details
.GetPath().mb_str());
518 void *addr
wxDUMMY_INITIALIZE(NULL
);
519 size_t len
wxDUMMY_INITIALIZE(0);
520 if ( details
.GetAddress(&addr
, &len
) )
522 printf(" %08lx:%08lx",
523 (unsigned long)addr
, (unsigned long)((char *)addr
+ len
));
526 printf(" %s\n", (const char *)details
.GetVersion().mb_str());
532 #endif // TEST_DYNLIB
534 // ----------------------------------------------------------------------------
536 // ----------------------------------------------------------------------------
540 #include "wx/utils.h"
542 static wxString
MyGetEnv(const wxString
& var
)
545 if ( !wxGetEnv(var
, &val
) )
546 val
= wxT("<empty>");
548 val
= wxString(wxT('\'')) + val
+ wxT('\'');
553 static void TestEnvironment()
555 const wxChar
*var
= wxT("wxTestVar");
557 wxPuts(wxT("*** testing environment access functions ***"));
559 wxPrintf(wxT("Initially getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
560 wxSetEnv(var
, wxT("value for wxTestVar"));
561 wxPrintf(wxT("After wxSetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
562 wxSetEnv(var
, wxT("another value"));
563 wxPrintf(wxT("After 2nd wxSetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
565 wxPrintf(wxT("After wxUnsetEnv: getenv(%s) = %s\n"), var
, MyGetEnv(var
).c_str());
566 wxPrintf(wxT("PATH = %s\n"), MyGetEnv(wxT("PATH")).c_str());
569 #endif // TEST_ENVIRON
571 // ----------------------------------------------------------------------------
573 // ----------------------------------------------------------------------------
578 #include "wx/ffile.h"
579 #include "wx/textfile.h"
581 static void TestFileRead()
583 wxPuts(wxT("*** wxFile read test ***"));
585 wxFile
file(wxT("testdata.fc"));
586 if ( file
.IsOpened() )
588 wxPrintf(wxT("File length: %lu\n"), file
.Length());
590 wxPuts(wxT("File dump:\n----------"));
592 static const size_t len
= 1024;
596 size_t nRead
= file
.Read(buf
, len
);
597 if ( nRead
== (size_t)wxInvalidOffset
)
599 wxPrintf(wxT("Failed to read the file."));
603 fwrite(buf
, nRead
, 1, stdout
);
609 wxPuts(wxT("----------"));
613 wxPrintf(wxT("ERROR: can't open test file.\n"));
616 wxPuts(wxEmptyString
);
619 static void TestTextFileRead()
621 wxPuts(wxT("*** wxTextFile read test ***"));
623 wxTextFile
file(wxT("testdata.fc"));
626 wxPrintf(wxT("Number of lines: %u\n"), file
.GetLineCount());
627 wxPrintf(wxT("Last line: '%s'\n"), file
.GetLastLine().c_str());
631 wxPuts(wxT("\nDumping the entire file:"));
632 for ( s
= file
.GetFirstLine(); !file
.Eof(); s
= file
.GetNextLine() )
634 wxPrintf(wxT("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
636 wxPrintf(wxT("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
638 wxPuts(wxT("\nAnd now backwards:"));
639 for ( s
= file
.GetLastLine();
640 file
.GetCurrentLine() != 0;
641 s
= file
.GetPrevLine() )
643 wxPrintf(wxT("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
645 wxPrintf(wxT("%6u: %s\n"), file
.GetCurrentLine() + 1, s
.c_str());
649 wxPrintf(wxT("ERROR: can't open '%s'\n"), file
.GetName());
652 wxPuts(wxEmptyString
);
655 static void TestFileCopy()
657 wxPuts(wxT("*** Testing wxCopyFile ***"));
659 static const wxChar
*filename1
= wxT("testdata.fc");
660 static const wxChar
*filename2
= wxT("test2");
661 if ( !wxCopyFile(filename1
, filename2
) )
663 wxPuts(wxT("ERROR: failed to copy file"));
667 wxFFile
f1(filename1
, wxT("rb")),
668 f2(filename2
, wxT("rb"));
670 if ( !f1
.IsOpened() || !f2
.IsOpened() )
672 wxPuts(wxT("ERROR: failed to open file(s)"));
677 if ( !f1
.ReadAll(&s1
) || !f2
.ReadAll(&s2
) )
679 wxPuts(wxT("ERROR: failed to read file(s)"));
683 if ( (s1
.length() != s2
.length()) ||
684 (memcmp(s1
.c_str(), s2
.c_str(), s1
.length()) != 0) )
686 wxPuts(wxT("ERROR: copy error!"));
690 wxPuts(wxT("File was copied ok."));
696 if ( !wxRemoveFile(filename2
) )
698 wxPuts(wxT("ERROR: failed to remove the file"));
701 wxPuts(wxEmptyString
);
704 static void TestTempFile()
706 wxPuts(wxT("*** wxTempFile test ***"));
709 if ( tmpFile
.Open(wxT("test2")) && tmpFile
.Write(wxT("the answer is 42")) )
711 if ( tmpFile
.Commit() )
712 wxPuts(wxT("File committed."));
714 wxPuts(wxT("ERROR: could't commit temp file."));
716 wxRemoveFile(wxT("test2"));
719 wxPuts(wxEmptyString
);
724 // ----------------------------------------------------------------------------
726 // ----------------------------------------------------------------------------
730 #include "wx/confbase.h"
731 #include "wx/fileconf.h"
733 static const struct FileConfTestData
735 const wxChar
*name
; // value name
736 const wxChar
*value
; // the value from the file
739 { wxT("value1"), wxT("one") },
740 { wxT("value2"), wxT("two") },
741 { wxT("novalue"), wxT("default") },
744 static void TestFileConfRead()
746 wxPuts(wxT("*** testing wxFileConfig loading/reading ***"));
748 wxFileConfig
fileconf(wxT("test"), wxEmptyString
,
749 wxT("testdata.fc"), wxEmptyString
,
750 wxCONFIG_USE_RELATIVE_PATH
);
752 // test simple reading
753 wxPuts(wxT("\nReading config file:"));
754 wxString
defValue(wxT("default")), value
;
755 for ( size_t n
= 0; n
< WXSIZEOF(fcTestData
); n
++ )
757 const FileConfTestData
& data
= fcTestData
[n
];
758 value
= fileconf
.Read(data
.name
, defValue
);
759 wxPrintf(wxT("\t%s = %s "), data
.name
, value
.c_str());
760 if ( value
== data
.value
)
766 wxPrintf(wxT("(ERROR: should be %s)\n"), data
.value
);
770 // test enumerating the entries
771 wxPuts(wxT("\nEnumerating all root entries:"));
774 bool cont
= fileconf
.GetFirstEntry(name
, dummy
);
777 wxPrintf(wxT("\t%s = %s\n"),
779 fileconf
.Read(name
.c_str(), wxT("ERROR")).c_str());
781 cont
= fileconf
.GetNextEntry(name
, dummy
);
784 static const wxChar
*testEntry
= wxT("TestEntry");
785 wxPrintf(wxT("\nTesting deletion of newly created \"Test\" entry: "));
786 fileconf
.Write(testEntry
, wxT("A value"));
787 fileconf
.DeleteEntry(testEntry
);
788 wxPrintf(fileconf
.HasEntry(testEntry
) ? wxT("ERROR\n") : wxT("ok\n"));
791 #endif // TEST_FILECONF
793 // ----------------------------------------------------------------------------
795 // ----------------------------------------------------------------------------
799 #include "wx/filename.h"
802 static void DumpFileName(const wxChar
*desc
, const wxFileName
& fn
)
806 wxString full
= fn
.GetFullPath();
808 wxString vol
, path
, name
, ext
;
809 wxFileName::SplitPath(full
, &vol
, &path
, &name
, &ext
);
811 wxPrintf(wxT("'%s'-> vol '%s', path '%s', name '%s', ext '%s'\n"),
812 full
.c_str(), vol
.c_str(), path
.c_str(), name
.c_str(), ext
.c_str());
814 wxFileName::SplitPath(full
, &path
, &name
, &ext
);
815 wxPrintf(wxT("or\t\t-> path '%s', name '%s', ext '%s'\n"),
816 path
.c_str(), name
.c_str(), ext
.c_str());
818 wxPrintf(wxT("path is also:\t'%s'\n"), fn
.GetPath().c_str());
819 wxPrintf(wxT("with volume: \t'%s'\n"),
820 fn
.GetPath(wxPATH_GET_VOLUME
).c_str());
821 wxPrintf(wxT("with separator:\t'%s'\n"),
822 fn
.GetPath(wxPATH_GET_SEPARATOR
).c_str());
823 wxPrintf(wxT("with both: \t'%s'\n"),
824 fn
.GetPath(wxPATH_GET_SEPARATOR
| wxPATH_GET_VOLUME
).c_str());
826 wxPuts(wxT("The directories in the path are:"));
827 wxArrayString dirs
= fn
.GetDirs();
828 size_t count
= dirs
.GetCount();
829 for ( size_t n
= 0; n
< count
; n
++ )
831 wxPrintf(wxT("\t%u: %s\n"), n
, dirs
[n
].c_str());
836 static void TestFileNameTemp()
838 wxPuts(wxT("*** testing wxFileName temp file creation ***"));
840 static const wxChar
*tmpprefixes
[] =
848 wxT("/tmp/foo/bar"), // this one must be an error
852 for ( size_t n
= 0; n
< WXSIZEOF(tmpprefixes
); n
++ )
854 wxString path
= wxFileName::CreateTempFileName(tmpprefixes
[n
]);
857 // "error" is not in upper case because it may be ok
858 wxPrintf(wxT("Prefix '%s'\t-> error\n"), tmpprefixes
[n
]);
862 wxPrintf(wxT("Prefix '%s'\t-> temp file '%s'\n"),
863 tmpprefixes
[n
], path
.c_str());
865 if ( !wxRemoveFile(path
) )
867 wxLogWarning(wxT("Failed to remove temp file '%s'"),
874 static void TestFileNameDirManip()
876 // TODO: test AppendDir(), RemoveDir(), ...
879 static void TestFileNameComparison()
884 static void TestFileNameOperations()
889 static void TestFileNameCwd()
894 #endif // TEST_FILENAME
896 // ----------------------------------------------------------------------------
897 // wxFileName time functions
898 // ----------------------------------------------------------------------------
902 #include "wx/filename.h"
903 #include "wx/datetime.h"
905 static void TestFileGetTimes()
907 wxFileName
fn(wxT("testdata.fc"));
909 wxDateTime dtAccess
, dtMod
, dtCreate
;
910 if ( !fn
.GetTimes(&dtAccess
, &dtMod
, &dtCreate
) )
912 wxPrintf(wxT("ERROR: GetTimes() failed.\n"));
916 static const wxChar
*fmt
= wxT("%Y-%b-%d %H:%M:%S");
918 wxPrintf(wxT("File times for '%s':\n"), fn
.GetFullPath().c_str());
919 wxPrintf(wxT("Creation: \t%s\n"), dtCreate
.Format(fmt
).c_str());
920 wxPrintf(wxT("Last read: \t%s\n"), dtAccess
.Format(fmt
).c_str());
921 wxPrintf(wxT("Last write: \t%s\n"), dtMod
.Format(fmt
).c_str());
926 static void TestFileSetTimes()
928 wxFileName
fn(wxT("testdata.fc"));
932 wxPrintf(wxT("ERROR: Touch() failed.\n"));
937 #endif // TEST_FILETIME
939 // ----------------------------------------------------------------------------
941 // ----------------------------------------------------------------------------
946 #include "wx/utils.h" // for wxSetEnv
948 static wxLocale gs_localeDefault
;
949 // NOTE: don't init it here as it needs a wxAppTraits object
950 // and thus must be init-ed after creation of the wxInitializer
951 // class in the main()
953 // find the name of the language from its value
954 static const wxChar
*GetLangName(int lang
)
956 static const wxChar
*languageNames
[] =
966 wxT("ARABIC_ALGERIA"),
967 wxT("ARABIC_BAHRAIN"),
970 wxT("ARABIC_JORDAN"),
971 wxT("ARABIC_KUWAIT"),
972 wxT("ARABIC_LEBANON"),
974 wxT("ARABIC_MOROCCO"),
977 wxT("ARABIC_SAUDI_ARABIA"),
980 wxT("ARABIC_TUNISIA"),
987 wxT("AZERI_CYRILLIC"),
1002 wxT("CHINESE_SIMPLIFIED"),
1003 wxT("CHINESE_TRADITIONAL"),
1004 wxT("CHINESE_HONGKONG"),
1005 wxT("CHINESE_MACAU"),
1006 wxT("CHINESE_SINGAPORE"),
1007 wxT("CHINESE_TAIWAN"),
1013 wxT("DUTCH_BELGIAN"),
1017 wxT("ENGLISH_AUSTRALIA"),
1018 wxT("ENGLISH_BELIZE"),
1019 wxT("ENGLISH_BOTSWANA"),
1020 wxT("ENGLISH_CANADA"),
1021 wxT("ENGLISH_CARIBBEAN"),
1022 wxT("ENGLISH_DENMARK"),
1023 wxT("ENGLISH_EIRE"),
1024 wxT("ENGLISH_JAMAICA"),
1025 wxT("ENGLISH_NEW_ZEALAND"),
1026 wxT("ENGLISH_PHILIPPINES"),
1027 wxT("ENGLISH_SOUTH_AFRICA"),
1028 wxT("ENGLISH_TRINIDAD"),
1029 wxT("ENGLISH_ZIMBABWE"),
1037 wxT("FRENCH_BELGIAN"),
1038 wxT("FRENCH_CANADIAN"),
1039 wxT("FRENCH_LUXEMBOURG"),
1040 wxT("FRENCH_MONACO"),
1041 wxT("FRENCH_SWISS"),
1046 wxT("GERMAN_AUSTRIAN"),
1047 wxT("GERMAN_BELGIUM"),
1048 wxT("GERMAN_LIECHTENSTEIN"),
1049 wxT("GERMAN_LUXEMBOURG"),
1050 wxT("GERMAN_SWISS"),
1067 wxT("ITALIAN_SWISS"),
1072 wxT("KASHMIRI_INDIA"),
1090 wxT("MALAY_BRUNEI_DARUSSALAM"),
1091 wxT("MALAY_MALAYSIA"),
1100 wxT("NEPALI_INDIA"),
1101 wxT("NORWEGIAN_BOKMAL"),
1102 wxT("NORWEGIAN_NYNORSK"),
1109 wxT("PORTUGUESE_BRAZILIAN"),
1112 wxT("RHAETO_ROMANCE"),
1115 wxT("RUSSIAN_UKRAINE"),
1119 wxT("SCOTS_GAELIC"),
1121 wxT("SERBIAN_CYRILLIC"),
1122 wxT("SERBIAN_LATIN"),
1123 wxT("SERBO_CROATIAN"),
1134 wxT("SPANISH_ARGENTINA"),
1135 wxT("SPANISH_BOLIVIA"),
1136 wxT("SPANISH_CHILE"),
1137 wxT("SPANISH_COLOMBIA"),
1138 wxT("SPANISH_COSTA_RICA"),
1139 wxT("SPANISH_DOMINICAN_REPUBLIC"),
1140 wxT("SPANISH_ECUADOR"),
1141 wxT("SPANISH_EL_SALVADOR"),
1142 wxT("SPANISH_GUATEMALA"),
1143 wxT("SPANISH_HONDURAS"),
1144 wxT("SPANISH_MEXICAN"),
1145 wxT("SPANISH_MODERN"),
1146 wxT("SPANISH_NICARAGUA"),
1147 wxT("SPANISH_PANAMA"),
1148 wxT("SPANISH_PARAGUAY"),
1149 wxT("SPANISH_PERU"),
1150 wxT("SPANISH_PUERTO_RICO"),
1151 wxT("SPANISH_URUGUAY"),
1153 wxT("SPANISH_VENEZUELA"),
1157 wxT("SWEDISH_FINLAND"),
1175 wxT("URDU_PAKISTAN"),
1177 wxT("UZBEK_CYRILLIC"),
1190 if ( (size_t)lang
< WXSIZEOF(languageNames
) )
1191 return languageNames
[lang
];
1193 return wxT("INVALID");
1196 static void TestDefaultLang()
1198 wxPuts(wxT("*** Testing wxLocale::GetSystemLanguage ***"));
1200 gs_localeDefault
.Init(wxLANGUAGE_ENGLISH
);
1202 static const wxChar
*langStrings
[] =
1204 NULL
, // system default
1211 wxT("de_DE.iso88591"),
1213 wxT("?"), // invalid lang spec
1214 wxT("klingonese"), // I bet on some systems it does exist...
1217 wxPrintf(wxT("The default system encoding is %s (%d)\n"),
1218 wxLocale::GetSystemEncodingName().c_str(),
1219 wxLocale::GetSystemEncoding());
1221 for ( size_t n
= 0; n
< WXSIZEOF(langStrings
); n
++ )
1223 const wxChar
*langStr
= langStrings
[n
];
1226 // FIXME: this doesn't do anything at all under Windows, we need
1227 // to create a new wxLocale!
1228 wxSetEnv(wxT("LC_ALL"), langStr
);
1231 int lang
= gs_localeDefault
.GetSystemLanguage();
1232 wxPrintf(wxT("Locale for '%s' is %s.\n"),
1233 langStr
? langStr
: wxT("system default"), GetLangName(lang
));
1237 #endif // TEST_LOCALE
1239 // ----------------------------------------------------------------------------
1241 // ----------------------------------------------------------------------------
1245 #include "wx/mimetype.h"
1247 static void TestMimeEnum()
1249 wxPuts(wxT("*** Testing wxMimeTypesManager::EnumAllFileTypes() ***\n"));
1251 wxArrayString mimetypes
;
1253 size_t count
= wxTheMimeTypesManager
->EnumAllFileTypes(mimetypes
);
1255 wxPrintf(wxT("*** All %u known filetypes: ***\n"), count
);
1260 for ( size_t n
= 0; n
< count
; n
++ )
1262 wxFileType
*filetype
=
1263 wxTheMimeTypesManager
->GetFileTypeFromMimeType(mimetypes
[n
]);
1266 wxPrintf(wxT("nothing known about the filetype '%s'!\n"),
1267 mimetypes
[n
].c_str());
1271 filetype
->GetDescription(&desc
);
1272 filetype
->GetExtensions(exts
);
1274 filetype
->GetIcon(NULL
);
1277 for ( size_t e
= 0; e
< exts
.GetCount(); e
++ )
1280 extsAll
<< wxT(", ");
1284 wxPrintf(wxT("\t%s: %s (%s)\n"),
1285 mimetypes
[n
].c_str(), desc
.c_str(), extsAll
.c_str());
1288 wxPuts(wxEmptyString
);
1291 static void TestMimeFilename()
1293 wxPuts(wxT("*** Testing MIME type from filename query ***\n"));
1295 static const wxChar
*filenames
[] =
1298 wxT("document.pdf"),
1300 wxT("picture.jpeg"),
1303 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
1305 const wxString fname
= filenames
[n
];
1306 wxString ext
= fname
.AfterLast(wxT('.'));
1307 wxFileType
*ft
= wxTheMimeTypesManager
->GetFileTypeFromExtension(ext
);
1310 wxPrintf(wxT("WARNING: extension '%s' is unknown.\n"), ext
.c_str());
1315 if ( !ft
->GetDescription(&desc
) )
1316 desc
= wxT("<no description>");
1319 if ( !ft
->GetOpenCommand(&cmd
,
1320 wxFileType::MessageParameters(fname
, wxEmptyString
)) )
1321 cmd
= wxT("<no command available>");
1323 cmd
= wxString(wxT('"')) + cmd
+ wxT('"');
1325 wxPrintf(wxT("To open %s (%s) do %s.\n"),
1326 fname
.c_str(), desc
.c_str(), cmd
.c_str());
1332 wxPuts(wxEmptyString
);
1335 // these tests were broken by wxMimeTypesManager changes, temporarily disabling
1338 static void TestMimeOverride()
1340 wxPuts(wxT("*** Testing wxMimeTypesManager additional files loading ***\n"));
1342 static const wxChar
*mailcap
= wxT("/tmp/mailcap");
1343 static const wxChar
*mimetypes
= wxT("/tmp/mime.types");
1345 if ( wxFile::Exists(mailcap
) )
1346 wxPrintf(wxT("Loading mailcap from '%s': %s\n"),
1348 wxTheMimeTypesManager
->ReadMailcap(mailcap
) ? wxT("ok") : wxT("ERROR"));
1350 wxPrintf(wxT("WARN: mailcap file '%s' doesn't exist, not loaded.\n"),
1353 if ( wxFile::Exists(mimetypes
) )
1354 wxPrintf(wxT("Loading mime.types from '%s': %s\n"),
1356 wxTheMimeTypesManager
->ReadMimeTypes(mimetypes
) ? wxT("ok") : wxT("ERROR"));
1358 wxPrintf(wxT("WARN: mime.types file '%s' doesn't exist, not loaded.\n"),
1361 wxPuts(wxEmptyString
);
1364 static void TestMimeAssociate()
1366 wxPuts(wxT("*** Testing creation of filetype association ***\n"));
1368 wxFileTypeInfo
ftInfo(
1369 wxT("application/x-xyz"),
1370 wxT("xyzview '%s'"), // open cmd
1371 wxT(""), // print cmd
1372 wxT("XYZ File"), // description
1373 wxT(".xyz"), // extensions
1374 wxNullPtr
// end of extensions
1376 ftInfo
.SetShortDesc(wxT("XYZFile")); // used under Win32 only
1378 wxFileType
*ft
= wxTheMimeTypesManager
->Associate(ftInfo
);
1381 wxPuts(wxT("ERROR: failed to create association!"));
1385 // TODO: read it back
1389 wxPuts(wxEmptyString
);
1396 // ----------------------------------------------------------------------------
1397 // module dependencies feature
1398 // ----------------------------------------------------------------------------
1402 #include "wx/module.h"
1404 class wxTestModule
: public wxModule
1407 virtual bool OnInit() { wxPrintf(wxT("Load module: %s\n"), GetClassInfo()->GetClassName()); return true; }
1408 virtual void OnExit() { wxPrintf(wxT("Unload module: %s\n"), GetClassInfo()->GetClassName()); }
1411 class wxTestModuleA
: public wxTestModule
1416 DECLARE_DYNAMIC_CLASS(wxTestModuleA
)
1419 class wxTestModuleB
: public wxTestModule
1424 DECLARE_DYNAMIC_CLASS(wxTestModuleB
)
1427 class wxTestModuleC
: public wxTestModule
1432 DECLARE_DYNAMIC_CLASS(wxTestModuleC
)
1435 class wxTestModuleD
: public wxTestModule
1440 DECLARE_DYNAMIC_CLASS(wxTestModuleD
)
1443 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleC
, wxModule
)
1444 wxTestModuleC::wxTestModuleC()
1446 AddDependency(CLASSINFO(wxTestModuleD
));
1449 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleA
, wxModule
)
1450 wxTestModuleA::wxTestModuleA()
1452 AddDependency(CLASSINFO(wxTestModuleB
));
1453 AddDependency(CLASSINFO(wxTestModuleD
));
1456 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleD
, wxModule
)
1457 wxTestModuleD::wxTestModuleD()
1461 IMPLEMENT_DYNAMIC_CLASS(wxTestModuleB
, wxModule
)
1462 wxTestModuleB::wxTestModuleB()
1464 AddDependency(CLASSINFO(wxTestModuleD
));
1465 AddDependency(CLASSINFO(wxTestModuleC
));
1468 #endif // TEST_MODULE
1470 // ----------------------------------------------------------------------------
1471 // misc information functions
1472 // ----------------------------------------------------------------------------
1474 #ifdef TEST_INFO_FUNCTIONS
1476 #include "wx/utils.h"
1478 #if TEST_INTERACTIVE
1479 static void TestDiskInfo()
1481 wxPuts(wxT("*** Testing wxGetDiskSpace() ***"));
1485 wxChar pathname
[128];
1486 wxPrintf(wxT("\nEnter a directory name: "));
1487 if ( !wxFgets(pathname
, WXSIZEOF(pathname
), stdin
) )
1490 // kill the last '\n'
1491 pathname
[wxStrlen(pathname
) - 1] = 0;
1493 wxLongLong total
, free
;
1494 if ( !wxGetDiskSpace(pathname
, &total
, &free
) )
1496 wxPuts(wxT("ERROR: wxGetDiskSpace failed."));
1500 wxPrintf(wxT("%sKb total, %sKb free on '%s'.\n"),
1501 (total
/ 1024).ToString().c_str(),
1502 (free
/ 1024).ToString().c_str(),
1507 #endif // TEST_INTERACTIVE
1509 static void TestOsInfo()
1511 wxPuts(wxT("*** Testing OS info functions ***\n"));
1514 wxGetOsVersion(&major
, &minor
);
1515 wxPrintf(wxT("Running under: %s, version %d.%d\n"),
1516 wxGetOsDescription().c_str(), major
, minor
);
1518 wxPrintf(wxT("%ld free bytes of memory left.\n"), wxGetFreeMemory().ToLong());
1520 wxPrintf(wxT("Host name is %s (%s).\n"),
1521 wxGetHostName().c_str(), wxGetFullHostName().c_str());
1523 wxPuts(wxEmptyString
);
1526 static void TestPlatformInfo()
1528 wxPuts(wxT("*** Testing wxPlatformInfo functions ***\n"));
1530 // get this platform
1531 wxPlatformInfo plat
;
1533 wxPrintf(wxT("Operating system family name is: %s\n"), plat
.GetOperatingSystemFamilyName().c_str());
1534 wxPrintf(wxT("Operating system name is: %s\n"), plat
.GetOperatingSystemIdName().c_str());
1535 wxPrintf(wxT("Port ID name is: %s\n"), plat
.GetPortIdName().c_str());
1536 wxPrintf(wxT("Port ID short name is: %s\n"), plat
.GetPortIdShortName().c_str());
1537 wxPrintf(wxT("Architecture is: %s\n"), plat
.GetArchName().c_str());
1538 wxPrintf(wxT("Endianness is: %s\n"), plat
.GetEndiannessName().c_str());
1540 wxPuts(wxEmptyString
);
1543 static void TestUserInfo()
1545 wxPuts(wxT("*** Testing user info functions ***\n"));
1547 wxPrintf(wxT("User id is:\t%s\n"), wxGetUserId().c_str());
1548 wxPrintf(wxT("User name is:\t%s\n"), wxGetUserName().c_str());
1549 wxPrintf(wxT("Home dir is:\t%s\n"), wxGetHomeDir().c_str());
1550 wxPrintf(wxT("Email address:\t%s\n"), wxGetEmailAddress().c_str());
1552 wxPuts(wxEmptyString
);
1555 #endif // TEST_INFO_FUNCTIONS
1557 // ----------------------------------------------------------------------------
1559 // ----------------------------------------------------------------------------
1561 #ifdef TEST_PATHLIST
1564 #define CMD_IN_PATH wxT("ls")
1566 #define CMD_IN_PATH wxT("command.com")
1569 static void TestPathList()
1571 wxPuts(wxT("*** Testing wxPathList ***\n"));
1573 wxPathList pathlist
;
1574 pathlist
.AddEnvList(wxT("PATH"));
1575 wxString path
= pathlist
.FindValidPath(CMD_IN_PATH
);
1578 wxPrintf(wxT("ERROR: command not found in the path.\n"));
1582 wxPrintf(wxT("Command found in the path as '%s'.\n"), path
.c_str());
1586 #endif // TEST_PATHLIST
1588 // ----------------------------------------------------------------------------
1589 // regular expressions
1590 // ----------------------------------------------------------------------------
1592 #if defined TEST_REGEX && TEST_INTERACTIVE
1594 #include "wx/regex.h"
1596 static void TestRegExInteractive()
1598 wxPuts(wxT("*** Testing RE interactively ***"));
1602 wxChar pattern
[128];
1603 wxPrintf(wxT("\nEnter a pattern: "));
1604 if ( !wxFgets(pattern
, WXSIZEOF(pattern
), stdin
) )
1607 // kill the last '\n'
1608 pattern
[wxStrlen(pattern
) - 1] = 0;
1611 if ( !re
.Compile(pattern
) )
1619 wxPrintf(wxT("Enter text to match: "));
1620 if ( !wxFgets(text
, WXSIZEOF(text
), stdin
) )
1623 // kill the last '\n'
1624 text
[wxStrlen(text
) - 1] = 0;
1626 if ( !re
.Matches(text
) )
1628 wxPrintf(wxT("No match.\n"));
1632 wxPrintf(wxT("Pattern matches at '%s'\n"), re
.GetMatch(text
).c_str());
1635 for ( size_t n
= 1; ; n
++ )
1637 if ( !re
.GetMatch(&start
, &len
, n
) )
1642 wxPrintf(wxT("Subexpr %u matched '%s'\n"),
1643 n
, wxString(text
+ start
, len
).c_str());
1650 #endif // TEST_REGEX
1652 // ----------------------------------------------------------------------------
1654 // ----------------------------------------------------------------------------
1657 NB: this stuff was taken from the glibc test suite and modified to build
1658 in wxWidgets: if I read the copyright below properly, this shouldn't
1664 #ifdef wxTEST_PRINTF
1665 // use our functions from wxchar.cpp
1669 // NB: do _not_ use WX_ATTRIBUTE_PRINTF here, we have some invalid formats
1670 // in the tests below
1671 int wxPrintf( const wxChar
*format
, ... );
1672 int wxSprintf( wxChar
*str
, const wxChar
*format
, ... );
1675 #include "wx/longlong.h"
1679 static void rfg1 (void);
1680 static void rfg2 (void);
1684 fmtchk (const wxChar
*fmt
)
1686 (void) wxPrintf(wxT("%s:\t`"), fmt
);
1687 (void) wxPrintf(fmt
, 0x12);
1688 (void) wxPrintf(wxT("'\n"));
1692 fmtst1chk (const wxChar
*fmt
)
1694 (void) wxPrintf(wxT("%s:\t`"), fmt
);
1695 (void) wxPrintf(fmt
, 4, 0x12);
1696 (void) wxPrintf(wxT("'\n"));
1700 fmtst2chk (const wxChar
*fmt
)
1702 (void) wxPrintf(wxT("%s:\t`"), fmt
);
1703 (void) wxPrintf(fmt
, 4, 4, 0x12);
1704 (void) wxPrintf(wxT("'\n"));
1707 /* This page is covered by the following copyright: */
1709 /* (C) Copyright C E Chew
1711 * Feel free to copy, use and distribute this software provided:
1713 * 1. you do not pretend that you wrote it
1714 * 2. you leave this copyright notice intact.
1718 * Extracted from exercise.c for glibc-1.05 bug report by Bruce Evans.
1725 /* Formatted Output Test
1727 * This exercises the output formatting code.
1730 wxChar
*PointerNull
= NULL
;
1737 wxChar
*prefix
= buf
;
1740 wxPuts(wxT("\nFormatted output test"));
1741 wxPrintf(wxT("prefix 6d 6o 6x 6X 6u\n"));
1742 wxStrcpy(prefix
, wxT("%"));
1743 for (i
= 0; i
< 2; i
++) {
1744 for (j
= 0; j
< 2; j
++) {
1745 for (k
= 0; k
< 2; k
++) {
1746 for (l
= 0; l
< 2; l
++) {
1747 wxStrcpy(prefix
, wxT("%"));
1748 if (i
== 0) wxStrcat(prefix
, wxT("-"));
1749 if (j
== 0) wxStrcat(prefix
, wxT("+"));
1750 if (k
== 0) wxStrcat(prefix
, wxT("#"));
1751 if (l
== 0) wxStrcat(prefix
, wxT("0"));
1752 wxPrintf(wxT("%5s |"), prefix
);
1753 wxStrcpy(tp
, prefix
);
1754 wxStrcat(tp
, wxT("6d |"));
1756 wxStrcpy(tp
, prefix
);
1757 wxStrcat(tp
, wxT("6o |"));
1759 wxStrcpy(tp
, prefix
);
1760 wxStrcat(tp
, wxT("6x |"));
1762 wxStrcpy(tp
, prefix
);
1763 wxStrcat(tp
, wxT("6X |"));
1765 wxStrcpy(tp
, prefix
);
1766 wxStrcat(tp
, wxT("6u |"));
1768 wxPrintf(wxT("\n"));
1773 wxPrintf(wxT("%10s\n"), PointerNull
);
1774 wxPrintf(wxT("%-10s\n"), PointerNull
);
1777 static void TestPrintf()
1779 static wxChar shortstr
[] = wxT("Hi, Z.");
1780 static wxChar longstr
[] = wxT("Good morning, Doctor Chandra. This is Hal. \
1781 I am ready for my first lesson today.");
1783 wxString test_format
;
1785 fmtchk(wxT("%.4x"));
1786 fmtchk(wxT("%04x"));
1787 fmtchk(wxT("%4.4x"));
1788 fmtchk(wxT("%04.4x"));
1789 fmtchk(wxT("%4.3x"));
1790 fmtchk(wxT("%04.3x"));
1792 fmtst1chk(wxT("%.*x"));
1793 fmtst1chk(wxT("%0*x"));
1794 fmtst2chk(wxT("%*.*x"));
1795 fmtst2chk(wxT("%0*.*x"));
1797 wxString bad_format
= wxT("bad format:\t\"%b\"\n");
1798 wxPrintf(bad_format
.c_str());
1799 wxPrintf(wxT("nil pointer (padded):\t\"%10p\"\n"), (void *) NULL
);
1801 wxPrintf(wxT("decimal negative:\t\"%d\"\n"), -2345);
1802 wxPrintf(wxT("octal negative:\t\"%o\"\n"), -2345);
1803 wxPrintf(wxT("hex negative:\t\"%x\"\n"), -2345);
1804 wxPrintf(wxT("long decimal number:\t\"%ld\"\n"), -123456L);
1805 wxPrintf(wxT("long octal negative:\t\"%lo\"\n"), -2345L);
1806 wxPrintf(wxT("long unsigned decimal number:\t\"%lu\"\n"), -123456L);
1807 wxPrintf(wxT("zero-padded LDN:\t\"%010ld\"\n"), -123456L);
1808 test_format
= wxT("left-adjusted ZLDN:\t\"%-010ld\"\n");
1809 wxPrintf(test_format
.c_str(), -123456);
1810 wxPrintf(wxT("space-padded LDN:\t\"%10ld\"\n"), -123456L);
1811 wxPrintf(wxT("left-adjusted SLDN:\t\"%-10ld\"\n"), -123456L);
1813 test_format
= wxT("zero-padded string:\t\"%010s\"\n");
1814 wxPrintf(test_format
.c_str(), shortstr
);
1815 test_format
= wxT("left-adjusted Z string:\t\"%-010s\"\n");
1816 wxPrintf(test_format
.c_str(), shortstr
);
1817 wxPrintf(wxT("space-padded string:\t\"%10s\"\n"), shortstr
);
1818 wxPrintf(wxT("left-adjusted S string:\t\"%-10s\"\n"), shortstr
);
1819 wxPrintf(wxT("null string:\t\"%s\"\n"), PointerNull
);
1820 wxPrintf(wxT("limited string:\t\"%.22s\"\n"), longstr
);
1822 wxPrintf(wxT("e-style >= 1:\t\"%e\"\n"), 12.34);
1823 wxPrintf(wxT("e-style >= .1:\t\"%e\"\n"), 0.1234);
1824 wxPrintf(wxT("e-style < .1:\t\"%e\"\n"), 0.001234);
1825 wxPrintf(wxT("e-style big:\t\"%.60e\"\n"), 1e20
);
1826 wxPrintf(wxT("e-style == .1:\t\"%e\"\n"), 0.1);
1827 wxPrintf(wxT("f-style >= 1:\t\"%f\"\n"), 12.34);
1828 wxPrintf(wxT("f-style >= .1:\t\"%f\"\n"), 0.1234);
1829 wxPrintf(wxT("f-style < .1:\t\"%f\"\n"), 0.001234);
1830 wxPrintf(wxT("g-style >= 1:\t\"%g\"\n"), 12.34);
1831 wxPrintf(wxT("g-style >= .1:\t\"%g\"\n"), 0.1234);
1832 wxPrintf(wxT("g-style < .1:\t\"%g\"\n"), 0.001234);
1833 wxPrintf(wxT("g-style big:\t\"%.60g\"\n"), 1e20
);
1835 wxPrintf (wxT(" %6.5f\n"), .099999999860301614);
1836 wxPrintf (wxT(" %6.5f\n"), .1);
1837 wxPrintf (wxT("x%5.4fx\n"), .5);
1839 wxPrintf (wxT("%#03x\n"), 1);
1841 //wxPrintf (wxT("something really insane: %.10000f\n"), 1.0);
1847 while (niter
-- != 0)
1848 wxPrintf (wxT("%.17e\n"), d
/ 2);
1853 // Open Watcom cause compiler error here
1854 // Error! E173: col(24) floating-point constant too small to represent
1855 wxPrintf (wxT("%15.5e\n"), 4.9406564584124654e-324);
1858 #define FORMAT wxT("|%12.4f|%12.4e|%12.4g|\n")
1859 wxPrintf (FORMAT
, 0.0, 0.0, 0.0);
1860 wxPrintf (FORMAT
, 1.0, 1.0, 1.0);
1861 wxPrintf (FORMAT
, -1.0, -1.0, -1.0);
1862 wxPrintf (FORMAT
, 100.0, 100.0, 100.0);
1863 wxPrintf (FORMAT
, 1000.0, 1000.0, 1000.0);
1864 wxPrintf (FORMAT
, 10000.0, 10000.0, 10000.0);
1865 wxPrintf (FORMAT
, 12345.0, 12345.0, 12345.0);
1866 wxPrintf (FORMAT
, 100000.0, 100000.0, 100000.0);
1867 wxPrintf (FORMAT
, 123456.0, 123456.0, 123456.0);
1872 int rc
= wxSnprintf (buf
, WXSIZEOF(buf
), wxT("%30s"), wxT("foo"));
1874 wxPrintf(wxT("snprintf (\"%%30s\", \"foo\") == %d, \"%.*s\"\n"),
1875 rc
, WXSIZEOF(buf
), buf
);
1878 wxPrintf ("snprintf (\"%%.999999u\", 10)\n",
1879 wxSnprintf(buf2
, WXSIZEOFbuf2
), "%.999999u", 10));
1885 wxPrintf (wxT("%e should be 1.234568e+06\n"), 1234567.8);
1886 wxPrintf (wxT("%f should be 1234567.800000\n"), 1234567.8);
1887 wxPrintf (wxT("%g should be 1.23457e+06\n"), 1234567.8);
1888 wxPrintf (wxT("%g should be 123.456\n"), 123.456);
1889 wxPrintf (wxT("%g should be 1e+06\n"), 1000000.0);
1890 wxPrintf (wxT("%g should be 10\n"), 10.0);
1891 wxPrintf (wxT("%g should be 0.02\n"), 0.02);
1895 wxPrintf(wxT("%.17f\n"),(1.0/x
/10.0+1.0)*x
-x
);
1901 wxSprintf(buf
,wxT("%*s%*s%*s"),-1,wxT("one"),-20,wxT("two"),-30,wxT("three"));
1903 result
|= wxStrcmp (buf
,
1904 wxT("onetwo three "));
1906 wxPuts (result
!= 0 ? wxT("Test failed!") : wxT("Test ok."));
1913 wxSprintf(buf
, "%07" wxLongLongFmtSpec
"o", wxLL(040000000000));
1915 // for some reason below line fails under Borland
1916 wxPrintf (wxT("sprintf (buf, \"%%07Lo\", 040000000000ll) = %s"), buf
);
1919 if (wxStrcmp (buf
, wxT("40000000000")) != 0)
1922 wxPuts (wxT("\tFAILED"));
1924 wxUnusedVar(result
);
1925 wxPuts (wxEmptyString
);
1927 #endif // wxLongLong_t
1929 wxPrintf (wxT("printf (\"%%hhu\", %u) = %hhu\n"), UCHAR_MAX
+ 2, UCHAR_MAX
+ 2);
1930 wxPrintf (wxT("printf (\"%%hu\", %u) = %hu\n"), USHRT_MAX
+ 2, USHRT_MAX
+ 2);
1932 wxPuts (wxT("--- Should be no further output. ---"));
1941 memset (bytes
, '\xff', sizeof bytes
);
1942 wxSprintf (buf
, wxT("foo%hhn\n"), &bytes
[3]);
1943 if (bytes
[0] != '\xff' || bytes
[1] != '\xff' || bytes
[2] != '\xff'
1944 || bytes
[4] != '\xff' || bytes
[5] != '\xff' || bytes
[6] != '\xff')
1946 wxPuts (wxT("%hhn overwrite more bytes"));
1951 wxPuts (wxT("%hhn wrote incorrect value"));
1963 wxSprintf (buf
, wxT("%5.s"), wxT("xyz"));
1964 if (wxStrcmp (buf
, wxT(" ")) != 0)
1965 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT(" "));
1966 wxSprintf (buf
, wxT("%5.f"), 33.3);
1967 if (wxStrcmp (buf
, wxT(" 33")) != 0)
1968 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT(" 33"));
1969 wxSprintf (buf
, wxT("%8.e"), 33.3e7
);
1970 if (wxStrcmp (buf
, wxT(" 3e+08")) != 0)
1971 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT(" 3e+08"));
1972 wxSprintf (buf
, wxT("%8.E"), 33.3e7
);
1973 if (wxStrcmp (buf
, wxT(" 3E+08")) != 0)
1974 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT(" 3E+08"));
1975 wxSprintf (buf
, wxT("%.g"), 33.3);
1976 if (wxStrcmp (buf
, wxT("3e+01")) != 0)
1977 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT("3e+01"));
1978 wxSprintf (buf
, wxT("%.G"), 33.3);
1979 if (wxStrcmp (buf
, wxT("3E+01")) != 0)
1980 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT("3E+01"));
1988 wxString test_format
;
1991 wxSprintf (buf
, wxT("%.*g"), prec
, 3.3);
1992 if (wxStrcmp (buf
, wxT("3")) != 0)
1993 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT("3"));
1995 wxSprintf (buf
, wxT("%.*G"), prec
, 3.3);
1996 if (wxStrcmp (buf
, wxT("3")) != 0)
1997 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT("3"));
1999 wxSprintf (buf
, wxT("%7.*G"), prec
, 3.33);
2000 if (wxStrcmp (buf
, wxT(" 3")) != 0)
2001 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT(" 3"));
2003 test_format
= wxT("%04.*o");
2004 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2005 if (wxStrcmp (buf
, wxT(" 041")) != 0)
2006 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT(" 041"));
2008 test_format
= wxT("%09.*u");
2009 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2010 if (wxStrcmp (buf
, wxT(" 0000033")) != 0)
2011 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT(" 0000033"));
2013 test_format
= wxT("%04.*x");
2014 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2015 if (wxStrcmp (buf
, wxT(" 021")) != 0)
2016 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT(" 021"));
2018 test_format
= wxT("%04.*X");
2019 wxSprintf (buf
, test_format
.c_str(), prec
, 33);
2020 if (wxStrcmp (buf
, wxT(" 021")) != 0)
2021 wxPrintf (wxT("got: '%s', expected: '%s'\n"), buf
, wxT(" 021"));
2024 #endif // TEST_PRINTF
2026 // ----------------------------------------------------------------------------
2027 // registry and related stuff
2028 // ----------------------------------------------------------------------------
2030 // this is for MSW only
2033 #undef TEST_REGISTRY
2038 #include "wx/confbase.h"
2039 #include "wx/msw/regconf.h"
2042 static void TestRegConfWrite()
2044 wxConfig
*config
= new wxConfig(wxT("myapp"));
2045 config
->SetPath(wxT("/group1"));
2046 config
->Write(wxT("entry1"), wxT("foo"));
2047 config
->SetPath(wxT("/group2"));
2048 config
->Write(wxT("entry1"), wxT("bar"));
2052 static void TestRegConfRead()
2054 wxRegConfig
*config
= new wxRegConfig(wxT("myapp"));
2058 config
->SetPath(wxT("/"));
2059 wxPuts(wxT("Enumerating / subgroups:"));
2060 bool bCont
= config
->GetFirstGroup(str
, dummy
);
2064 bCont
= config
->GetNextGroup(str
, dummy
);
2068 #endif // TEST_REGCONF
2070 #ifdef TEST_REGISTRY
2072 #include "wx/msw/registry.h"
2074 // I chose this one because I liked its name, but it probably only exists under
2076 static const wxChar
*TESTKEY
=
2077 wxT("HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\CrashControl");
2079 static void TestRegistryRead()
2081 wxPuts(wxT("*** testing registry reading ***"));
2083 wxRegKey
key(TESTKEY
);
2084 wxPrintf(wxT("The test key name is '%s'.\n"), key
.GetName().c_str());
2087 wxPuts(wxT("ERROR: test key can't be opened, aborting test."));
2092 size_t nSubKeys
, nValues
;
2093 if ( key
.GetKeyInfo(&nSubKeys
, NULL
, &nValues
, NULL
) )
2095 wxPrintf(wxT("It has %u subkeys and %u values.\n"), nSubKeys
, nValues
);
2098 wxPrintf(wxT("Enumerating values:\n"));
2102 bool cont
= key
.GetFirstValue(value
, dummy
);
2105 wxPrintf(wxT("Value '%s': type "), value
.c_str());
2106 switch ( key
.GetValueType(value
) )
2108 case wxRegKey::Type_None
: wxPrintf(wxT("ERROR (none)")); break;
2109 case wxRegKey::Type_String
: wxPrintf(wxT("SZ")); break;
2110 case wxRegKey::Type_Expand_String
: wxPrintf(wxT("EXPAND_SZ")); break;
2111 case wxRegKey::Type_Binary
: wxPrintf(wxT("BINARY")); break;
2112 case wxRegKey::Type_Dword
: wxPrintf(wxT("DWORD")); break;
2113 case wxRegKey::Type_Multi_String
: wxPrintf(wxT("MULTI_SZ")); break;
2114 default: wxPrintf(wxT("other (unknown)")); break;
2117 wxPrintf(wxT(", value = "));
2118 if ( key
.IsNumericValue(value
) )
2121 key
.QueryValue(value
, &val
);
2122 wxPrintf(wxT("%ld"), val
);
2127 key
.QueryValue(value
, val
);
2128 wxPrintf(wxT("'%s'"), val
.c_str());
2130 key
.QueryRawValue(value
, val
);
2131 wxPrintf(wxT(" (raw value '%s')"), val
.c_str());
2136 cont
= key
.GetNextValue(value
, dummy
);
2140 static void TestRegistryAssociation()
2143 The second call to deleteself genertaes an error message, with a
2144 messagebox saying .flo is crucial to system operation, while the .ddf
2145 call also fails, but with no error message
2150 key
.SetName(wxT("HKEY_CLASSES_ROOT\\.ddf") );
2152 key
= wxT("ddxf_auto_file") ;
2153 key
.SetName(wxT("HKEY_CLASSES_ROOT\\.flo") );
2155 key
= wxT("ddxf_auto_file") ;
2156 key
.SetName(wxT("HKEY_CLASSES_ROOT\\ddxf_auto_file\\DefaultIcon"));
2158 key
= wxT("program,0") ;
2159 key
.SetName(wxT("HKEY_CLASSES_ROOT\\ddxf_auto_file\\shell\\open\\command"));
2161 key
= wxT("program \"%1\"") ;
2163 key
.SetName(wxT("HKEY_CLASSES_ROOT\\.ddf") );
2165 key
.SetName(wxT("HKEY_CLASSES_ROOT\\.flo") );
2167 key
.SetName(wxT("HKEY_CLASSES_ROOT\\ddxf_auto_file\\DefaultIcon"));
2169 key
.SetName(wxT("HKEY_CLASSES_ROOT\\ddxf_auto_file\\shell\\open\\command"));
2173 #endif // TEST_REGISTRY
2175 // ----------------------------------------------------------------------------
2177 // ----------------------------------------------------------------------------
2179 #ifdef TEST_SCOPEGUARD
2181 #include "wx/scopeguard.h"
2183 static void function0() { puts("function0()"); }
2184 static void function1(int n
) { printf("function1(%d)\n", n
); }
2185 static void function2(double x
, char c
) { printf("function2(%g, %c)\n", x
, c
); }
2189 void method0() { printf("method0()\n"); }
2190 void method1(int n
) { printf("method1(%d)\n", n
); }
2191 void method2(double x
, char c
) { printf("method2(%g, %c)\n", x
, c
); }
2194 static void TestScopeGuard()
2196 wxON_BLOCK_EXIT0(function0
);
2197 wxON_BLOCK_EXIT1(function1
, 17);
2198 wxON_BLOCK_EXIT2(function2
, 3.14, 'p');
2201 wxON_BLOCK_EXIT_OBJ0(obj
, Object::method0
);
2202 wxON_BLOCK_EXIT_OBJ1(obj
, Object::method1
, 7);
2203 wxON_BLOCK_EXIT_OBJ2(obj
, Object::method2
, 2.71, 'e');
2205 wxScopeGuard dismissed
= wxMakeGuard(function0
);
2206 dismissed
.Dismiss();
2211 // ----------------------------------------------------------------------------
2213 // ----------------------------------------------------------------------------
2217 #include "wx/socket.h"
2218 #include "wx/protocol/protocol.h"
2219 #include "wx/protocol/http.h"
2221 static void TestSocketServer()
2223 wxPuts(wxT("*** Testing wxSocketServer ***\n"));
2225 static const int PORT
= 3000;
2230 wxSocketServer
*server
= new wxSocketServer(addr
);
2231 if ( !server
->Ok() )
2233 wxPuts(wxT("ERROR: failed to bind"));
2241 wxPrintf(wxT("Server: waiting for connection on port %d...\n"), PORT
);
2243 wxSocketBase
*socket
= server
->Accept();
2246 wxPuts(wxT("ERROR: wxSocketServer::Accept() failed."));
2250 wxPuts(wxT("Server: got a client."));
2252 server
->SetTimeout(60); // 1 min
2255 while ( !close
&& socket
->IsConnected() )
2258 wxChar ch
= wxT('\0');
2261 if ( socket
->Read(&ch
, sizeof(ch
)).Error() )
2263 // don't log error if the client just close the connection
2264 if ( socket
->IsConnected() )
2266 wxPuts(wxT("ERROR: in wxSocket::Read."));
2286 wxPrintf(wxT("Server: got '%s'.\n"), s
.c_str());
2287 if ( s
== wxT("close") )
2289 wxPuts(wxT("Closing connection"));
2293 else if ( s
== wxT("quit") )
2298 wxPuts(wxT("Shutting down the server"));
2300 else // not a special command
2302 socket
->Write(s
.MakeUpper().c_str(), s
.length());
2303 socket
->Write("\r\n", 2);
2304 wxPrintf(wxT("Server: wrote '%s'.\n"), s
.c_str());
2310 wxPuts(wxT("Server: lost a client unexpectedly."));
2316 // same as "delete server" but is consistent with GUI programs
2320 static void TestSocketClient()
2322 wxPuts(wxT("*** Testing wxSocketClient ***\n"));
2324 static const wxChar
*hostname
= wxT("www.wxwidgets.org");
2327 addr
.Hostname(hostname
);
2330 wxPrintf(wxT("--- Attempting to connect to %s:80...\n"), hostname
);
2332 wxSocketClient client
;
2333 if ( !client
.Connect(addr
) )
2335 wxPrintf(wxT("ERROR: failed to connect to %s\n"), hostname
);
2339 wxPrintf(wxT("--- Connected to %s:%u...\n"),
2340 addr
.Hostname().c_str(), addr
.Service());
2344 // could use simply "GET" here I suppose
2346 wxString::Format(wxT("GET http://%s/\r\n"), hostname
);
2347 client
.Write(cmdGet
, cmdGet
.length());
2348 wxPrintf(wxT("--- Sent command '%s' to the server\n"),
2349 MakePrintable(cmdGet
).c_str());
2350 client
.Read(buf
, WXSIZEOF(buf
));
2351 wxPrintf(wxT("--- Server replied:\n%s"), buf
);
2355 #endif // TEST_SOCKETS
2357 // ----------------------------------------------------------------------------
2359 // ----------------------------------------------------------------------------
2363 #include "wx/protocol/ftp.h"
2364 #include "wx/protocol/log.h"
2366 #define FTP_ANONYMOUS
2370 #ifdef FTP_ANONYMOUS
2371 static const wxChar
*directory
= wxT("/pub");
2372 static const wxChar
*filename
= wxT("welcome.msg");
2374 static const wxChar
*directory
= wxT("/etc");
2375 static const wxChar
*filename
= wxT("issue");
2378 static bool TestFtpConnect()
2380 wxPuts(wxT("*** Testing FTP connect ***"));
2382 #ifdef FTP_ANONYMOUS
2383 static const wxChar
*hostname
= wxT("ftp.wxwidgets.org");
2385 wxPrintf(wxT("--- Attempting to connect to %s:21 anonymously...\n"), hostname
);
2386 #else // !FTP_ANONYMOUS
2387 static const wxChar
*hostname
= "localhost";
2390 wxFgets(user
, WXSIZEOF(user
), stdin
);
2391 user
[wxStrlen(user
) - 1] = '\0'; // chop off '\n'
2394 wxChar password
[256];
2395 wxPrintf(wxT("Password for %s: "), password
);
2396 wxFgets(password
, WXSIZEOF(password
), stdin
);
2397 password
[wxStrlen(password
) - 1] = '\0'; // chop off '\n'
2398 ftp
->SetPassword(password
);
2400 wxPrintf(wxT("--- Attempting to connect to %s:21 as %s...\n"), hostname
, user
);
2401 #endif // FTP_ANONYMOUS/!FTP_ANONYMOUS
2403 if ( !ftp
->Connect(hostname
) )
2405 wxPrintf(wxT("ERROR: failed to connect to %s\n"), hostname
);
2411 wxPrintf(wxT("--- Connected to %s, current directory is '%s'\n"),
2412 hostname
, ftp
->Pwd().c_str());
2419 static void TestFtpList()
2421 wxPuts(wxT("*** Testing wxFTP file listing ***\n"));
2424 if ( !ftp
->ChDir(directory
) )
2426 wxPrintf(wxT("ERROR: failed to cd to %s\n"), directory
);
2429 wxPrintf(wxT("Current directory is '%s'\n"), ftp
->Pwd().c_str());
2431 // test NLIST and LIST
2432 wxArrayString files
;
2433 if ( !ftp
->GetFilesList(files
) )
2435 wxPuts(wxT("ERROR: failed to get NLIST of files"));
2439 wxPrintf(wxT("Brief list of files under '%s':\n"), ftp
->Pwd().c_str());
2440 size_t count
= files
.GetCount();
2441 for ( size_t n
= 0; n
< count
; n
++ )
2443 wxPrintf(wxT("\t%s\n"), files
[n
].c_str());
2445 wxPuts(wxT("End of the file list"));
2448 if ( !ftp
->GetDirList(files
) )
2450 wxPuts(wxT("ERROR: failed to get LIST of files"));
2454 wxPrintf(wxT("Detailed list of files under '%s':\n"), ftp
->Pwd().c_str());
2455 size_t count
= files
.GetCount();
2456 for ( size_t n
= 0; n
< count
; n
++ )
2458 wxPrintf(wxT("\t%s\n"), files
[n
].c_str());
2460 wxPuts(wxT("End of the file list"));
2463 if ( !ftp
->ChDir(wxT("..")) )
2465 wxPuts(wxT("ERROR: failed to cd to .."));
2468 wxPrintf(wxT("Current directory is '%s'\n"), ftp
->Pwd().c_str());
2471 static void TestFtpDownload()
2473 wxPuts(wxT("*** Testing wxFTP download ***\n"));
2476 wxInputStream
*in
= ftp
->GetInputStream(filename
);
2479 wxPrintf(wxT("ERROR: couldn't get input stream for %s\n"), filename
);
2483 size_t size
= in
->GetSize();
2484 wxPrintf(wxT("Reading file %s (%u bytes)..."), filename
, size
);
2487 wxChar
*data
= new wxChar
[size
];
2488 if ( !in
->Read(data
, size
) )
2490 wxPuts(wxT("ERROR: read error"));
2494 wxPrintf(wxT("\nContents of %s:\n%s\n"), filename
, data
);
2502 static void TestFtpFileSize()
2504 wxPuts(wxT("*** Testing FTP SIZE command ***"));
2506 if ( !ftp
->ChDir(directory
) )
2508 wxPrintf(wxT("ERROR: failed to cd to %s\n"), directory
);
2511 wxPrintf(wxT("Current directory is '%s'\n"), ftp
->Pwd().c_str());
2513 if ( ftp
->FileExists(filename
) )
2515 int size
= ftp
->GetFileSize(filename
);
2517 wxPrintf(wxT("ERROR: couldn't get size of '%s'\n"), filename
);
2519 wxPrintf(wxT("Size of '%s' is %d bytes.\n"), filename
, size
);
2523 wxPrintf(wxT("ERROR: '%s' doesn't exist\n"), filename
);
2527 static void TestFtpMisc()
2529 wxPuts(wxT("*** Testing miscellaneous wxFTP functions ***"));
2531 if ( ftp
->SendCommand(wxT("STAT")) != '2' )
2533 wxPuts(wxT("ERROR: STAT failed"));
2537 wxPrintf(wxT("STAT returned:\n\n%s\n"), ftp
->GetLastResult().c_str());
2540 if ( ftp
->SendCommand(wxT("HELP SITE")) != '2' )
2542 wxPuts(wxT("ERROR: HELP SITE failed"));
2546 wxPrintf(wxT("The list of site-specific commands:\n\n%s\n"),
2547 ftp
->GetLastResult().c_str());
2551 #if TEST_INTERACTIVE
2553 static void TestFtpInteractive()
2555 wxPuts(wxT("\n*** Interactive wxFTP test ***"));
2561 wxPrintf(wxT("Enter FTP command: "));
2562 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
2565 // kill the last '\n'
2566 buf
[wxStrlen(buf
) - 1] = 0;
2568 // special handling of LIST and NLST as they require data connection
2569 wxString
start(buf
, 4);
2571 if ( start
== wxT("LIST") || start
== wxT("NLST") )
2574 if ( wxStrlen(buf
) > 4 )
2577 wxArrayString files
;
2578 if ( !ftp
->GetList(files
, wildcard
, start
== wxT("LIST")) )
2580 wxPrintf(wxT("ERROR: failed to get %s of files\n"), start
.c_str());
2584 wxPrintf(wxT("--- %s of '%s' under '%s':\n"),
2585 start
.c_str(), wildcard
.c_str(), ftp
->Pwd().c_str());
2586 size_t count
= files
.GetCount();
2587 for ( size_t n
= 0; n
< count
; n
++ )
2589 wxPrintf(wxT("\t%s\n"), files
[n
].c_str());
2591 wxPuts(wxT("--- End of the file list"));
2596 wxChar ch
= ftp
->SendCommand(buf
);
2597 wxPrintf(wxT("Command %s"), ch
? wxT("succeeded") : wxT("failed"));
2600 wxPrintf(wxT(" (return code %c)"), ch
);
2603 wxPrintf(wxT(", server reply:\n%s\n\n"), ftp
->GetLastResult().c_str());
2607 wxPuts(wxT("\n*** done ***"));
2610 #endif // TEST_INTERACTIVE
2612 static void TestFtpUpload()
2614 wxPuts(wxT("*** Testing wxFTP uploading ***\n"));
2617 static const wxChar
*file1
= wxT("test1");
2618 static const wxChar
*file2
= wxT("test2");
2619 wxOutputStream
*out
= ftp
->GetOutputStream(file1
);
2622 wxPrintf(wxT("--- Uploading to %s ---\n"), file1
);
2623 out
->Write("First hello", 11);
2627 // send a command to check the remote file
2628 if ( ftp
->SendCommand(wxString(wxT("STAT ")) + file1
) != '2' )
2630 wxPrintf(wxT("ERROR: STAT %s failed\n"), file1
);
2634 wxPrintf(wxT("STAT %s returned:\n\n%s\n"),
2635 file1
, ftp
->GetLastResult().c_str());
2638 out
= ftp
->GetOutputStream(file2
);
2641 wxPrintf(wxT("--- Uploading to %s ---\n"), file1
);
2642 out
->Write("Second hello", 12);
2649 // ----------------------------------------------------------------------------
2651 // ----------------------------------------------------------------------------
2653 #ifdef TEST_STACKWALKER
2655 #if wxUSE_STACKWALKER
2657 #include "wx/stackwalk.h"
2659 class StackDump
: public wxStackWalker
2662 StackDump(const char *argv0
)
2663 : wxStackWalker(argv0
)
2667 virtual void Walk(size_t skip
= 1, size_t maxdepth
= wxSTACKWALKER_MAX_DEPTH
)
2669 wxPuts(wxT("Stack dump:"));
2671 wxStackWalker::Walk(skip
, maxdepth
);
2675 virtual void OnStackFrame(const wxStackFrame
& frame
)
2677 printf("[%2d] ", (int) frame
.GetLevel());
2679 wxString name
= frame
.GetName();
2680 if ( !name
.empty() )
2682 printf("%-20.40s", (const char*)name
.mb_str());
2686 printf("0x%08lx", (unsigned long)frame
.GetAddress());
2689 if ( frame
.HasSourceLocation() )
2692 (const char*)frame
.GetFileName().mb_str(),
2693 (int)frame
.GetLine());
2699 for ( size_t n
= 0; frame
.GetParam(n
, &type
, &name
, &val
); n
++ )
2701 printf("\t%s %s = %s\n", (const char*)type
.mb_str(),
2702 (const char*)name
.mb_str(),
2703 (const char*)val
.mb_str());
2708 static void TestStackWalk(const char *argv0
)
2710 wxPuts(wxT("*** Testing wxStackWalker ***\n"));
2712 StackDump
dump(argv0
);
2716 #endif // wxUSE_STACKWALKER
2718 #endif // TEST_STACKWALKER
2720 // ----------------------------------------------------------------------------
2722 // ----------------------------------------------------------------------------
2724 #ifdef TEST_STDPATHS
2726 #include "wx/stdpaths.h"
2727 #include "wx/wxchar.h" // wxPrintf
2729 static void TestStandardPaths()
2731 wxPuts(wxT("*** Testing wxStandardPaths ***\n"));
2733 wxTheApp
->SetAppName(wxT("console"));
2735 wxStandardPathsBase
& stdp
= wxStandardPaths::Get();
2736 wxPrintf(wxT("Config dir (sys):\t%s\n"), stdp
.GetConfigDir().c_str());
2737 wxPrintf(wxT("Config dir (user):\t%s\n"), stdp
.GetUserConfigDir().c_str());
2738 wxPrintf(wxT("Data dir (sys):\t\t%s\n"), stdp
.GetDataDir().c_str());
2739 wxPrintf(wxT("Data dir (sys local):\t%s\n"), stdp
.GetLocalDataDir().c_str());
2740 wxPrintf(wxT("Data dir (user):\t%s\n"), stdp
.GetUserDataDir().c_str());
2741 wxPrintf(wxT("Data dir (user local):\t%s\n"), stdp
.GetUserLocalDataDir().c_str());
2742 wxPrintf(wxT("Documents dir:\t\t%s\n"), stdp
.GetDocumentsDir().c_str());
2743 wxPrintf(wxT("Executable path:\t%s\n"), stdp
.GetExecutablePath().c_str());
2744 wxPrintf(wxT("Plugins dir:\t\t%s\n"), stdp
.GetPluginsDir().c_str());
2745 wxPrintf(wxT("Resources dir:\t\t%s\n"), stdp
.GetResourcesDir().c_str());
2746 wxPrintf(wxT("Localized res. dir:\t%s\n"),
2747 stdp
.GetLocalizedResourcesDir(wxT("fr")).c_str());
2748 wxPrintf(wxT("Message catalogs dir:\t%s\n"),
2749 stdp
.GetLocalizedResourcesDir
2752 wxStandardPaths::ResourceCat_Messages
2756 #endif // TEST_STDPATHS
2758 // ----------------------------------------------------------------------------
2760 // ----------------------------------------------------------------------------
2764 #include "wx/wfstream.h"
2765 #include "wx/mstream.h"
2767 static void TestFileStream()
2769 wxPuts(wxT("*** Testing wxFileInputStream ***"));
2771 static const wxString filename
= wxT("testdata.fs");
2773 wxFileOutputStream
fsOut(filename
);
2774 fsOut
.Write("foo", 3);
2778 wxFileInputStream
fsIn(filename
);
2779 wxPrintf(wxT("File stream size: %u\n"), fsIn
.GetSize());
2781 while ( (c
=fsIn
.GetC()) != wxEOF
)
2787 if ( !wxRemoveFile(filename
) )
2789 wxPrintf(wxT("ERROR: failed to remove the file '%s'.\n"), filename
.c_str());
2792 wxPuts(wxT("\n*** wxFileInputStream test done ***"));
2795 static void TestMemoryStream()
2797 wxPuts(wxT("*** Testing wxMemoryOutputStream ***"));
2799 wxMemoryOutputStream memOutStream
;
2800 wxPrintf(wxT("Initially out stream offset: %lu\n"),
2801 (unsigned long)memOutStream
.TellO());
2803 for ( const wxChar
*p
= wxT("Hello, stream!"); *p
; p
++ )
2805 memOutStream
.PutC(*p
);
2808 wxPrintf(wxT("Final out stream offset: %lu\n"),
2809 (unsigned long)memOutStream
.TellO());
2811 wxPuts(wxT("*** Testing wxMemoryInputStream ***"));
2814 size_t len
= memOutStream
.CopyTo(buf
, WXSIZEOF(buf
));
2816 wxMemoryInputStream
memInpStream(buf
, len
);
2817 wxPrintf(wxT("Memory stream size: %u\n"), memInpStream
.GetSize());
2819 while ( (c
=memInpStream
.GetC()) != wxEOF
)
2824 wxPuts(wxT("\n*** wxMemoryInputStream test done ***"));
2827 #endif // TEST_STREAMS
2829 // ----------------------------------------------------------------------------
2831 // ----------------------------------------------------------------------------
2833 #if !defined(__WIN32__) || !wxUSE_FSVOLUME
2839 #include "wx/volume.h"
2841 static const wxChar
*volumeKinds
[] =
2847 wxT("network volume"),
2848 wxT("other volume"),
2851 static void TestFSVolume()
2853 wxPuts(wxT("*** Testing wxFSVolume class ***"));
2855 wxArrayString volumes
= wxFSVolume::GetVolumes();
2856 size_t count
= volumes
.GetCount();
2860 wxPuts(wxT("ERROR: no mounted volumes?"));
2864 wxPrintf(wxT("%u mounted volumes found:\n"), count
);
2866 for ( size_t n
= 0; n
< count
; n
++ )
2868 wxFSVolume
vol(volumes
[n
]);
2871 wxPuts(wxT("ERROR: couldn't create volume"));
2875 wxPrintf(wxT("%u: %s (%s), %s, %s, %s\n"),
2877 vol
.GetDisplayName().c_str(),
2878 vol
.GetName().c_str(),
2879 volumeKinds
[vol
.GetKind()],
2880 vol
.IsWritable() ? wxT("rw") : wxT("ro"),
2881 vol
.GetFlags() & wxFS_VOL_REMOVABLE
? wxT("removable")
2886 #endif // TEST_VOLUME
2888 // ----------------------------------------------------------------------------
2890 // ----------------------------------------------------------------------------
2892 #ifdef TEST_DATETIME
2894 #include "wx/math.h"
2895 #include "wx/datetime.h"
2897 #if TEST_INTERACTIVE
2899 static void TestDateTimeInteractive()
2901 wxPuts(wxT("\n*** interactive wxDateTime tests ***"));
2907 wxPrintf(wxT("Enter a date: "));
2908 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
2911 // kill the last '\n'
2912 buf
[wxStrlen(buf
) - 1] = 0;
2915 const wxChar
*p
= dt
.ParseDate(buf
);
2918 wxPrintf(wxT("ERROR: failed to parse the date '%s'.\n"), buf
);
2924 wxPrintf(wxT("WARNING: parsed only first %u characters.\n"), p
- buf
);
2927 wxPrintf(wxT("%s: day %u, week of month %u/%u, week of year %u\n"),
2928 dt
.Format(wxT("%b %d, %Y")).c_str(),
2930 dt
.GetWeekOfMonth(wxDateTime::Monday_First
),
2931 dt
.GetWeekOfMonth(wxDateTime::Sunday_First
),
2932 dt
.GetWeekOfYear(wxDateTime::Monday_First
));
2935 wxPuts(wxT("\n*** done ***"));
2938 #endif // TEST_INTERACTIVE
2939 #endif // TEST_DATETIME
2941 // ----------------------------------------------------------------------------
2943 // ----------------------------------------------------------------------------
2945 #ifdef TEST_SNGLINST
2946 #include "wx/snglinst.h"
2947 #endif // TEST_SNGLINST
2949 int main(int argc
, char **argv
)
2952 wxChar
**wxArgv
= new wxChar
*[argc
+ 1];
2957 for (n
= 0; n
< argc
; n
++ )
2959 wxMB2WXbuf warg
= wxConvertMB2WX(argv
[n
]);
2960 wxArgv
[n
] = wxStrdup(warg
);
2965 #else // !wxUSE_UNICODE
2967 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
2969 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE
, "program");
2971 wxInitializer initializer
;
2974 fprintf(stderr
, "Failed to initialize the wxWidgets library, aborting.");
2979 #ifdef TEST_SNGLINST
2980 wxSingleInstanceChecker checker
;
2981 if ( checker
.Create(wxT(".wxconsole.lock")) )
2983 if ( checker
.IsAnotherRunning() )
2985 wxPrintf(wxT("Another instance of the program is running, exiting.\n"));
2990 // wait some time to give time to launch another instance
2991 wxPrintf(wxT("Press \"Enter\" to continue..."));
2994 else // failed to create
2996 wxPrintf(wxT("Failed to init wxSingleInstanceChecker.\n"));
2998 #endif // TEST_SNGLINST
3001 TestCmdLineConvert();
3003 #if wxUSE_CMDLINE_PARSER
3004 static const wxCmdLineEntryDesc cmdLineDesc
[] =
3006 { wxCMD_LINE_SWITCH
, "h", "help", "show this help message",
3007 wxCMD_LINE_VAL_NONE
, wxCMD_LINE_OPTION_HELP
},
3008 { wxCMD_LINE_SWITCH
, "v", "verbose", "be verbose" },
3009 { wxCMD_LINE_SWITCH
, "q", "quiet", "be quiet" },
3011 { wxCMD_LINE_OPTION
, "o", "output", "output file" },
3012 { wxCMD_LINE_OPTION
, "i", "input", "input dir" },
3013 { wxCMD_LINE_OPTION
, "s", "size", "output block size",
3014 wxCMD_LINE_VAL_NUMBER
},
3015 { wxCMD_LINE_OPTION
, "d", "date", "output file date",
3016 wxCMD_LINE_VAL_DATE
},
3017 { wxCMD_LINE_OPTION
, "f", "double", "output double",
3018 wxCMD_LINE_VAL_DOUBLE
},
3020 { wxCMD_LINE_PARAM
, NULL
, NULL
, "input file",
3021 wxCMD_LINE_VAL_STRING
, wxCMD_LINE_PARAM_MULTIPLE
},
3026 wxCmdLineParser
parser(cmdLineDesc
, argc
, wxArgv
);
3028 parser
.AddOption(wxT("project_name"), wxT(""), wxT("full path to project file"),
3029 wxCMD_LINE_VAL_STRING
,
3030 wxCMD_LINE_OPTION_MANDATORY
| wxCMD_LINE_NEEDS_SEPARATOR
);
3032 switch ( parser
.Parse() )
3035 wxLogMessage(wxT("Help was given, terminating."));
3039 ShowCmdLine(parser
);
3043 wxLogMessage(wxT("Syntax error detected, aborting."));
3046 #endif // wxUSE_CMDLINE_PARSER
3048 #endif // TEST_CMDLINE
3060 TestDllListLoaded();
3061 #endif // TEST_DYNLIB
3065 #endif // TEST_ENVIRON
3067 #ifdef TEST_FILECONF
3069 #endif // TEST_FILECONF
3073 #endif // TEST_LOCALE
3076 wxPuts(wxT("*** Testing wxLog ***"));
3079 for ( size_t n
= 0; n
< 8000; n
++ )
3081 s
<< (wxChar
)(wxT('A') + (n
% 26));
3084 wxLogWarning(wxT("The length of the string is %lu"),
3085 (unsigned long)s
.length());
3088 msg
.Printf(wxT("A very very long message: '%s', the end!\n"), s
.c_str());
3090 // this one shouldn't be truncated
3093 // but this one will because log functions use fixed size buffer
3094 // (note that it doesn't need '\n' at the end neither - will be added
3096 wxLogMessage(wxT("A very very long message 2: '%s', the end!"), s
.c_str());
3106 #ifdef TEST_FILENAME
3109 TestFileNameDirManip();
3110 TestFileNameComparison();
3111 TestFileNameOperations();
3112 #endif // TEST_FILENAME
3114 #ifdef TEST_FILETIME
3119 #endif // TEST_FILETIME
3122 wxLog::AddTraceMask(FTP_TRACE_MASK
);
3124 // wxFTP cannot be a static variable as its ctor needs to access
3125 // wxWidgets internals after it has been initialized
3127 ftp
->SetLog(new wxProtocolLog(FTP_TRACE_MASK
));
3129 if ( TestFtpConnect() )
3139 #if TEST_INTERACTIVE
3140 //TestFtpInteractive();
3143 //else: connecting to the FTP server failed
3149 //wxLog::AddTraceMask(wxT("mime"));
3153 TestMimeAssociate();
3158 #ifdef TEST_INFO_FUNCTIONS
3163 #if TEST_INTERACTIVE
3166 #endif // TEST_INFO_FUNCTIONS
3168 #ifdef TEST_PATHLIST
3170 #endif // TEST_PATHLIST
3174 #endif // TEST_PRINTF
3181 #endif // TEST_REGCONF
3183 #if defined TEST_REGEX && TEST_INTERACTIVE
3184 TestRegExInteractive();
3185 #endif // defined TEST_REGEX && TEST_INTERACTIVE
3187 #ifdef TEST_REGISTRY
3189 TestRegistryAssociation();
3190 #endif // TEST_REGISTRY
3195 #endif // TEST_SOCKETS
3202 #endif // TEST_STREAMS
3204 #ifdef TEST_DATETIME
3205 #if TEST_INTERACTIVE
3206 TestDateTimeInteractive();
3208 #endif // TEST_DATETIME
3210 #ifdef TEST_SCOPEGUARD
3214 #ifdef TEST_STACKWALKER
3215 #if wxUSE_STACKWALKER
3216 TestStackWalk(argv
[0]);
3218 #endif // TEST_STACKWALKER
3220 #ifdef TEST_STDPATHS
3221 TestStandardPaths();
3225 wxPuts(wxT("Sleeping for 3 seconds... z-z-z-z-z..."));
3227 #endif // TEST_USLEEP
3231 #endif // TEST_VOLUME
3235 for ( int n
= 0; n
< argc
; n
++ )
3240 #endif // wxUSE_UNICODE