]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/console/console.cpp
reSWIGged
[wxWidgets.git] / samples / console / console.cpp
index b18744999c6c43972205d0caf604e64e5aba5e4e..5611534320c5ce4250db069573ebdd2529b07264 100644 (file)
     #define TEST_TEXTSTREAM
     #define TEST_THREADS
     #define TEST_TIMER
-    #define TEST_UNICODE
     // #define TEST_VCARD            -- don't enable this (VZ)
 //    #define TEST_VOLUME   --FIXME! (RN)
     #define TEST_WCHAR
     #define TEST_ZIP
-    #define TEST_ZLIB
-    #define TEST_GZIP
 
 #else // #if TEST_ALL
 
@@ -2287,163 +2284,6 @@ static void TestPathList()
 
 #include "wx/regex.h"
 
-static void TestRegExCompile()
-{
-    wxPuts(_T("*** Testing RE compilation ***\n"));
-
-    static struct RegExCompTestData
-    {
-        const wxChar *pattern;
-        bool correct;
-    } regExCompTestData[] =
-    {
-        { _T("foo"), true },
-        { _T("foo("), false },
-        { _T("foo(bar"), false },
-        { _T("foo(bar)"), true },
-        { _T("foo["), false },
-        { _T("foo[bar"), false },
-        { _T("foo[bar]"), true },
-        { _T("foo{"), true },
-        { _T("foo{1"), false },
-        { _T("foo{bar"), true },
-        { _T("foo{1}"), true },
-        { _T("foo{1,2}"), true },
-        { _T("foo{bar}"), true },
-        { _T("foo*"), true },
-        { _T("foo**"), false },
-        { _T("foo+"), true },
-        { _T("foo++"), false },
-        { _T("foo?"), true },
-        { _T("foo??"), false },
-        { _T("foo?+"), false },
-    };
-
-    wxRegEx re;
-    for ( size_t n = 0; n < WXSIZEOF(regExCompTestData); n++ )
-    {
-        const RegExCompTestData& data = regExCompTestData[n];
-        bool ok = re.Compile(data.pattern);
-
-        wxPrintf(_T("'%s' is %sa valid RE (%s)\n"),
-                 data.pattern,
-                 ok ? wxEmptyString : _T("not "),
-                 ok == data.correct ? _T("ok") : _T("ERROR"));
-    }
-}
-
-static void TestRegExMatch()
-{
-    wxPuts(_T("*** Testing RE matching ***\n"));
-
-    static struct RegExMatchTestData
-    {
-        const wxChar *pattern;
-        const wxChar *text;
-        bool correct;
-    } regExMatchTestData[] =
-    {
-        { _T("foo"), _T("bar"), false },
-        { _T("foo"), _T("foobar"), true },
-        { _T("^foo"), _T("foobar"), true },
-        { _T("^foo"), _T("barfoo"), false },
-        { _T("bar$"), _T("barbar"), true },
-        { _T("bar$"), _T("barbar "), false },
-    };
-
-    for ( size_t n = 0; n < WXSIZEOF(regExMatchTestData); n++ )
-    {
-        const RegExMatchTestData& data = regExMatchTestData[n];
-
-        wxRegEx re(data.pattern);
-        bool ok = re.Matches(data.text);
-
-        wxPrintf(_T("'%s' %s %s (%s)\n"),
-                 data.pattern,
-                 ok ? _T("matches") : _T("doesn't match"),
-                 data.text,
-                 ok == data.correct ? _T("ok") : _T("ERROR"));
-    }
-}
-
-static void TestRegExSubmatch()
-{
-    wxPuts(_T("*** Testing RE subexpressions ***\n"));
-
-    wxRegEx re(_T("([[:alpha:]]+) ([[:alpha:]]+) ([[:digit:]]+).*([[:digit:]]+)$"));
-    if ( !re.IsValid() )
-    {
-        wxPuts(_T("ERROR: compilation failed."));
-        return;
-    }
-
-    wxString text = _T("Fri Jul 13 18:37:52 CEST 2001");
-
-    if ( !re.Matches(text) )
-    {
-        wxPuts(_T("ERROR: match expected."));
-    }
-    else
-    {
-        wxPrintf(_T("Entire match: %s\n"), re.GetMatch(text).c_str());
-
-        wxPrintf(_T("Date: %s/%s/%s, wday: %s\n"),
-                 re.GetMatch(text, 3).c_str(),
-                 re.GetMatch(text, 2).c_str(),
-                 re.GetMatch(text, 4).c_str(),
-                 re.GetMatch(text, 1).c_str());
-    }
-}
-
-static void TestRegExReplacement()
-{
-    wxPuts(_T("*** Testing RE replacement ***"));
-
-    static struct RegExReplTestData
-    {
-        const wxChar *text;
-        const wxChar *repl;
-        const wxChar *result;
-        size_t count;
-    } regExReplTestData[] =
-    {
-        { _T("foo123"), _T("bar"), _T("bar"), 1 },
-        { _T("foo123"), _T("\\2\\1"), _T("123foo"), 1 },
-        { _T("foo_123"), _T("\\2\\1"), _T("123foo"), 1 },
-        { _T("123foo"), _T("bar"), _T("123foo"), 0 },
-        { _T("123foo456foo"), _T("&&"), _T("123foo456foo456foo"), 1 },
-        { _T("foo123foo123"), _T("bar"), _T("barbar"), 2 },
-        { _T("foo123_foo456_foo789"), _T("bar"), _T("bar_bar_bar"), 3 },
-    };
-
-    const wxChar *pattern = _T("([a-z]+)[^0-9]*([0-9]+)");
-    wxRegEx re(pattern);
-
-    wxPrintf(_T("Using pattern '%s' for replacement.\n"), pattern);
-
-    for ( size_t n = 0; n < WXSIZEOF(regExReplTestData); n++ )
-    {
-        const RegExReplTestData& data = regExReplTestData[n];
-
-        wxString text = data.text;
-        size_t nRepl = re.Replace(&text, data.repl);
-
-        wxPrintf(_T("%s =~ s/RE/%s/g: %u match%s, result = '%s' ("),
-                 data.text, data.repl,
-                 nRepl, nRepl == 1 ? wxEmptyString : _T("es"),
-                 text.c_str());
-        if ( text == data.result && nRepl == data.count )
-        {
-            wxPuts(_T("ok)"));
-        }
-        else
-        {
-            wxPrintf(_T("ERROR: should be %u and '%s')\n"),
-                     data.count, data.result);
-        }
-    }
-}
-
 static void TestRegExInteractive()
 {
     wxPuts(_T("*** Testing RE interactively ***"));
@@ -3982,43 +3822,6 @@ static void TestFSVolume()
 // wide char and Unicode support
 // ----------------------------------------------------------------------------
 
-#ifdef TEST_UNICODE
-
-static void TestUnicodeToFromAscii()
-{
-    wxPuts(_T("Testing wxString::To/FromAscii()\n"));
-
-    static const char *msg = "Hello, world!";
-    wxString s = wxString::FromAscii(msg);
-
-    wxPrintf(_T("Message in Unicode: %s\n"), s.c_str());
-    printf("Message in ASCII: %s\n", (const char *)s.ToAscii());
-
-    wxPutchar(_T('\n'));
-}
-
-#include "wx/textfile.h"
-
-static void TestUnicodeTextFileRead()
-{
-    wxPuts(_T("Testing wxTextFile in Unicode build\n"));
-
-    wxTextFile file;
-    if ( file.Open(_T("testdata.fc"), wxConvLocal) )
-    {
-        const size_t count = file.GetLineCount();
-        for ( size_t n = 0; n < count; n++ )
-        {
-            const wxString& s = file[n];
-
-            wxPrintf(_T("Line %u: \"%s\" (len %u, last char = '%c')\n"),
-                     (unsigned)n, s.c_str(), (unsigned)s.length(), s.Last());
-        }
-    }
-}
-
-#endif // TEST_UNICODE
-
 #ifdef TEST_WCHAR
 
 #include "wx/strconv.h"
@@ -4216,190 +4019,6 @@ static void TestZipFileSystem()
 
 #endif // TEST_ZIP
 
-// ----------------------------------------------------------------------------
-// ZLIB stream
-// ----------------------------------------------------------------------------
-
-#ifdef TEST_ZLIB
-
-#include "wx/zstream.h"
-#include "wx/wfstream.h"
-
-static const wxString FILENAME_GZ = _T("test.gz");
-static const wxChar *TEST_DATA = _T("hello and hello and hello and hello and hello");
-
-static void TestZlibStreamWrite()
-{
-    wxPuts(_T("*** Testing Zlib stream reading ***\n"));
-
-    wxFileOutputStream fileOutStream(FILENAME_GZ);
-    wxZlibOutputStream ostr(fileOutStream);
-    wxPrintf(_T("Compressing the test string... "));
-    ostr.Write(TEST_DATA, wxStrlen(TEST_DATA) + 1);
-    if ( !ostr )
-    {
-        wxPuts(_T("(ERROR: failed)"));
-    }
-    else
-    {
-        wxPuts(_T("(ok)"));
-    }
-
-    wxPuts(_T("\n----- done ------"));
-}
-
-static void TestZlibStreamRead()
-{
-    wxPuts(_T("*** Testing Zlib stream reading ***\n"));
-
-    wxFileInputStream fileInStream(FILENAME_GZ);
-    wxZlibInputStream istr(fileInStream);
-    wxPrintf(_T("Archive size: %u\n"), istr.GetSize());
-
-    wxPuts(_T("Dumping the file:"));
-    while ( !istr.Eof() )
-    {
-        wxPutchar(istr.GetC());
-        fflush(stdout);
-    }
-
-    wxPuts(_T("\n----- done ------"));
-}
-
-#endif // TEST_ZLIB
-
-// ----------------------------------------------------------------------------
-// Gzip streams
-// ----------------------------------------------------------------------------
-
-#ifdef TEST_GZIP
-
-#include "wx/wfstream.h"
-#include "wx/gzstream.h"
-#include "wx/filename.h"
-#include "wx/txtstrm.h"
-
-// Reads two input streams and verifies that they are the same (and non-emtpy)
-//
-void GzipVerify(wxInputStream &in1, wxInputStream &in2)
-{
-    if (!in1 || !in2) {
-        wxPuts(_T("    Can't verify"));
-        return;
-    }
-
-    const int BUFSIZE = 8192;
-    wxCharBuffer buf1(BUFSIZE);
-    wxCharBuffer buf2(BUFSIZE);
-    bool none = true;
-
-    for (;;)
-    {
-        int n1 = in1.Read(buf1.data(), BUFSIZE).LastRead();
-        int n2 = in2.Read(buf2.data(), BUFSIZE).LastRead();
-
-        if (n1 != n2 || (n1 && memcmp(buf1, buf2, n1) != 0) || (!n1 && none)) {
-            wxPuts(_T("    Failure"));
-            break;
-        }
-
-        if (!n1) {
-            wxPuts(_T("    Success"));
-            break;
-        }
-
-        none = false;
-    }
-
-    while (in1.IsOk())
-        in1.Read(buf1.data(), BUFSIZE);
-    while (in2.IsOk())
-        in2.Read(buf2.data(), BUFSIZE);
-}
-
-// Write a gzip file and read it back.
-//
-void TestGzip()
-{
-    wxPuts(_T("*** Testing gzip streams ***\n"));
-
-    const wxString testname = _T("gziptest");
-    const wxString gzipname = testname + _T(".gz");
-
-    // write some random test data to a testfile
-    wxPuts(_T("Writing random test data to ") + testname + _T("..."));
-    {
-        wxFFileOutputStream outstream(testname);
-        wxTextOutputStream textout(outstream);
-
-        for (int i = 0; i < 1000 && outstream.Ok(); i++)
-            textout << rand() << rand() << rand() << rand() << endl;
-
-        wxPuts(_T("    Done"));
-    }
-
-    wxFileName fn(testname);
-    wxDateTime dt = fn.GetModificationTime();
-    wxFFileInputStream instream(testname);
-
-    // try writing a gzip file
-    wxPuts(_T("Writing ") + gzipname + _T(" using wxGzipOutputStream..."));
-    {
-        wxFFileOutputStream outstream(gzipname);
-        wxGzipOutputStream gzip(outstream, testname, dt);
-
-        if (!gzip.Write(instream))
-            wxPuts(_T("    Failure"));
-        else
-            wxPuts(_T("    Success"));
-    }
-
-    // try reading the gzip file
-    wxPuts(_T("Reading ") + gzipname + _T(" using wxGzipInputStream..."));
-    {
-        instream.SeekI(0);
-        wxFFileInputStream instream2(gzipname);
-        wxGzipInputStream gzip(instream2);
-        GzipVerify(instream, gzip);
-
-        if (gzip.GetName() != fn.GetFullName())
-            wxPuts(gzipname + _T(" contains incorrect filename: ")
-                    + gzip.GetName());
-        if (dt.IsValid() && gzip.GetDateTime() != dt)
-            wxPuts(gzipname + _T(" contains incorrect timestamp: ")
-                    + gzip.GetDateTime().Format());
-    }
-
-#ifdef __UNIX__
-    // then verify it using gzip program if it is in the path
-    wxPuts(_T("Reading ") + gzipname + _T(" using gzip program..."));
-    wxFFile file(popen((_T("gzip -d -c ") + gzipname).mb_str(), "r"));
-    if (file.fp()) {
-        wxFFileInputStream instream2(file);
-        instream.SeekI(0);
-        GzipVerify(instream, instream2);
-        pclose(file.fp());
-        file.Detach();
-    }
-
-    // try reading a gzip created by gzip program
-    wxPuts(_T("Reading output of gzip program using wxGzipInputStream..."));
-    file.Attach(popen((_T("gzip -c ") + testname).mb_str(), "r"));
-    if (file.fp()) {
-        wxFFileInputStream instream2(file);
-        wxGzipInputStream gzip(instream2);
-        instream.SeekI(0);
-        GzipVerify(instream, gzip);
-        pclose(file.fp());
-        file.Detach();
-    }
-#endif
-
-    wxPuts(_T("\n--- Done gzip streams ---"));
-}
-
-#endif // TEST_GZIP
-
 // ----------------------------------------------------------------------------
 // date time
 // ----------------------------------------------------------------------------
@@ -6156,19 +5775,9 @@ int main(int argc, char **argv)
     TestRegConfRead();
 #endif // TEST_REGCONF
 
-#ifdef TEST_REGEX
-    // TODO: write a real test using src/regex/tests file
-    #if TEST_ALL
-        TestRegExCompile();
-        TestRegExMatch();
-        TestRegExSubmatch();
-        TestRegExReplacement();
-
-        #if TEST_INTERACTIVE
-            TestRegExInteractive();
-        #endif
-    #endif
-#endif // TEST_REGEX
+#if defined TEST_REGEX && TEST_INTERACTIVE
+    TestRegExInteractive();
+#endif // defined TEST_REGEX && TEST_INTERACTIVE
 
 #ifdef TEST_REGISTRY
     TestRegistryRead();
@@ -6258,13 +5867,6 @@ int main(int argc, char **argv)
     TestFSVolume();
 #endif // TEST_VOLUME
 
-#ifdef TEST_UNICODE
-    TestUnicodeTextFileRead();
-    #if TEST_ALL
-        TestUnicodeToFromAscii();
-    #endif
-#endif // TEST_UNICODE
-
 #ifdef TEST_WCHAR
     TestUtf8();
     TestEncodingConverter();
@@ -6275,15 +5877,6 @@ int main(int argc, char **argv)
     TestZipFileSystem();
 #endif // TEST_ZIP
 
-#ifdef TEST_ZLIB
-    TestZlibStreamWrite();
-    TestZlibStreamRead();
-#endif // TEST_ZLIB
-
-#ifdef TEST_GZIP
-    TestGzip();
-#endif
-
     wxUnusedVar(argc);
     wxUnusedVar(argv);
     return 0;