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
|
|
|
|
// 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 );
|
2007-08-20 19:20:10 +00:00
|
|
|
CPPUNIT_TEST( CharPrintf );
|
2007-05-02 12:29:32 +00:00
|
|
|
#if wxUSE_STD_STRING
|
|
|
|
CPPUNIT_TEST( StdString );
|
2011-05-17 22:12:39 +00:00
|
|
|
#endif
|
|
|
|
#if wxUSE_LONGLONG
|
|
|
|
CPPUNIT_TEST( LongLongPrintf );
|
2007-05-02 12:29:32 +00:00
|
|
|
#endif
|
2007-06-06 13:48:24 +00:00
|
|
|
CPPUNIT_TEST( Sscanf );
|
2008-07-29 13:32:35 +00:00
|
|
|
CPPUNIT_TEST( RepeatedPrintf );
|
2010-06-24 10:34:36 +00:00
|
|
|
CPPUNIT_TEST( ArgsValidation );
|
2007-03-17 10:26:10 +00:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
void StringPrintf();
|
2007-08-20 19:20:10 +00:00
|
|
|
void CharPrintf();
|
2007-05-02 12:29:32 +00:00
|
|
|
#if wxUSE_STD_STRING
|
|
|
|
void StdString();
|
2011-05-17 22:12:39 +00:00
|
|
|
#endif
|
|
|
|
#if wxUSE_LONGLONG
|
|
|
|
void LongLongPrintf();
|
2007-05-02 12:29:32 +00:00
|
|
|
#endif
|
2007-06-06 13:48:24 +00:00
|
|
|
void Sscanf();
|
2008-07-29 13:32:35 +00:00
|
|
|
void RepeatedPrintf();
|
2010-06-24 10:34:36 +00:00
|
|
|
void ArgsValidation();
|
2007-03-17 10:26:10 +00:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(VarArgTestCase)
|
|
|
|
};
|
|
|
|
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( VarArgTestCase );
|
|
|
|
|
2011-04-30 10:57:04 +00:00
|
|
|
// also include in its own registry so that these tests can be run alone
|
2007-03-17 10:26:10 +00:00
|
|
|
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" );
|
2009-07-23 20:30:22 +00:00
|
|
|
s.Printf("%s %s %i", wxT("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)" );
|
2009-07-23 20:30:22 +00:00
|
|
|
s2.Printf(wxT("[%s](%s)"), s.c_str(), "str");
|
2007-03-17 10:26:10 +00:00
|
|
|
CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
|
|
|
|
|
2007-05-12 10:11:04 +00:00
|
|
|
s2.Printf("%s mailbox", wxString("Opening").c_str());
|
|
|
|
CPPUNIT_ASSERT( s2 == "Opening mailbox" );
|
|
|
|
|
2007-03-28 18:03:26 +00:00
|
|
|
// test passing wxString directly:
|
2009-07-23 20:30:22 +00:00
|
|
|
s2.Printf(wxT("[%s](%s)"), s, "str");
|
2007-03-17 10:26:10 +00:00
|
|
|
CPPUNIT_ASSERT( s2 == "[bar = 11](str)" );
|
2007-03-28 18:03:26 +00:00
|
|
|
|
|
|
|
// test passing wxCharBufferType<T>:
|
|
|
|
s = "FooBar";
|
2009-07-23 20:30:22 +00:00
|
|
|
s2.Printf(wxT("(%s)"), s.mb_str());
|
2007-03-28 18:03:26 +00:00
|
|
|
CPPUNIT_ASSERT( s2 == "(FooBar)" );
|
2009-07-23 20:30:22 +00:00
|
|
|
s2.Printf(wxT("value=%s;"), s.wc_str());
|
2007-03-28 18:03:26 +00:00
|
|
|
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;
|
2009-07-23 20:30:22 +00:00
|
|
|
s2.Printf(wxT("foo %s"), !cond ? s.c_str() : wxT("bar"));
|
2007-08-20 19:20:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VarArgTestCase::CharPrintf()
|
|
|
|
{
|
|
|
|
wxString foo("foo");
|
|
|
|
wxString s;
|
|
|
|
|
|
|
|
// test using wchar_t:
|
|
|
|
s.Printf("char=%c", L'c');
|
2008-07-18 23:07:23 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( "char=c", s );
|
2007-08-20 19:20:10 +00:00
|
|
|
|
|
|
|
// test wxUniCharRef:
|
|
|
|
s.Printf("string[1] is %c", foo[1]);
|
2008-07-18 23:07:23 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( "string[1] is o", s );
|
2007-08-20 19:20:10 +00:00
|
|
|
|
|
|
|
// test char
|
|
|
|
char c = 'z';
|
|
|
|
s.Printf("%c to %c", 'a', c);
|
2008-07-18 23:07:23 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( "a to z", s );
|
2007-08-20 19:20:10 +00:00
|
|
|
|
|
|
|
// test char used as integer:
|
2007-09-14 23:33:46 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(disable:4309) // truncation of constant value
|
|
|
|
#endif
|
2007-08-20 19:20:10 +00:00
|
|
|
c = 240;
|
2007-09-14 23:33:46 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(default:4309)
|
|
|
|
#endif
|
2007-08-20 19:20:10 +00:00
|
|
|
s.Printf("value is %i (int)", c);
|
2008-07-18 23:07:23 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( wxString("value is -16 (int)"), s );
|
2007-05-02 12:29:32 +00:00
|
|
|
|
2007-08-20 19:20:10 +00:00
|
|
|
unsigned char u = 240;
|
|
|
|
s.Printf("value is %i (int)", u);
|
2008-07-18 23:07:23 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( "value is 240 (int)", s );
|
2007-05-02 12:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if wxUSE_STD_STRING
|
|
|
|
void VarArgTestCase::StdString()
|
|
|
|
{
|
|
|
|
// test passing std::[w]string
|
|
|
|
wxString s;
|
|
|
|
|
|
|
|
std::string mb("multi-byte");
|
|
|
|
std::string wc("widechar");
|
|
|
|
|
|
|
|
s.Printf("string %s(%i).", mb, 1);
|
2008-07-18 23:07:23 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( "string multi-byte(1).", s );
|
2007-05-02 12:29:32 +00:00
|
|
|
|
|
|
|
s.Printf("string %s(%i).", wc, 2);
|
2008-07-18 23:07:23 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL( "string widechar(2).", s );
|
2007-03-17 10:26:10 +00:00
|
|
|
}
|
2007-05-02 12:29:32 +00:00
|
|
|
#endif // wxUSE_STD_STRING
|
2007-06-06 13:48:24 +00:00
|
|
|
|
2011-05-17 22:12:39 +00:00
|
|
|
#if wxUSE_LONGLONG
|
|
|
|
void VarArgTestCase::LongLongPrintf()
|
|
|
|
{
|
|
|
|
const char * const llfmt = "%" wxLongLongFmtSpec "d";
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT_EQUAL( "17", wxString::Format(llfmt, wxLL(17)) );
|
|
|
|
|
|
|
|
wxLongLong ll = 1234567890;
|
|
|
|
CPPUNIT_ASSERT_EQUAL( "1234567890", wxString::Format(llfmt, ll) );
|
|
|
|
}
|
|
|
|
#endif // wxUSE_LONGLONG
|
|
|
|
|
2007-06-06 13:48:24 +00:00
|
|
|
void VarArgTestCase::Sscanf()
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
char str[20];
|
|
|
|
wchar_t wstr[20];
|
|
|
|
|
|
|
|
wxString input("42 test");
|
|
|
|
|
|
|
|
wxSscanf(input, "%d %s", &i, &str);
|
|
|
|
CPPUNIT_ASSERT( i == 42 );
|
|
|
|
CPPUNIT_ASSERT( wxStrcmp(str, "test") == 0 );
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
wxSscanf(input, L"%d %s", &i, &wstr);
|
|
|
|
CPPUNIT_ASSERT( i == 42 );
|
|
|
|
CPPUNIT_ASSERT( wxStrcmp(wstr, "test") == 0 );
|
|
|
|
}
|
2008-07-29 13:32:35 +00:00
|
|
|
|
|
|
|
void VarArgTestCase::RepeatedPrintf()
|
|
|
|
{
|
|
|
|
wxCharBuffer buffer(2);
|
|
|
|
char *p = buffer.data();
|
|
|
|
*p = 'h';
|
|
|
|
p++;
|
|
|
|
*p = 'i';
|
|
|
|
|
|
|
|
wxString s;
|
2010-06-24 10:34:23 +00:00
|
|
|
s = wxString::Format("buffer %s, len %d", buffer, (int)wxStrlen(buffer));
|
2008-07-29 13:32:35 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL("buffer hi, len 2", s);
|
|
|
|
|
2010-06-24 10:34:23 +00:00
|
|
|
s = wxString::Format("buffer %s, len %d", buffer, (int)wxStrlen(buffer));
|
2008-07-29 13:32:35 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL("buffer hi, len 2", s);
|
|
|
|
}
|
2010-06-24 10:34:36 +00:00
|
|
|
|
|
|
|
void VarArgTestCase::ArgsValidation()
|
|
|
|
{
|
|
|
|
void *ptr = this;
|
|
|
|
int written;
|
|
|
|
short int swritten;
|
|
|
|
|
|
|
|
// these are valid:
|
|
|
|
wxString::Format("a string(%s,%s), ptr %p, int %i",
|
|
|
|
wxString(), "foo", "char* as pointer", 1);
|
|
|
|
|
2010-07-12 22:50:32 +00:00
|
|
|
// Microsoft has helpfully disabled support for "%n" in their CRT by
|
|
|
|
// default starting from VC8 and somehow even calling
|
2010-07-18 11:52:58 +00:00
|
|
|
// _set_printf_count_output() doesn't help here, so don't use "%n" at all
|
|
|
|
// with it.
|
|
|
|
#if wxCHECK_VISUALC_VERSION(8)
|
|
|
|
#define wxNO_PRINTF_PERCENT_N
|
|
|
|
#endif // VC8+
|
|
|
|
|
|
|
|
// Similarly, many modern Linux distributions ship with g++ that uses
|
|
|
|
// -D_FORTIFY_SOURCE=2 flag by default and this option prevents "%n" from
|
|
|
|
// being used in a string outside of read-only memory, meaning that it
|
|
|
|
// can't be used in wxString to which we (may, depending on build options)
|
|
|
|
// assign it, so also disable testing of "%n" in this case lest we die with
|
|
|
|
// an abort inside vswprintf().
|
|
|
|
#if defined(_FORTIFY_SOURCE)
|
|
|
|
#if _FORTIFY_SOURCE >= 2
|
|
|
|
#define wxNO_PRINTF_PERCENT_N
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef wxNO_PRINTF_PERCENT_N
|
2010-06-24 10:34:36 +00:00
|
|
|
wxString::Format("foo%i%n", 42, &written);
|
|
|
|
CPPUNIT_ASSERT_EQUAL( 5, written );
|
2010-07-18 11:52:58 +00:00
|
|
|
#endif
|
2010-06-24 10:34:36 +00:00
|
|
|
|
|
|
|
// but these are not:
|
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( wxString::Format("%i", "foo") );
|
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( wxString::Format("%s", (void*)this) );
|
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( wxString::Format("%d", ptr) );
|
|
|
|
|
2010-07-18 11:52:58 +00:00
|
|
|
// we don't check wxNO_PRINTF_PERCENT_N here as these expressions should
|
|
|
|
// result in an assert in our code before the CRT functions are even called
|
2010-06-24 10:34:36 +00:00
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( wxString::Format("foo%i%n", &written) );
|
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( wxString::Format("foo%n", ptr) );
|
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( wxString::Format("foo%i%n", 42, &swritten) );
|
|
|
|
|
2010-07-12 22:50:37 +00:00
|
|
|
// the following test (correctly) fails at compile-time with <type_traits>
|
2011-04-05 22:29:55 +00:00
|
|
|
#if !defined(HAVE_TYPE_TRAITS) && !defined(HAVE_TR1_TYPE_TRAITS)
|
|
|
|
wxObject obj;
|
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( wxString::Format("%s", obj) );
|
|
|
|
|
|
|
|
wxObject& ref = obj;
|
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( wxString::Format("%s", ref) );
|
2010-06-24 10:34:36 +00:00
|
|
|
#endif
|
2010-07-03 14:24:12 +00:00
|
|
|
|
|
|
|
// %c should accept integers too
|
|
|
|
wxString::Format("%c", 80);
|
|
|
|
wxString::Format("%c", wxChar(80) + wxChar(1));
|
2010-07-03 14:24:23 +00:00
|
|
|
|
|
|
|
// check size_t handling
|
|
|
|
size_t len = sizeof(*this);
|
2012-03-04 20:31:42 +00:00
|
|
|
#ifdef __WINDOWS__
|
2010-07-03 14:24:23 +00:00
|
|
|
wxString::Format("%Iu", len);
|
|
|
|
#else
|
|
|
|
wxString::Format("%zu", len);
|
|
|
|
#endif
|
2010-06-24 10:34:36 +00:00
|
|
|
}
|