2007-03-17 10:26:10 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tests/strings/vararg.cpp
|
|
|
|
// Purpose: Test for wx vararg look-alike macros
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Created: 2007-02-20
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2007 REA Elektronik GmbH
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "testprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#endif // WX_PRECOMP
|
|
|
|
|
|
|
|
#include "wx/string.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// test class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class VarArgTestCase : public CppUnit::TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VarArgTestCase() {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
CPPUNIT_TEST_SUITE( VarArgTestCase );
|
|
|
|
CPPUNIT_TEST( StringPrintf );
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
void StringPrintf();
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(VarArgTestCase)
|
|
|
|
};
|
|
|
|
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( VarArgTestCase );
|
|
|
|
|
|
|
|
// also include in it's own registry so that these tests can be run alone
|
|
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( VarArgTestCase, "VarArgTestCase" );
|
|
|
|
|
|
|
|
void VarArgTestCase::StringPrintf()
|
|
|
|
{
|
|
|
|
wxString s, s2;
|
|
|
|
|
2007-03-28 18:03:26 +00:00
|
|
|
// test passing literals:
|
2007-03-17 10:26:10 +00:00
|
|
|
s.Printf("%s %i", "foo", 42);
|
|
|
|
CPPUNIT_ASSERT( s == "foo 42" );
|
|
|
|
s.Printf("%s %s %i", _T("bar"), "=", 11);
|
2007-03-28 18:03:26 +00:00
|
|
|
|
|
|
|
// test passing c_str():
|
2007-03-17 10:26:10 +00:00
|
|
|
CPPUNIT_ASSERT( s == "bar = 11" );
|
|
|
|
s2.Printf("(%s)", s.c_str());
|
|
|
|
CPPUNIT_ASSERT( s2 == "(bar = 11)" );
|
|
|
|
s2.Printf(_T("[%s](%s)"), s.c_str(), "str");
|
|
|
|
CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
|
|
|
|
|
2007-03-28 18:03:26 +00:00
|
|
|
// test passing wxString directly:
|
2007-03-17 10:26:10 +00:00
|
|
|
s2.Printf(_T("[%s](%s)"), s, "str");
|
|
|
|
CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
|
2007-03-28 18:03:26 +00:00
|
|
|
|
|
|
|
// test passing wxCharBufferType<T>:
|
|
|
|
s = "FooBar";
|
|
|
|
s2.Printf(_T("(%s)"), s.mb_str());
|
|
|
|
CPPUNIT_ASSERT( s2 == "(FooBar)" );
|
|
|
|
s2.Printf(_T("value=%s;"), s.wc_str());
|
|
|
|
CPPUNIT_ASSERT( s2 == "value=FooBar;" );
|
2007-04-24 14:09:51 +00:00
|
|
|
|
|
|
|
// this tests correct passing of wxCStrData constructed from string
|
|
|
|
// literal:
|
|
|
|
bool cond = true;
|
|
|
|
s2.Printf(_T("foo %s"), !cond ? s.c_str() : _T("bar"));
|
2007-03-17 10:26:10 +00:00
|
|
|
}
|