]>
git.saurik.com Git - wxWidgets.git/blob - tests/regex/regextest.cpp
d3cb7c62c96d0f99f48165e9f41bb835e8149613
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/regex/regex.cpp
3 // Purpose: Test the built-in regex lib and wxRegEx
4 // Author: Mike Wetherell
6 // Copyright: (c) 2004 Mike Wetherell
7 // Licence: wxWidgets licence
8 ///////////////////////////////////////////////////////////////////////////////
13 // To run just one section, say wx_1, do this:
16 // To run all the regex tests:
19 // Some tests must be skipped since they use features which we do not make
20 // available through wxRegEx. To see the list of tests that have been skipped
21 // turn on verbose logging, e.g.:
22 // test --verbose regex
24 // The tests here are for the builtin library, tests for wxRegEx in general
25 // should go in wxregex.cpp
27 // The tests are generated from Henry Spencer's reg.test, additional test
28 // can be added in wxreg.test. These test files are then turned into a C++
29 // include file 'regex.inc' (included below) using a script 'regex.pl'.
32 // For compilers that support precompilation, includes "wx/wx.h".
33 #include "wx/wxprec.h"
39 // for all others, include the necessary headers
45 // many of the tests are specific to the builtin regex lib, so only attempts
46 // to do them when using the builtin regex lib.
48 #ifdef wxHAS_REGEX_ADVANCED
51 #include "wx/cppunit.h"
56 using CppUnit::TestCase
;
57 using CppUnit::TestSuite
;
58 using CppUnit::Exception
;
62 ///////////////////////////////////////////////////////////////////////////////
63 // The test case - an instance represents a single test
65 class RegExTestCase
: public TestCase
68 // constructor - create a single testcase
76 const vector
<const char *>& expected
);
84 wxString
Conv(const char *str
);
85 void parseFlags(const wxString
& flags
);
86 void doTest(int flavor
);
87 static wxString
quote(const wxString
& arg
);
88 const wxChar
*convError() const { return _T("<cannot convert>"); }
90 // assertions - adds some information about the test that failed
91 void fail(const wxString
& msg
) const;
92 void failIf(bool condition
, const wxString
& msg
) const
93 { if (condition
) fail(msg
); }
95 // mode, id, flags, pattern, test data, expected results...
101 wxArrayString m_expected
;
111 // constructor - throws Exception on failure
113 RegExTestCase::RegExTestCase(
120 const vector
<const char *>& expected
)
125 m_flags(Conv(flags
)),
126 m_pattern(Conv(pattern
)),
134 bool badconv
= m_pattern
== convError() || m_data
== convError();
135 vector
<const char *>::const_iterator it
;
137 for (it
= expected
.begin(); it
!= expected
.end(); ++it
) {
138 m_expected
.push_back(Conv(*it
));
139 badconv
= badconv
|| *m_expected
.rbegin() == convError();
142 failIf(badconv
, _T("cannot convert to default character encoding"));
144 // the flags need further parsing...
147 #ifndef wxHAS_REGEX_ADVANCED
148 failIf(!m_basic
&& !m_extended
, _T("advanced regexs not available"));
152 int wxWcscmp(const wchar_t* s1
, const wchar_t* s2
)
154 size_t nLen1
= wxWcslen(s1
);
155 size_t nLen2
= wxWcslen(s2
);
158 return nLen1
- nLen2
;
160 return wxMemcmp(s1
, s2
, nLen1
);
163 // convert a string from UTF8 to the internal encoding
165 wxString
RegExTestCase::Conv(const char *str
)
167 const wxWCharBuffer wstr
= wxConvUTF8
.cMB2WC(str
);
168 const wxWC2WXbuf buf
= wxConvCurrent
->cWC2WX(wstr
);
170 if (!buf
|| wxWcscmp(wxConvCurrent
->cWX2WC(buf
), wstr
) != 0)
178 void RegExTestCase::parseFlags(const wxString
& flags
)
180 for (const wxChar
*p
= flags
; *p
; p
++) {
185 // we don't fully support these flags, but they don't stop us
186 // checking for success of failure of the match, so treat as noop
187 case 'A': case 'B': case 'E': case 'H':
188 case 'I': case 'L': case 'M': case 'N':
189 case 'P': case 'Q': case 'R': case 'S':
190 case 'T': case 'U': case '%':
194 case '^': m_matchFlags
|= wxRE_NOTBOL
; break;
195 case '$': m_matchFlags
|= wxRE_NOTEOL
; break;
200 case '&': m_advanced
= m_basic
= true; break;
201 case 'b': m_basic
= true; break;
202 case 'e': m_extended
= true; break;
203 case 'i': m_compileFlags
|= wxRE_ICASE
; break;
204 case 'o': m_compileFlags
|= wxRE_NOSUB
; break;
205 case 'n': m_compileFlags
|= wxRE_NEWLINE
; break;
206 case 't': if (strchr("ep", m_mode
)) break; // else fall through...
208 // anything else we must skip the test
210 fail(wxString::Format(
211 _T("requires unsupported flag '%c'"), *p
));
216 // Try test for all flavours of expression specified
218 void RegExTestCase::runTest()
223 doTest(wxRE_EXTENDED
);
224 #ifdef wxHAS_REGEX_ADVANCED
225 if (m_advanced
|| (!m_basic
&& !m_extended
))
226 doTest(wxRE_ADVANCED
);
230 // Try the test for a single flavour of expression
232 void RegExTestCase::doTest(int flavor
)
234 wxRegEx
re(m_pattern
, m_compileFlags
| flavor
);
236 // 'e' - test that the pattern fails to compile
238 failIf(re
.IsValid(), _T("compile succeeded (should fail)"));
241 failIf(!re
.IsValid(), _T("compile failed"));
243 bool matches
= re
.Matches(m_data
, m_matchFlags
);
245 // 'f' or 'p' - test that the pattern does not match
246 if (m_mode
== 'f' || m_mode
== 'p') {
247 failIf(matches
, _T("match succeeded (should fail)"));
251 // otherwise 'm' or 'i' - test the pattern does match
252 failIf(!matches
, _T("match failed"));
254 if (m_compileFlags
& wxRE_NOSUB
)
257 // check wxRegEx has correctly counted the number of subexpressions
258 failIf(m_expected
.size() != re
.GetMatchCount(),
259 wxString::Format(_T("GetMatchCount() == %d, expected %d"),
260 re
.GetMatchCount(), m_expected
.size()));
265 for (size_t i
= 0; i
< m_expected
.size(); i
++) {
266 failIf(!re
.GetMatch(&start
, &len
, i
), wxString::Format(
267 _T("wxRegEx::GetMatch failed for match %d"), i
));
269 // m - check the match returns the strings given
272 result
= m_data
.substr(start
, len
);
276 // i - check the match returns the offsets given
277 else if (m_mode
== 'i')
279 result
= wxString::Format(_T("%d %d"), start
, start
+ len
- 1);
281 result
= _T("-1 -1");
283 failIf(result
!= m_expected
[i
], wxString::Format(
284 _T("match(%d) == %s, expected == %s"), i
,
285 quote(result
).c_str(), quote(m_expected
[i
]).c_str()));
289 // assertion - adds some information about the test that failed
291 void RegExTestCase::fail(const wxString
& msg
) const
294 wxArrayString::const_iterator it
;
296 str
<< (wxChar
)m_mode
<< _T(" ") << m_id
<< _T(" ") << m_flags
<< _T(" ")
297 << quote(m_pattern
) << _T(" ") << quote(m_data
);
299 for (it
= m_expected
.begin(); it
!= m_expected
.end(); ++it
)
300 str
<< _T(" ") << quote(*it
);
302 if (str
.length() > 77)
303 str
= str
.substr(0, 74) + _T("...");
305 str
<< _T("\n ") << msg
;
307 // no lossy convs so using utf8
308 CPPUNIT_FAIL(string(str
.mb_str(wxConvUTF8
)));
311 // quote a string so that it can be displayed (static)
313 wxString
RegExTestCase::quote(const wxString
& arg
)
315 const wxChar
*needEscape
= _T("\a\b\t\n\v\f\r\"\\");
316 const wxChar
*escapes
= _T("abtnvfr\"\\");
319 for (size_t i
= 0; i
< arg
.length(); i
++) {
321 const wxChar
*p
= wxStrchr(needEscape
, ch
);
324 str
+= wxString::Format(_T("\\%c"), escapes
[p
- needEscape
]);
325 else if (wxIscntrl(ch
))
326 str
+= wxString::Format(_T("\\%03o"), ch
);
331 return str
.length() == arg
.length() && str
.find(' ') == wxString::npos
?
332 str
: _T("\"") + str
+ _T("\"");
336 ///////////////////////////////////////////////////////////////////////////////
339 class RegExTestSuite
: public TestSuite
342 RegExTestSuite(string name
) : TestSuite(name
) { }
343 void add(const char *mode
, const char *id
, const char *flags
,
344 const char *pattern
, const char *data
, const char *expected
, ...);
347 // Add a testcase to the suite
349 void RegExTestSuite::add(
355 const char *expected
, ...)
357 string name
= getName() + "." + id
;
359 vector
<const char *> expected_results
;
362 for (va_start(ap
, expected
); expected
; expected
= va_arg(ap
, const char *))
363 expected_results
.push_back(expected
);
368 addTest(new RegExTestCase(
369 name
, mode
, id
, flags
, pattern
, data
, expected_results
));
371 catch (Exception
& e
) {
372 wxLogInfo(wxString::Format(_T("skipping: %s\n %s\n"),
373 wxString(name
.c_str(), wxConvUTF8
).c_str(),
374 wxString(e
.what(), wxConvUTF8
).c_str()));
379 // Include the generated tests
384 #endif // wxHAS_REGEX_ADVANCED