2008-08-02 22:49:01 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tests/misc/misctests.cpp
|
|
|
|
// Purpose: test miscellaneous stuff
|
2009-03-21 23:36:37 +00:00
|
|
|
// Author: Peter Most, Vadim Zeitlin
|
2008-08-02 22:49:01 +00:00
|
|
|
// Created: 2008-07-10
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2008 Peter Most
|
2009-03-21 23:36:37 +00:00
|
|
|
// (c) 2009 Vadim Zeitlin
|
2008-08-02 22:49:01 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "testprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2009-03-22 21:04:28 +00:00
|
|
|
// just some classes using wxRTTI for wxStaticCast() test
|
|
|
|
#include "wx/tarstrm.h"
|
|
|
|
#include "wx/zipstrm.h"
|
|
|
|
|
2008-08-02 22:49:01 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// test class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class MiscTestCase : public CppUnit::TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MiscTestCase() { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
CPPUNIT_TEST_SUITE( MiscTestCase );
|
2009-03-21 23:36:37 +00:00
|
|
|
CPPUNIT_TEST( Assert );
|
2008-08-02 22:49:01 +00:00
|
|
|
CPPUNIT_TEST( Delete );
|
2009-03-22 21:04:28 +00:00
|
|
|
CPPUNIT_TEST( StaticCast );
|
2008-08-02 22:49:01 +00:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
2009-03-21 23:36:37 +00:00
|
|
|
void Assert();
|
2008-08-02 22:49:01 +00:00
|
|
|
void Delete();
|
2009-03-22 21:04:28 +00:00
|
|
|
void StaticCast();
|
2008-08-02 22:49:01 +00:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(MiscTestCase)
|
|
|
|
};
|
|
|
|
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( MiscTestCase );
|
|
|
|
|
2011-04-30 10:57:04 +00:00
|
|
|
// also include in its own registry so that these tests can be run alone
|
2008-08-02 22:49:01 +00:00
|
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( MiscTestCase, "MiscTestCase" );
|
|
|
|
|
2009-03-21 23:36:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2009-03-22 23:02:55 +00:00
|
|
|
bool AssertIfOdd(int n)
|
2009-03-21 23:36:37 +00:00
|
|
|
{
|
2009-03-25 13:32:53 +00:00
|
|
|
wxCHECK_MSG( !(n % 2), false, "parameter must be even" );
|
|
|
|
|
2009-03-22 23:02:55 +00:00
|
|
|
return true;
|
2009-03-21 23:36:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
void MiscTestCase::Assert()
|
|
|
|
{
|
|
|
|
AssertIfOdd(0);
|
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT(AssertIfOdd(1));
|
|
|
|
|
|
|
|
// doesn't fail any more
|
|
|
|
wxAssertHandler_t oldHandler = wxSetAssertHandler(NULL);
|
|
|
|
AssertIfOdd(17);
|
|
|
|
wxSetAssertHandler(oldHandler);
|
|
|
|
}
|
|
|
|
|
2008-08-02 22:49:01 +00:00
|
|
|
void MiscTestCase::Delete()
|
|
|
|
{
|
|
|
|
// Allocate some arbitrary memory to get a valid pointer:
|
|
|
|
long *pointer = new long;
|
|
|
|
CPPUNIT_ASSERT( pointer != NULL );
|
|
|
|
|
|
|
|
// Check that wxDELETE sets the pointer to NULL:
|
|
|
|
wxDELETE( pointer );
|
|
|
|
CPPUNIT_ASSERT( pointer == NULL );
|
|
|
|
|
|
|
|
// Allocate some arbitrary array to get a valid pointer:
|
|
|
|
long *array = new long[ 3 ];
|
|
|
|
CPPUNIT_ASSERT( array != NULL );
|
|
|
|
|
|
|
|
// Check that wxDELETEA sets the pointer to NULL:
|
|
|
|
wxDELETE( array );
|
|
|
|
CPPUNIT_ASSERT( array == NULL );
|
|
|
|
|
|
|
|
// this results in compilation error, as it should
|
|
|
|
#if 0
|
|
|
|
struct SomeUnknownStruct *p = NULL;
|
|
|
|
wxDELETE(p);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-03-25 13:32:53 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
// helper function used just to avoid warnings about value computed not being
|
|
|
|
// used in WX_ASSERT_FAILS_WITH_ASSERT() in StaticCast() below
|
|
|
|
bool IsNull(void *p)
|
|
|
|
{
|
|
|
|
return p == NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
2009-03-22 21:04:28 +00:00
|
|
|
void MiscTestCase::StaticCast()
|
|
|
|
{
|
2012-01-15 12:28:57 +00:00
|
|
|
#if wxUSE_TARSTREAM
|
2009-03-22 21:04:28 +00:00
|
|
|
wxTarEntry tarEntry;
|
|
|
|
CPPUNIT_ASSERT( wxStaticCast(&tarEntry, wxArchiveEntry) );
|
|
|
|
|
|
|
|
wxArchiveEntry *entry = &tarEntry;
|
|
|
|
CPPUNIT_ASSERT( wxStaticCast(entry, wxTarEntry) );
|
|
|
|
|
2012-01-15 12:28:57 +00:00
|
|
|
#if wxUSE_ZIPSTREAM
|
2009-03-22 21:04:28 +00:00
|
|
|
wxZipEntry zipEntry;
|
|
|
|
entry = &zipEntry;
|
|
|
|
CPPUNIT_ASSERT( wxStaticCast(entry, wxZipEntry) );
|
2012-01-15 12:28:57 +00:00
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(&zipEntry, wxTarEntry)) );
|
|
|
|
#endif // wxUSE_ZIPSTREAM
|
2009-03-22 21:04:28 +00:00
|
|
|
|
2009-03-25 13:32:53 +00:00
|
|
|
WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(entry, wxTarEntry)) );
|
2012-01-15 12:28:57 +00:00
|
|
|
#endif // wxUSE_TARSTREAM
|
2009-03-22 21:04:28 +00:00
|
|
|
}
|
|
|
|
|