2008-04-12 17:03:09 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tests/cmdline/cmdlinetest.cpp
|
|
|
|
// Purpose: wxCmdLineParser unit test
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Created: 2008-04-12
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "testprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#endif // WX_PRECOMP
|
|
|
|
|
|
|
|
#include "wx/cmdline.h"
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// test class
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class CmdLineTestCase : public CppUnit::TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CmdLineTestCase() {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
CPPUNIT_TEST_SUITE( CmdLineTestCase );
|
|
|
|
CPPUNIT_TEST( ConvertStringTestCase );
|
2008-05-12 00:03:06 +00:00
|
|
|
CPPUNIT_TEST( Usage );
|
2008-04-12 17:03:09 +00:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
void ConvertStringTestCase();
|
2008-05-12 00:03:06 +00:00
|
|
|
void Usage();
|
2008-04-12 17:03:09 +00:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(CmdLineTestCase)
|
|
|
|
};
|
|
|
|
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( CmdLineTestCase );
|
|
|
|
|
|
|
|
// also include in it's own registry so that these tests can be run alone
|
|
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( CmdLineTestCase, "CmdLineTestCase" );
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// implementation
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
void CmdLineTestCase::ConvertStringTestCase()
|
|
|
|
{
|
2008-07-16 00:49:25 +00:00
|
|
|
#define WX_ASSERT_DOS_ARGS_EQUAL(s, args) \
|
|
|
|
{ \
|
|
|
|
const wxArrayString \
|
|
|
|
argsDOS(wxCmdLineParser::ConvertStringToArgs(args, \
|
|
|
|
wxCMD_LINE_SPLIT_DOS)); \
|
|
|
|
WX_ASSERT_STRARRAY_EQUAL(s, argsDOS); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define WX_ASSERT_UNIX_ARGS_EQUAL(s, args) \
|
2008-04-12 17:03:09 +00:00
|
|
|
{ \
|
2008-07-16 00:49:25 +00:00
|
|
|
const wxArrayString \
|
|
|
|
argsUnix(wxCmdLineParser::ConvertStringToArgs(args, \
|
|
|
|
wxCMD_LINE_SPLIT_UNIX)); \
|
|
|
|
WX_ASSERT_STRARRAY_EQUAL(s, argsUnix); \
|
2008-04-12 17:03:09 +00:00
|
|
|
}
|
|
|
|
|
2008-07-16 00:49:25 +00:00
|
|
|
#define WX_ASSERT_ARGS_EQUAL(s, args) \
|
|
|
|
WX_ASSERT_DOS_ARGS_EQUAL(s, args) \
|
|
|
|
WX_ASSERT_UNIX_ARGS_EQUAL(s, args)
|
|
|
|
|
2008-04-12 17:03:09 +00:00
|
|
|
// normal cases
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "foo", "foo" )
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "foo bar", "\"foo bar\"" )
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "foo|bar", "foo bar" )
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "foo|bar|baz", "foo bar baz" )
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "foo|bar baz", "foo \"bar baz\"" )
|
|
|
|
|
|
|
|
// special cases
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "", "" )
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "foo", "foo " )
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "foo", "foo \t " )
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "foo|bar", "foo bar " )
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "foo|bar|", "foo bar \"" )
|
2008-07-16 00:49:25 +00:00
|
|
|
WX_ASSERT_DOS_ARGS_EQUAL( "foo|bar|\\", "foo bar \\" )
|
|
|
|
WX_ASSERT_UNIX_ARGS_EQUAL( "foo|bar|", "foo bar \\" )
|
2008-04-12 17:03:09 +00:00
|
|
|
|
2008-07-16 00:49:25 +00:00
|
|
|
WX_ASSERT_ARGS_EQUAL( "12 34", "1\"2 3\"4" );
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "1|2 34", "1 \"2 3\"4" );
|
|
|
|
WX_ASSERT_ARGS_EQUAL( "1|2 3|4", "1 \"2 3\" 4" );
|
2008-04-12 17:03:09 +00:00
|
|
|
|
2008-07-16 00:49:25 +00:00
|
|
|
// check for (broken) Windows semantics: backslash doesn't escape spaces
|
2008-07-19 01:53:04 +00:00
|
|
|
WX_ASSERT_DOS_ARGS_EQUAL( "\\\\foo\\\\|/bar", "\"\\\\foo\\\\\" /bar" );
|
2008-07-16 00:49:25 +00:00
|
|
|
WX_ASSERT_DOS_ARGS_EQUAL( "foo|bar\\|baz", "foo bar\\ baz" );
|
|
|
|
WX_ASSERT_DOS_ARGS_EQUAL( "foo|bar\\\"baz", "foo \"bar\\\"baz\"" );
|
|
|
|
|
|
|
|
// check for more sane Unix semantics: backslash does escape spaces and
|
|
|
|
// quotes
|
|
|
|
WX_ASSERT_UNIX_ARGS_EQUAL( "foo|bar baz", "foo bar\\ baz" );
|
|
|
|
WX_ASSERT_UNIX_ARGS_EQUAL( "foo|bar\"baz", "foo \"bar\\\"baz\"" );
|
|
|
|
|
|
|
|
// check that single quotes work too with Unix semantics
|
|
|
|
WX_ASSERT_UNIX_ARGS_EQUAL( "foo bar", "'foo bar'" )
|
|
|
|
WX_ASSERT_UNIX_ARGS_EQUAL( "foo|bar baz", "foo 'bar baz'" )
|
|
|
|
WX_ASSERT_UNIX_ARGS_EQUAL( "foo|bar baz", "foo 'bar baz'" )
|
|
|
|
WX_ASSERT_UNIX_ARGS_EQUAL( "O'Henry", "\"O'Henry\"" )
|
|
|
|
WX_ASSERT_UNIX_ARGS_EQUAL( "O'Henry", "O\\'Henry" )
|
|
|
|
|
|
|
|
#undef WX_ASSERT_DOS_ARGS_EQUAL
|
|
|
|
#undef WX_ASSERT_UNIX_ARGS_EQUAL
|
2008-04-12 17:03:09 +00:00
|
|
|
#undef WX_ASSERT_ARGS_EQUAL
|
|
|
|
}
|
2008-05-12 00:03:06 +00:00
|
|
|
|
|
|
|
void CmdLineTestCase::Usage()
|
|
|
|
{
|
|
|
|
// check that Usage() returns roughly what we expect (don't check all the
|
|
|
|
// details, its format can change in the future)
|
|
|
|
static const wxCmdLineEntryDesc desc[] =
|
|
|
|
{
|
|
|
|
{ wxCMD_LINE_USAGE_TEXT, NULL, NULL, "Verbosity options" },
|
|
|
|
{ wxCMD_LINE_SWITCH, "v", "verbose", "be verbose" },
|
|
|
|
{ wxCMD_LINE_SWITCH, "q", "quiet", "be quiet" },
|
|
|
|
|
|
|
|
{ wxCMD_LINE_USAGE_TEXT, NULL, NULL, "Output options" },
|
|
|
|
{ wxCMD_LINE_OPTION, "o", "output", "output file" },
|
|
|
|
{ wxCMD_LINE_OPTION, "s", "size", "output block size", wxCMD_LINE_VAL_NUMBER },
|
|
|
|
{ wxCMD_LINE_OPTION, "d", "date", "output file date", wxCMD_LINE_VAL_DATE },
|
|
|
|
{ wxCMD_LINE_OPTION, "f", "double", "output double", wxCMD_LINE_VAL_DOUBLE },
|
|
|
|
|
|
|
|
{ wxCMD_LINE_PARAM, NULL, NULL, "input file", },
|
|
|
|
|
|
|
|
{ wxCMD_LINE_USAGE_TEXT, NULL, NULL, "\nEven more usage text" },
|
|
|
|
{ wxCMD_LINE_NONE }
|
|
|
|
};
|
|
|
|
|
|
|
|
wxCmdLineParser p(desc);
|
|
|
|
const wxArrayString usageLines = wxSplit(p.GetUsageString(), '\n');
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Line_Synopsis,
|
|
|
|
Line_Text_Verbosity,
|
|
|
|
Line_Verbose,
|
|
|
|
Line_Quiet,
|
|
|
|
Line_Text_Output,
|
|
|
|
Line_Output_File,
|
|
|
|
Line_Output_Size,
|
|
|
|
Line_Output_Date,
|
|
|
|
Line_Output_Double,
|
|
|
|
Line_Text_Dummy1,
|
|
|
|
Line_Text_Dummy2,
|
|
|
|
Line_Last,
|
|
|
|
Line_Max
|
|
|
|
};
|
|
|
|
|
2008-07-18 23:07:23 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(Line_Max, usageLines.size());
|
|
|
|
CPPUNIT_ASSERT_EQUAL("Verbosity options", usageLines[Line_Text_Verbosity]);
|
|
|
|
CPPUNIT_ASSERT_EQUAL("", usageLines[Line_Text_Dummy1]);
|
|
|
|
CPPUNIT_ASSERT_EQUAL("Even more usage text", usageLines[Line_Text_Dummy2]);
|
|
|
|
CPPUNIT_ASSERT_EQUAL("", usageLines[Line_Last]);
|
2008-05-12 00:03:06 +00:00
|
|
|
}
|