1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/interactive/input.cpp
3 // Purpose: Miscellaneous tests requiring user input
4 // Author: Francesco Montorsi (extracted from console sample)
7 // Copyright: (c) 2010 wxWidgets team
8 ///////////////////////////////////////////////////////////////////////////////
10 // ============================================================================
12 // ============================================================================
14 // ----------------------------------------------------------------------------
16 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
25 // conditional compilation
26 // ----------------------------------------------------------------------------
30 #define TEST_INFO_FUNCTIONS
34 // ----------------------------------------------------------------------------
36 // ----------------------------------------------------------------------------
38 class InteractiveInputTestCase
: public CppUnit::TestCase
41 InteractiveInputTestCase() { }
44 CPPUNIT_TEST_SUITE( InteractiveInputTestCase
);
45 CPPUNIT_TEST( TestSingleIstance
);
46 CPPUNIT_TEST( TestFtpInteractive
);
47 CPPUNIT_TEST( TestDiskInfo
);
48 CPPUNIT_TEST( TestRegExInteractive
);
49 CPPUNIT_TEST( TestDateTimeInteractive
);
50 CPPUNIT_TEST_SUITE_END();
52 void TestSingleIstance();
53 void TestFtpInteractive();
55 void TestRegExInteractive();
56 void TestDateTimeInteractive();
58 wxDECLARE_NO_COPY_CLASS(InteractiveInputTestCase
);
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 //CPPUNIT_TEST_SUITE_REGISTRATION( InteractiveInputTestCase );
66 // do not run this test by default!
68 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( InteractiveInputTestCase
, "InteractiveInputTestCase" );
70 // ============================================================================
72 // ============================================================================
74 // ----------------------------------------------------------------------------
75 // misc information functions
76 // ----------------------------------------------------------------------------
80 void InteractiveInputTestCase::TestDiskInfo()
82 #ifdef TEST_INFO_FUNCTIONS
83 wxPuts(wxT("*** Testing wxGetDiskSpace() ***"));
88 wxPrintf(wxT("Enter a directory name (press ENTER or type 'quit' to escape): "));
89 if ( !wxFgets(pathname
, WXSIZEOF(pathname
), stdin
) )
93 pathname
[wxStrlen(pathname
) - 1] = 0;
95 if (pathname
[0] == '\0' || wxStrcmp(pathname
, "quit") == 0)
98 wxLongLong total
, free
;
99 if ( !wxGetDiskSpace(pathname
, &total
, &free
) )
101 wxPuts(wxT("ERROR: wxGetDiskSpace failed."));
105 wxPrintf(wxT("%sKb total, %sKb free on '%s'.\n"),
106 (total
/ 1024).ToString().c_str(),
107 (free
/ 1024).ToString().c_str(),
115 #endif // TEST_INFO_FUNCTIONS
119 // ----------------------------------------------------------------------------
120 // regular expressions
121 // ----------------------------------------------------------------------------
123 #include "wx/regex.h"
125 void InteractiveInputTestCase::TestRegExInteractive()
128 wxPuts(wxT("*** Testing RE interactively ***"));
133 wxPrintf(wxT("Enter a pattern (press ENTER or type 'quit' to escape): "));
134 if ( !wxFgets(pattern
, WXSIZEOF(pattern
), stdin
) )
137 // kill the last '\n'
138 pattern
[wxStrlen(pattern
) - 1] = 0;
140 if (pattern
[0] == '\0' || wxStrcmp(pattern
, "quit") == 0)
144 if ( !re
.Compile(pattern
) )
152 wxPrintf(wxT("Enter text to match: "));
153 if ( !wxFgets(text
, WXSIZEOF(text
), stdin
) )
156 // kill the last '\n'
157 text
[wxStrlen(text
) - 1] = 0;
159 if ( !re
.Matches(text
) )
161 wxPrintf(wxT("No match.\n"));
165 wxPrintf(wxT("Pattern matches at '%s'\n"), re
.GetMatch(text
).c_str());
168 for ( size_t n
= 1; ; n
++ )
170 if ( !re
.GetMatch(&start
, &len
, n
) )
175 wxPrintf(wxT("Subexpr %u matched '%s'\n"),
176 n
, wxString(text
+ start
, len
).c_str());
187 // ----------------------------------------------------------------------------
189 // ----------------------------------------------------------------------------
191 #include "wx/protocol/ftp.h"
192 #include "wx/protocol/log.h"
194 #define FTP_ANONYMOUS
196 static const wxChar
*hostname
= wxT("ftp.wxwidgets.org");
198 static const wxChar
*hostname
= "localhost";
201 void InteractiveInputTestCase::TestFtpInteractive()
206 wxPuts(wxT("\n*** Interactive wxFTP test ***"));
209 wxPrintf(wxT("--- Attempting to connect to %s:21 anonymously...\n"), hostname
);
210 #else // !FTP_ANONYMOUS
212 wxFgets(user
, WXSIZEOF(user
), stdin
);
213 user
[wxStrlen(user
) - 1] = '\0'; // chop off '\n'
216 wxChar password
[256];
217 wxPrintf(wxT("Password for %s: "), password
);
218 wxFgets(password
, WXSIZEOF(password
), stdin
);
219 password
[wxStrlen(password
) - 1] = '\0'; // chop off '\n'
220 ftp
.SetPassword(password
);
222 wxPrintf(wxT("--- Attempting to connect to %s:21 as %s...\n"), hostname
, user
);
223 #endif // FTP_ANONYMOUS/!FTP_ANONYMOUS
225 if ( !ftp
.Connect(hostname
) )
227 wxPrintf(wxT("ERROR: failed to connect to %s\n"), hostname
);
233 wxPrintf(wxT("--- Connected to %s, current directory is '%s'\n"),
234 hostname
, ftp
.Pwd().c_str());
240 wxPrintf(wxT("Enter FTP command (press ENTER or type 'quit' to escape): "));
241 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
244 // kill the last '\n'
245 buf
[wxStrlen(buf
) - 1] = 0;
247 if (buf
[0] == '\0' || wxStrcmp(buf
, "quit") == 0)
250 // special handling of LIST and NLST as they require data connection
251 wxString
start(buf
, 4);
253 if ( start
== wxT("LIST") || start
== wxT("NLST") )
256 if ( wxStrlen(buf
) > 4 )
260 if ( !ftp
.GetList(files
, wildcard
, start
== wxT("LIST")) )
262 wxPrintf(wxT("ERROR: failed to get %s of files\n"), start
.c_str());
266 wxPrintf(wxT("--- %s of '%s' under '%s':\n"),
267 start
.c_str(), wildcard
.c_str(), ftp
.Pwd().c_str());
268 size_t count
= files
.GetCount();
269 for ( size_t n
= 0; n
< count
; n
++ )
271 wxPrintf(wxT("\t%s\n"), files
[n
].c_str());
273 wxPuts(wxT("--- End of the file list"));
278 wxChar ch
= ftp
.SendCommand(buf
);
279 wxPrintf(wxT("Command %s"), ch
? wxT("succeeded") : wxT("failed"));
282 wxPrintf(wxT(" (return code %c)"), ch
);
285 wxPrintf(wxT(", server reply:\n%s\n\n"), ftp
.GetLastResult().c_str());
293 // ----------------------------------------------------------------------------
295 // ----------------------------------------------------------------------------
298 #include "wx/datetime.h"
300 void InteractiveInputTestCase::TestDateTimeInteractive()
303 wxPuts(wxT("\n*** interactive wxDateTime tests ***"));
309 wxPrintf(wxT("Enter a date (press ENTER or type 'quit' to escape): "));
310 if ( !wxFgets(buf
, WXSIZEOF(buf
), stdin
) )
313 // kill the last '\n'
314 buf
[wxStrlen(buf
) - 1] = 0;
316 if ( buf
[0] == '\0' || wxStrcmp(buf
, "quit") == 0 )
320 const wxChar
*p
= dt
.ParseDate(buf
);
323 wxPrintf(wxT("ERROR: failed to parse the date '%s'.\n"), buf
);
329 wxPrintf(wxT("WARNING: parsed only first %u characters.\n"), p
- buf
);
332 wxPrintf(wxT("%s: day %u, week of month %u/%u, week of year %u\n"),
333 dt
.Format(wxT("%b %d, %Y")).c_str(),
335 dt
.GetWeekOfMonth(wxDateTime::Monday_First
),
336 dt
.GetWeekOfMonth(wxDateTime::Sunday_First
),
337 dt
.GetWeekOfYear(wxDateTime::Monday_First
));
341 #endif // TEST_DATETIME
345 // ----------------------------------------------------------------------------
347 // ----------------------------------------------------------------------------
349 #include "wx/snglinst.h"
351 void InteractiveInputTestCase::TestSingleIstance()
354 wxPuts(wxT("\n*** Testing wxSingleInstanceChecker ***"));
356 wxSingleInstanceChecker checker
;
357 if ( checker
.Create(wxT(".wxconsole.lock")) )
359 if ( checker
.IsAnotherRunning() )
361 wxPrintf(wxT("Another instance of the program is running, exiting.\n"));
365 // wait some time to give time to launch another instance
366 wxPuts(wxT("If you try to run another instance of this program now, it won't start."));
367 wxPrintf(wxT("Press \"Enter\" to exit wxSingleInstanceChecker test and proceed..."));
370 else // failed to create
372 wxPrintf(wxT("Failed to init wxSingleInstanceChecker.\n"));
376 #endif // defined(TEST_SNGLINST)