e70fc11ef1
Drop the legacy CppUnit testing framework used for the unit tests. Replacing it with Catch has the advantage of not requiring CppUnit libraries to be installed on the system in order to be able to run tests (Catch is header-only and a copy of it is now included in the main repository itself) and, in the future, of being able to write the tests in a much more natural way. For now, however, avoid changing the existing tests code as much as [reasonably] possible to avoid introducing bugs in them and provide the CppUnit compatibility macros in the new wx/catch_cppunit.h header which allow to preserve the 99% of the existing code unchanged. Some of the required changes are: - Decompose asserts using "a && b" conditions into multiple asserts checking "a" and "b" independently. This would have been better even with CppUnit (to know which part of condition exactly failed) and is required with Catch. - Use extra parentheses around such conditions when they can't be easily decomposed in the arrays test, due to the use of macros. This is not ideal from the point of view of messages given when the tests fail but will do for now. - Rewrite asserts using "a || b" as a combination of condition checks and assert macros. Again, this is better anyhow, and is required with Catch. Incidentally, this allowed to fix a bug in the "exec" unit test which didn't leave enough time for the new process to be launched before trying to kill it. - Remove multiple CPPUNIT_TEST_SUITE_NAMED_REGISTRATION() macros, our emulation of this macro can be used only once. - Provide string conversions using Catch-specific StringMaker for a couple of types. - Replace custom wxImage comparison with a Catch-specific matcher class. - Remove most of test running logic from test.cpp, in particular don't parse command line ourselves any longer but use Catch built-in command line parser. This is a source of a minor regression: previously, both "Foo" and "FooTestCase" could be used as the name of the test to run, but now only the latter is accepted.
220 lines
7.0 KiB
C++
220 lines
7.0 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: tests/controls/markup.cpp
|
|
// Purpose: wxMarkupParser and related classes unit tests
|
|
// Author: Vadim Zeitlin
|
|
// Created: 2011-02-17
|
|
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "testprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#endif // WX_PRECOMP
|
|
|
|
#include "wx/private/markupparser.h"
|
|
|
|
class MarkupTestCase : public CppUnit::TestCase
|
|
{
|
|
public:
|
|
MarkupTestCase() { }
|
|
|
|
private:
|
|
CPPUNIT_TEST_SUITE( MarkupTestCase );
|
|
CPPUNIT_TEST( RoundTrip );
|
|
CPPUNIT_TEST( Quote );
|
|
CPPUNIT_TEST( Strip );
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
void RoundTrip();
|
|
void Quote();
|
|
void Strip();
|
|
|
|
wxDECLARE_NO_COPY_CLASS(MarkupTestCase);
|
|
};
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( MarkupTestCase );
|
|
|
|
// also include in its own registry so that these tests can be run alone
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( MarkupTestCase, "MarkupTestCase" );
|
|
|
|
void MarkupTestCase::RoundTrip()
|
|
{
|
|
// Define a wxMarkupParserOutput object which produces the same markup
|
|
// string on output. This is, of course, perfectly useless, but allows us
|
|
// to test that parsing works as expected.
|
|
class RoundTripOutput : public wxMarkupParserOutput
|
|
{
|
|
public:
|
|
RoundTripOutput() { }
|
|
|
|
void Reset() { m_text.clear(); }
|
|
|
|
const wxString& GetText() const { return m_text; }
|
|
|
|
|
|
virtual void OnText(const wxString& text) { m_text += text; }
|
|
|
|
virtual void OnBoldStart() { m_text += "<b>"; }
|
|
virtual void OnBoldEnd() { m_text += "</b>"; }
|
|
|
|
virtual void OnItalicStart() { m_text += "<i>"; }
|
|
virtual void OnItalicEnd() { m_text += "</i>"; }
|
|
|
|
virtual void OnUnderlinedStart() { m_text += "<u>"; }
|
|
virtual void OnUnderlinedEnd() { m_text += "</u>"; }
|
|
|
|
virtual void OnStrikethroughStart() { m_text += "<s>"; }
|
|
virtual void OnStrikethroughEnd() { m_text += "</s>"; }
|
|
|
|
virtual void OnBigStart() { m_text += "<big>"; }
|
|
virtual void OnBigEnd() { m_text += "</big>"; }
|
|
|
|
virtual void OnSmallStart() { m_text += "<small>"; }
|
|
virtual void OnSmallEnd() { m_text += "</small>"; }
|
|
|
|
virtual void OnTeletypeStart() { m_text += "<tt>"; }
|
|
virtual void OnTeletypeEnd() { m_text += "</tt>"; }
|
|
|
|
virtual void OnSpanStart(const wxMarkupSpanAttributes& attrs)
|
|
{
|
|
m_text << "<span";
|
|
|
|
if ( !attrs.m_fgCol.empty() )
|
|
m_text << " foreground='" << attrs.m_fgCol << "'";
|
|
|
|
if ( !attrs.m_bgCol.empty() )
|
|
m_text << " background='" << attrs.m_bgCol << "'";
|
|
|
|
if ( !attrs.m_fontFace.empty() )
|
|
m_text << " face='" << attrs.m_fontFace << "'";
|
|
|
|
wxString size;
|
|
switch ( attrs.m_sizeKind )
|
|
{
|
|
case wxMarkupSpanAttributes::Size_Unspecified:
|
|
break;
|
|
|
|
case wxMarkupSpanAttributes::Size_Relative:
|
|
size << (attrs.m_fontSize > 0 ? "larger" : "smaller");
|
|
break;
|
|
|
|
case wxMarkupSpanAttributes::Size_Symbolic:
|
|
{
|
|
CPPUNIT_ASSERT( attrs.m_fontSize >= -3 );
|
|
CPPUNIT_ASSERT( attrs.m_fontSize <= 3 );
|
|
static const char *cssSizes[] =
|
|
{
|
|
"xx-small", "x-small", "small",
|
|
"medium",
|
|
"large", "x-large", "xx-large",
|
|
};
|
|
|
|
size << cssSizes[attrs.m_fontSize + 3];
|
|
}
|
|
break;
|
|
|
|
case wxMarkupSpanAttributes::Size_PointParts:
|
|
size.Printf("%u", attrs.m_fontSize);
|
|
break;
|
|
}
|
|
|
|
if ( !size.empty() )
|
|
m_text << " size='" << size << '\'';
|
|
|
|
// TODO: Handle the rest of attributes.
|
|
|
|
m_text << ">";
|
|
}
|
|
|
|
virtual void OnSpanEnd(const wxMarkupSpanAttributes& WXUNUSED(attrs))
|
|
{
|
|
m_text += "</span>";
|
|
}
|
|
|
|
private:
|
|
wxString m_text;
|
|
};
|
|
|
|
|
|
RoundTripOutput output;
|
|
wxMarkupParser parser(output);
|
|
|
|
#define CHECK_PARSES_OK(text) \
|
|
output.Reset(); \
|
|
CPPUNIT_ASSERT( parser.Parse(text) ); \
|
|
CPPUNIT_ASSERT_EQUAL( text, output.GetText() )
|
|
|
|
#define CHECK_PARSES_AS(text, result) \
|
|
output.Reset(); \
|
|
CPPUNIT_ASSERT( parser.Parse(text) ); \
|
|
CPPUNIT_ASSERT_EQUAL( result, output.GetText() )
|
|
|
|
#define CHECK_DOESNT_PARSE(text) \
|
|
CPPUNIT_ASSERT( !parser.Parse(text) )
|
|
|
|
CHECK_PARSES_OK( "" );
|
|
CHECK_PARSES_OK( "foo" );
|
|
CHECK_PARSES_OK( "foo<b>bar</b>" );
|
|
CHECK_PARSES_OK( "1<big>2<small>3</small>4<big>5</big></big>6" );
|
|
CHECK_PARSES_OK( "first <span foreground='red'>second</span> last" );
|
|
CHECK_PARSES_OK( "first <span foreground='red' "
|
|
"background='#ffffff'>second </span> last" );
|
|
CHECK_PARSES_OK( "<span size='10240'>10pt</span>" );
|
|
CHECK_PARSES_OK( "<span size='x-small'>much smaller</span>" );
|
|
CHECK_PARSES_OK( "<span size='larger'>larger</span>" );
|
|
CHECK_PARSES_OK
|
|
(
|
|
"<u>Please</u> notice: <i><b>any</b></i> <span foreground='grey'>"
|
|
"<s><tt>bugs</tt></s></span> in this code are <span foreground='red' "
|
|
"size='xx-large'>NOT</span> allowed."
|
|
);
|
|
|
|
CHECK_PARSES_OK( "foo&bar" );
|
|
CHECK_PARSES_AS( "foo&bar", "foo&bar" );
|
|
CHECK_PARSES_AS( "<O'Reilly>", "<O'Reilly>" );
|
|
|
|
CHECK_DOESNT_PARSE( "<" );
|
|
CHECK_DOESNT_PARSE( "<b" );
|
|
CHECK_DOESNT_PARSE( "<b>" );
|
|
CHECK_DOESNT_PARSE( "<b></i>" );
|
|
CHECK_DOESNT_PARSE( "<b><i></b></i>" );
|
|
CHECK_DOESNT_PARSE( "<foo></foo>" );
|
|
|
|
#undef CHECK_PARSES_OK
|
|
#undef CHECK_DOESNT_PARSE
|
|
}
|
|
|
|
void MarkupTestCase::Quote()
|
|
{
|
|
CPPUNIT_ASSERT_EQUAL( "", wxMarkupParser::Quote("") );
|
|
CPPUNIT_ASSERT_EQUAL( "foo", wxMarkupParser::Quote("foo") );
|
|
CPPUNIT_ASSERT_EQUAL( "<foo>", wxMarkupParser::Quote("<foo>") );
|
|
CPPUNIT_ASSERT_EQUAL( "B&B", wxMarkupParser::Quote("B&B") );
|
|
CPPUNIT_ASSERT_EQUAL( """", wxMarkupParser::Quote("\"\"") );
|
|
}
|
|
|
|
void MarkupTestCase::Strip()
|
|
{
|
|
#define CHECK_STRIP( text, stripped ) \
|
|
CPPUNIT_ASSERT_EQUAL( stripped, wxMarkupParser::Strip(text) )
|
|
|
|
CHECK_STRIP( "", "" );
|
|
CHECK_STRIP( "foo", "foo" );
|
|
CHECK_STRIP( "<foo>", "<foo>" );
|
|
CHECK_STRIP( "<b>Big</b> problem", "Big problem" );
|
|
CHECK_STRIP( "<span foreground='red'>c</span>"
|
|
"<span background='green'>o</span>"
|
|
"<span background='blue'>l</span>"
|
|
"<span background='green'>o</span>"
|
|
"<span foreground='yellow'>u</span>"
|
|
"<span background='green'>r</span>",
|
|
"colour" );
|
|
|
|
#undef CHECK_STRIP
|
|
}
|