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 #else // #if TEST_ALL
110 #define TEST_DATETIME
112 #define TEST_STDPATHS
113 #define TEST_STACKWALKER
115 #define TEST_SNGLINST
117 #define TEST_INFO_FUNCTIONS
122 // some tests are interactive, define this to run them
123 #ifdef TEST_INTERACTIVE
124 #undef TEST_INTERACTIVE
126 #define TEST_INTERACTIVE 1
128 #define TEST_INTERACTIVE 1
131 // ============================================================================
133 // ============================================================================
135 // ----------------------------------------------------------------------------
137 // ----------------------------------------------------------------------------
144 static const wxChar
*ROOTDIR
= wxT("/");
145 static const wxChar
*TESTDIR
= wxT("/usr/local/share");
146 #elif defined(__WXMSW__) || defined(__DOS__) || defined(__OS2__)
147 static const wxChar
*ROOTDIR
= wxT("c:\\");
148 static const wxChar
*TESTDIR
= wxT("d:\\");
150 #error "don't know where the root directory is"
153 static void TestDirEnumHelper(wxDir
& dir
,
154 int flags
= wxDIR_DEFAULT
,
155 const wxString
& filespec
= wxEmptyString
)
159 if ( !dir
.IsOpened() )
162 bool cont
= dir
.GetFirst(&filename
, filespec
, flags
);
165 wxPrintf(wxT("\t%s\n"), filename
.c_str());
167 cont
= dir
.GetNext(&filename
);
170 wxPuts(wxEmptyString
);
175 static void TestDirEnum()
177 wxPuts(wxT("*** Testing wxDir::GetFirst/GetNext ***"));
179 wxString cwd
= wxGetCwd();
180 if ( !wxDir::Exists(cwd
) )
182 wxPrintf(wxT("ERROR: current directory '%s' doesn't exist?\n"), cwd
.c_str());
187 if ( !dir
.IsOpened() )
189 wxPrintf(wxT("ERROR: failed to open current directory '%s'.\n"), cwd
.c_str());
193 wxPuts(wxT("Enumerating everything in current directory:"));
194 TestDirEnumHelper(dir
);
196 wxPuts(wxT("Enumerating really everything in current directory:"));
197 TestDirEnumHelper(dir
, wxDIR_DEFAULT
| wxDIR_DOTDOT
);
199 wxPuts(wxT("Enumerating object files in current directory:"));
200 TestDirEnumHelper(dir
, wxDIR_DEFAULT
, wxT("*.o*"));
202 wxPuts(wxT("Enumerating directories in current directory:"));
203 TestDirEnumHelper(dir
, wxDIR_DIRS
);
205 wxPuts(wxT("Enumerating files in current directory:"));
206 TestDirEnumHelper(dir
, wxDIR_FILES
);
208 wxPuts(wxT("Enumerating files including hidden in current directory:"));
209 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
213 wxPuts(wxT("Enumerating everything in root directory:"));
214 TestDirEnumHelper(dir
, wxDIR_DEFAULT
);
216 wxPuts(wxT("Enumerating directories in root directory:"));
217 TestDirEnumHelper(dir
, wxDIR_DIRS
);
219 wxPuts(wxT("Enumerating files in root directory:"));
220 TestDirEnumHelper(dir
, wxDIR_FILES
);
222 wxPuts(wxT("Enumerating files including hidden in root directory:"));
223 TestDirEnumHelper(dir
, wxDIR_FILES
| wxDIR_HIDDEN
);
225 wxPuts(wxT("Enumerating files in non existing directory:"));
226 wxDir
dirNo(wxT("nosuchdir"));
227 TestDirEnumHelper(dirNo
);
232 class DirPrintTraverser
: public wxDirTraverser
235 virtual wxDirTraverseResult
OnFile(const wxString
& WXUNUSED(filename
))
237 return wxDIR_CONTINUE
;
240 virtual wxDirTraverseResult
OnDir(const wxString
& dirname
)
242 wxString path
, name
, ext
;
243 wxFileName::SplitPath(dirname
, &path
, &name
, &ext
);
246 name
<< wxT('.') << ext
;
249 for ( const wxChar
*p
= path
.c_str(); *p
; p
++ )
251 if ( wxIsPathSeparator(*p
) )
255 wxPrintf(wxT("%s%s\n"), indent
.c_str(), name
.c_str());
257 return wxDIR_CONTINUE
;
261 static void TestDirTraverse()
263 wxPuts(wxT("*** Testing wxDir::Traverse() ***"));
267 size_t n
= wxDir::GetAllFiles(TESTDIR
, &files
);
268 wxPrintf(wxT("There are %u files under '%s'\n"), n
, TESTDIR
);
271 wxPrintf(wxT("First one is '%s'\n"), files
[0u].c_str());
272 wxPrintf(wxT(" last one is '%s'\n"), files
[n
- 1].c_str());
275 // enum again with custom traverser
276 wxPuts(wxT("Now enumerating directories:"));
278 DirPrintTraverser traverser
;
279 dir
.Traverse(traverser
, wxEmptyString
, wxDIR_DIRS
| wxDIR_HIDDEN
);
284 static void TestDirExists()
286 wxPuts(wxT("*** Testing wxDir::Exists() ***"));
288 static const wxChar
*dirnames
[] =
291 #if defined(__WXMSW__)
294 wxT("\\\\share\\file"),
298 wxT("c:\\autoexec.bat"),
299 #elif defined(__UNIX__)
308 for ( size_t n
= 0; n
< WXSIZEOF(dirnames
); n
++ )
310 wxPrintf(wxT("%-40s: %s\n"),
312 wxDir::Exists(dirnames
[n
]) ? wxT("exists")
313 : wxT("doesn't exist"));
321 // ----------------------------------------------------------------------------
323 // ----------------------------------------------------------------------------
327 #include "wx/dynlib.h"
329 #if defined(__WXMSW__) || defined(__UNIX__)
331 static void TestDllListLoaded()
333 wxPuts(wxT("*** testing wxDynamicLibrary::ListLoaded() ***\n"));
335 wxPuts("Loaded modules:");
336 wxDynamicLibraryDetailsArray dlls
= wxDynamicLibrary::ListLoaded();
337 const size_t count
= dlls
.GetCount();
338 for ( size_t n
= 0; n
< count
; ++n
)
340 const wxDynamicLibraryDetails
& details
= dlls
[n
];
341 printf("%-45s", (const char *)details
.GetPath().mb_str());
343 void *addr
wxDUMMY_INITIALIZE(NULL
);
344 size_t len
wxDUMMY_INITIALIZE(0);
345 if ( details
.GetAddress(&addr
, &len
) )
347 printf(" %08lx:%08lx",
348 (unsigned long)addr
, (unsigned long)((char *)addr
+ len
));
351 printf(" %s\n", (const char *)details
.GetVersion().mb_str());
354 wxPuts(wxEmptyString
);
359 #endif // TEST_DYNLIB
361 // ----------------------------------------------------------------------------
363 // ----------------------------------------------------------------------------
367 #include "wx/mimetype.h"
369 static void TestMimeEnum()
371 wxPuts(wxT("*** Testing wxMimeTypesManager::EnumAllFileTypes() ***\n"));
373 wxArrayString mimetypes
;
375 size_t count
= wxTheMimeTypesManager
->EnumAllFileTypes(mimetypes
);
377 wxPrintf(wxT("*** All %u known filetypes: ***\n"), count
);
382 for ( size_t n
= 0; n
< count
; n
++ )
384 wxFileType
*filetype
=
385 wxTheMimeTypesManager
->GetFileTypeFromMimeType(mimetypes
[n
]);
388 wxPrintf(wxT(" nothing known about the filetype '%s'!\n"),
389 mimetypes
[n
].c_str());
393 filetype
->GetDescription(&desc
);
394 filetype
->GetExtensions(exts
);
396 filetype
->GetIcon(NULL
);
399 for ( size_t e
= 0; e
< exts
.GetCount(); e
++ )
402 extsAll
<< wxT(", ");
406 wxPrintf(wxT(" %s: %s (%s)\n"),
407 mimetypes
[n
].c_str(), desc
.c_str(), extsAll
.c_str());
410 wxPuts(wxEmptyString
);
413 static void TestMimeFilename()
415 wxPuts(wxT("*** Testing MIME type from filename query ***\n"));
417 static const wxChar
*filenames
[] =
425 for ( size_t n
= 0; n
< WXSIZEOF(filenames
); n
++ )
427 const wxString fname
= filenames
[n
];
428 wxString ext
= fname
.AfterLast(wxT('.'));
429 wxFileType
*ft
= wxTheMimeTypesManager
->GetFileTypeFromExtension(ext
);
432 wxPrintf(wxT("WARNING: extension '%s' is unknown.\n"), ext
.c_str());
437 if ( !ft
->GetDescription(&desc
) )
438 desc
= wxT("<no description>");
441 if ( !ft
->GetOpenCommand(&cmd
,
442 wxFileType::MessageParameters(fname
, wxEmptyString
)) )
443 cmd
= wxT("<no command available>");
445 cmd
= wxString(wxT('"')) + cmd
+ wxT('"');
447 wxPrintf(wxT("To open %s (%s) run:\n %s\n"),
448 fname
.c_str(), desc
.c_str(), cmd
.c_str());
454 wxPuts(wxEmptyString
);
457 static void TestMimeAssociate()
459 wxPuts(wxT("*** Testing creation of filetype association ***\n"));
461 wxFileTypeInfo
ftInfo(
462 wxT("application/x-xyz"),
463 wxT("xyzview '%s'"), // open cmd
464 wxT(""), // print cmd
465 wxT("XYZ File"), // description
466 wxT(".xyz"), // extensions
467 wxNullPtr
// end of extensions
469 ftInfo
.SetShortDesc(wxT("XYZFile")); // used under Win32 only
471 wxFileType
*ft
= wxTheMimeTypesManager
->Associate(ftInfo
);
474 wxPuts(wxT("ERROR: failed to create association!"));
478 // TODO: read it back
482 wxPuts(wxEmptyString
);
488 // ----------------------------------------------------------------------------
489 // misc information functions
490 // ----------------------------------------------------------------------------
492 #ifdef TEST_INFO_FUNCTIONS
494 #include "wx/utils.h"
497 static void TestDiskInfo()
499 wxPuts(wxT("*** Testing wxGetDiskSpace() ***"));
503 wxChar pathname
[128];
504 wxPrintf(wxT("\nEnter a directory name (or 'quit' to escape): "));
505 if ( !wxFgets(pathname
, WXSIZEOF(pathname
), stdin
) )
508 // kill the last '\n'
509 pathname
[wxStrlen(pathname
) - 1] = 0;
511 if (wxStrcmp(pathname
, "quit") == 0)
514 wxLongLong total
, free
;
515 if ( !wxGetDiskSpace(pathname
, &total
, &free
) )
517 wxPuts(wxT("ERROR: wxGetDiskSpace failed."));
521 wxPrintf(wxT("%sKb total, %sKb free on '%s'.\n"),
522 (total
/ 1024).ToString().c_str(),
523 (free
/ 1024).ToString().c_str(),
528 #endif // TEST_INTERACTIVE
530 static void TestOsInfo()
532 wxPuts(wxT("*** Testing OS info functions ***\n"));
535 wxGetOsVersion(&major
, &minor
);
536 wxPrintf(wxT("Running under: %s, version %d.%d\n"),
537 wxGetOsDescription().c_str(), major
, minor
);
539 wxPrintf(wxT("%ld free bytes of memory left.\n"), wxGetFreeMemory().ToLong());
541 wxPrintf(wxT("Host name is %s (%s).\n"),
542 wxGetHostName().c_str(), wxGetFullHostName().c_str());
544 wxPuts(wxEmptyString
);
547 static void TestPlatformInfo()
549 wxPuts(wxT("*** Testing wxPlatformInfo functions ***\n"));
554 wxPrintf(wxT("Operating system family name is: %s\n"), plat
.GetOperatingSystemFamilyName().c_str());
555 wxPrintf(wxT("Operating system name is: %s\n"), plat
.GetOperatingSystemIdName().c_str());
556 wxPrintf(wxT("Port ID name is: %s\n"), plat
.GetPortIdName().c_str());
557 wxPrintf(wxT("Port ID short name is: %s\n"), plat
.GetPortIdShortName().c_str());
558 wxPrintf(wxT("Architecture is: %s\n"), plat
.GetArchName().c_str());
559 wxPrintf(wxT("Endianness is: %s\n"), plat
.GetEndiannessName().c_str());
561 wxPuts(wxEmptyString
);
564 static void TestUserInfo()
566 wxPuts(wxT("*** Testing user info functions ***\n"));
568 wxPrintf(wxT("User id is:\t%s\n"), wxGetUserId().c_str());
569 wxPrintf(wxT("User name is:\t%s\n"), wxGetUserName().c_str());
570 wxPrintf(wxT("Home dir is:\t%s\n"), wxGetHomeDir().c_str());
571 wxPrintf(wxT("Email address:\t%s\n"), wxGetEmailAddress().c_str());
573 wxPuts(wxEmptyString
);
576 #endif // TEST_INFO_FUNCTIONS
578 // ----------------------------------------------------------------------------
579 // regular expressions
580 // ----------------------------------------------------------------------------
582 #if defined TEST_REGEX && TEST_INTERACTIVE
584 #include "wx/regex.h"
586 static void TestRegExInteractive()
588 wxPuts(wxT("*** Testing RE interactively ***"));
593 wxPrintf(wxT("\nEnter a pattern (or 'quit' to escape): "));
594 if ( !wxFgets(pattern
, WXSIZEOF(pattern
), stdin
) )
597 // kill the last '\n'
598 pattern
[wxStrlen(pattern
) - 1] = 0;
600 if (wxStrcmp(pattern
, "quit") == 0)
604 if ( !re
.Compile(pattern
) )
612 wxPrintf(wxT("Enter text to match: "));
613 if ( !wxFgets(text
, WXSIZEOF(text
), stdin
) )
616 // kill the last '\n'
617 text
[wxStrlen(text
) - 1] = 0;
619 if ( !re
.Matches(text
) )
621 wxPrintf(wxT("No match.\n"));
625 wxPrintf(wxT("Pattern matches at '%s'\n"), re
.GetMatch(text
).c_str());
628 for ( size_t n
= 1; ; n
++ )
630 if ( !re
.GetMatch(&start
, &len
, n
) )
635 wxPrintf(wxT("Subexpr %u matched '%s'\n"),
636 n
, wxString(text
+ start
, len
).c_str());
645 // ----------------------------------------------------------------------------
647 // ----------------------------------------------------------------------------
651 #include "wx/protocol/ftp.h"
652 #include "wx/protocol/log.h"
654 #define FTP_ANONYMOUS
659 static const wxChar
*hostname
= wxT("ftp.wxwidgets.org");
661 static const wxChar
*hostname
= "localhost";
664 static bool TestFtpConnect()
666 wxPuts(wxT("*** Testing FTP connect ***"));
669 wxPrintf(wxT("--- Attempting to connect to %s:21 anonymously...\n"), hostname
);
670 #else // !FTP_ANONYMOUS
672 wxFgets(user
, WXSIZEOF(user
), stdin
);
673 user
[wxStrlen(user
) - 1] = '\0'; // chop off '\n'
676 wxChar password
[256];
677 wxPrintf(wxT("Password for %s: "), password
);
678 wxFgets(password
, WXSIZEOF(password
), stdin
);
679 password
[wxStrlen(password
) - 1] = '\0'; // chop off '\n'
680 ftp
->SetPassword(password
);
682 wxPrintf(wxT("--- Attempting to connect to %s:21 as %s...\n"), hostname
, user
);
683 #endif // FTP_ANONYMOUS/!FTP_ANONYMOUS
685 if ( !ftp
->Connect(hostname
) )
687 wxPrintf(wxT("ERROR: failed to connect to %s\n"), hostname
);
693 wxPrintf(wxT("--- Connected to %s, current directory is '%s'\n"),
694 hostname
, ftp
->Pwd().c_str());
702 static void TestFtpInteractive()
704 wxPuts(wxT("\n*** Interactive wxFTP test ***"));
710 wxPrintf(wxT("Enter FTP command (or 'quit' to escape): "));
711 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
714 // kill the last '\n'
715 buf
[wxStrlen(buf
) - 1] = 0;
717 // special handling of LIST and NLST as they require data connection
718 wxString
start(buf
, 4);
720 if ( start
== wxT("LIST") || start
== wxT("NLST") )
723 if ( wxStrlen(buf
) > 4 )
727 if ( !ftp
->GetList(files
, wildcard
, start
== wxT("LIST")) )
729 wxPrintf(wxT("ERROR: failed to get %s of files\n"), start
.c_str());
733 wxPrintf(wxT("--- %s of '%s' under '%s':\n"),
734 start
.c_str(), wildcard
.c_str(), ftp
->Pwd().c_str());
735 size_t count
= files
.GetCount();
736 for ( size_t n
= 0; n
< count
; n
++ )
738 wxPrintf(wxT("\t%s\n"), files
[n
].c_str());
740 wxPuts(wxT("--- End of the file list"));
743 else if ( start
== wxT("QUIT") )
745 break; // get out of here!
749 wxChar ch
= ftp
->SendCommand(buf
);
750 wxPrintf(wxT("Command %s"), ch
? wxT("succeeded") : wxT("failed"));
753 wxPrintf(wxT(" (return code %c)"), ch
);
756 wxPrintf(wxT(", server reply:\n%s\n\n"), ftp
->GetLastResult().c_str());
762 #endif // TEST_INTERACTIVE
765 // ----------------------------------------------------------------------------
767 // ----------------------------------------------------------------------------
769 #ifdef TEST_STACKWALKER
771 #if wxUSE_STACKWALKER
773 #include "wx/stackwalk.h"
775 class StackDump
: public wxStackWalker
778 StackDump(const char *argv0
)
779 : wxStackWalker(argv0
)
783 virtual void Walk(size_t skip
= 1, size_t maxdepth
= wxSTACKWALKER_MAX_DEPTH
)
785 wxPuts(wxT("Stack dump:"));
787 wxStackWalker::Walk(skip
, maxdepth
);
791 virtual void OnStackFrame(const wxStackFrame
& frame
)
793 printf("[%2d] ", (int) frame
.GetLevel());
795 wxString name
= frame
.GetName();
798 printf("%-20.40s", (const char*)name
.mb_str());
802 printf("0x%08lx", (unsigned long)frame
.GetAddress());
805 if ( frame
.HasSourceLocation() )
808 (const char*)frame
.GetFileName().mb_str(),
809 (int)frame
.GetLine());
815 for ( size_t n
= 0; frame
.GetParam(n
, &type
, &name
, &val
); n
++ )
817 printf("\t%s %s = %s\n", (const char*)type
.mb_str(),
818 (const char*)name
.mb_str(),
819 (const char*)val
.mb_str());
824 static void TestStackWalk(const char *argv0
)
826 wxPuts(wxT("*** Testing wxStackWalker ***"));
828 StackDump
dump(argv0
);
834 #endif // wxUSE_STACKWALKER
836 #endif // TEST_STACKWALKER
838 // ----------------------------------------------------------------------------
840 // ----------------------------------------------------------------------------
844 #include "wx/stdpaths.h"
845 #include "wx/wxchar.h" // wxPrintf
847 static void TestStandardPaths()
849 wxPuts(wxT("*** Testing wxStandardPaths ***"));
851 wxTheApp
->SetAppName(wxT("console"));
853 wxStandardPathsBase
& stdp
= wxStandardPaths::Get();
854 wxPrintf(wxT("Config dir (sys):\t%s\n"), stdp
.GetConfigDir().c_str());
855 wxPrintf(wxT("Config dir (user):\t%s\n"), stdp
.GetUserConfigDir().c_str());
856 wxPrintf(wxT("Data dir (sys):\t\t%s\n"), stdp
.GetDataDir().c_str());
857 wxPrintf(wxT("Data dir (sys local):\t%s\n"), stdp
.GetLocalDataDir().c_str());
858 wxPrintf(wxT("Data dir (user):\t%s\n"), stdp
.GetUserDataDir().c_str());
859 wxPrintf(wxT("Data dir (user local):\t%s\n"), stdp
.GetUserLocalDataDir().c_str());
860 wxPrintf(wxT("Documents dir:\t\t%s\n"), stdp
.GetDocumentsDir().c_str());
861 wxPrintf(wxT("Executable path:\t%s\n"), stdp
.GetExecutablePath().c_str());
862 wxPrintf(wxT("Plugins dir:\t\t%s\n"), stdp
.GetPluginsDir().c_str());
863 wxPrintf(wxT("Resources dir:\t\t%s\n"), stdp
.GetResourcesDir().c_str());
864 wxPrintf(wxT("Localized res. dir:\t%s\n"),
865 stdp
.GetLocalizedResourcesDir(wxT("fr")).c_str());
866 wxPrintf(wxT("Message catalogs dir:\t%s\n"),
867 stdp
.GetLocalizedResourcesDir
870 wxStandardPaths::ResourceCat_Messages
876 #endif // TEST_STDPATHS
878 // ----------------------------------------------------------------------------
880 // ----------------------------------------------------------------------------
882 #if !defined(__WIN32__) || !wxUSE_FSVOLUME
888 #include "wx/volume.h"
890 static const wxChar
*volumeKinds
[] =
896 wxT("network volume"),
900 static void TestFSVolume()
902 wxPuts(wxT("*** Testing wxFSVolume class ***"));
904 wxArrayString volumes
= wxFSVolume::GetVolumes();
905 size_t count
= volumes
.GetCount();
909 wxPuts(wxT("ERROR: no mounted volumes?"));
913 wxPrintf(wxT("%u mounted volumes found:\n"), count
);
915 for ( size_t n
= 0; n
< count
; n
++ )
917 wxFSVolume
vol(volumes
[n
]);
920 wxPuts(wxT("ERROR: couldn't create volume"));
924 wxPrintf(wxT("%u: %s (%s), %s, %s, %s\n"),
926 vol
.GetDisplayName().c_str(),
927 vol
.GetName().c_str(),
928 volumeKinds
[vol
.GetKind()],
929 vol
.IsWritable() ? wxT("rw") : wxT("ro"),
930 vol
.GetFlags() & wxFS_VOL_REMOVABLE
? wxT("removable")
937 #endif // TEST_VOLUME
939 // ----------------------------------------------------------------------------
941 // ----------------------------------------------------------------------------
946 #include "wx/datetime.h"
950 static void TestDateTimeInteractive()
952 wxPuts(wxT("\n*** interactive wxDateTime tests ***"));
958 wxPrintf(wxT("Enter a date (or 'quit' to escape): "));
959 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
962 // kill the last '\n'
963 buf
[wxStrlen(buf
) - 1] = 0;
965 if ( wxString(buf
).CmpNoCase("quit") == 0 )
969 const wxChar
*p
= dt
.ParseDate(buf
);
972 wxPrintf(wxT("ERROR: failed to parse the date '%s'.\n"), buf
);
978 wxPrintf(wxT("WARNING: parsed only first %u characters.\n"), p
- buf
);
981 wxPrintf(wxT("%s: day %u, week of month %u/%u, week of year %u\n"),
982 dt
.Format(wxT("%b %d, %Y")).c_str(),
984 dt
.GetWeekOfMonth(wxDateTime::Monday_First
),
985 dt
.GetWeekOfMonth(wxDateTime::Sunday_First
),
986 dt
.GetWeekOfYear(wxDateTime::Monday_First
));
992 #endif // TEST_INTERACTIVE
993 #endif // TEST_DATETIME
995 // ----------------------------------------------------------------------------
997 // ----------------------------------------------------------------------------
1001 #include "wx/snglinst.h"
1003 static bool TestSingleIstance()
1005 wxPuts(wxT("\n*** Testing wxSingleInstanceChecker ***"));
1007 wxSingleInstanceChecker checker
;
1008 if ( checker
.Create(wxT(".wxconsole.lock")) )
1010 if ( checker
.IsAnotherRunning() )
1012 wxPrintf(wxT("Another instance of the program is running, exiting.\n"));
1017 // wait some time to give time to launch another instance
1018 wxPuts(wxT("If you try to run another instance of this program now, it won't start."));
1019 wxPrintf(wxT("Press \"Enter\" to exit wxSingleInstanceChecker test and proceed..."));
1022 else // failed to create
1024 wxPrintf(wxT("Failed to init wxSingleInstanceChecker.\n"));
1031 #endif // TEST_SNGLINST
1034 // ----------------------------------------------------------------------------
1036 // ----------------------------------------------------------------------------
1038 int main(int argc
, char **argv
)
1041 wxChar
**wxArgv
= new wxChar
*[argc
+ 1];
1046 for (n
= 0; n
< argc
; n
++ )
1048 wxMB2WXbuf warg
= wxConvertMB2WX(argv
[n
]);
1049 wxArgv
[n
] = wxStrdup(warg
);
1054 #else // !wxUSE_UNICODE
1056 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
1058 wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE
, "program");
1060 wxInitializer initializer
;
1063 fprintf(stderr
, "Failed to initialize the wxWidgets library, aborting.");
1068 #ifdef TEST_SNGLINST
1069 if (!TestSingleIstance())
1071 #endif // TEST_SNGLINST
1082 TestDllListLoaded();
1083 #endif // TEST_DYNLIB
1086 wxLog::AddTraceMask(FTP_TRACE_MASK
);
1088 // wxFTP cannot be a static variable as its ctor needs to access
1089 // wxWidgets internals after it has been initialized
1091 ftp
->SetLog(new wxProtocolLog(FTP_TRACE_MASK
));
1092 if ( TestFtpConnect() )
1093 TestFtpInteractive();
1094 //else: connecting to the FTP server failed
1101 TestMimeAssociate();
1105 #ifdef TEST_INFO_FUNCTIONS
1110 #if TEST_INTERACTIVE
1113 #endif // TEST_INFO_FUNCTIONS
1117 #endif // TEST_PRINTF
1119 #if defined TEST_REGEX && TEST_INTERACTIVE
1120 TestRegExInteractive();
1121 #endif // defined TEST_REGEX && TEST_INTERACTIVE
1123 #ifdef TEST_DATETIME
1124 #if TEST_INTERACTIVE
1125 TestDateTimeInteractive();
1127 #endif // TEST_DATETIME
1129 #ifdef TEST_STACKWALKER
1130 #if wxUSE_STACKWALKER
1131 TestStackWalk(argv
[0]);
1133 #endif // TEST_STACKWALKER
1135 #ifdef TEST_STDPATHS
1136 TestStandardPaths();
1141 #endif // TEST_VOLUME
1145 for ( int n
= 0; n
< argc
; n
++ )
1150 #endif // wxUSE_UNICODE