cyphesis/tests/idtest.cpp

144 lines
2.6 KiB
C++
Raw Permalink Normal View History

// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2006 Alistair Riddoch
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2009-04-09 12:42:44 +01:00
// $Id$
2011-02-15 09:30:46 +00:00
#ifdef NDEBUG
#undef NDEBUG
#endif
#ifndef DEBUG
#define DEBUG
#endif
#include "common/id.h"
2010-03-20 17:02:40 +00:00
#include "common/log.h"
2009-05-05 21:13:53 +01:00
#include <iostream>
#include <cstdlib>
#include <setjmp.h>
#include <signal.h>
#include <cassert>
2009-05-05 21:13:53 +01:00
jmp_buf env;
static void handle_abort(int)
{
longjmp(env, 1);
}
int main()
{
{
std::string one("1");
assert(integerId(one) == 1);
}
{
std::string two("2");
assert(integerId(two) == 2);
}
{
std::string minus_two("-2");
assert(integerId(minus_two) == -2);
}
{
std::string text("text");
assert(integerId(text) == -1L);
}
{
std::string one("1");
assert(forceIntegerId(one) == 1);
}
{
std::string two("2");
assert(forceIntegerId(two) == 2);
}
{
std::string minus_two("-2");
assert(forceIntegerId(minus_two) == -2);
}
{
std::string one("1");
assert(integerIdCheck(one) == 0);
}
{
std::string two("2");
assert(integerIdCheck(two) == 0);
}
{
std::string minus_two("-2");
assert(integerIdCheck(minus_two) == 0);
}
2009-05-05 21:13:53 +01:00
{
std::string text("text");
assert(integerIdCheck(text) == -1);
}
{
std::string text("text");
assert(integerId(text) == -1);
}
2009-05-05 21:13:53 +01:00
if (setjmp(env) == 0) {
signal(SIGABRT, handle_abort);
// This should abort due to hitting an abort call
{
std::string text("text");
forceIntegerId(text);
}
// The abort causes control to go back to setjmp
return 1;
}
std::cout << "It worked" << std::endl << std::flush;
return 0;
}
2010-03-20 17:02:40 +00:00
void log(LogLevel lvl, const std::string & msg)
{
}