mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-07 13:27:13 +01:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
81 lines
1.7 KiB
C++
81 lines
1.7 KiB
C++
//
|
|
// NumberParserTest.h
|
|
//
|
|
// Definition of the NumberParserTest class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef NumberParserTest_INCLUDED
|
|
#define NumberParserTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include "CppUnit/TestCase.h"
|
|
#include "Poco/NumberParser.h"
|
|
#include "Poco/NumberFormatter.h"
|
|
#undef max
|
|
#undef min
|
|
#include <limits>
|
|
|
|
class NumberParserTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
NumberParserTest(const std::string& name);
|
|
~NumberParserTest();
|
|
|
|
void testParse();
|
|
void testLimits();
|
|
void testParseError();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
|
|
template <class T> bool testUpperLimit()
|
|
{
|
|
T n = std::numeric_limits<T>::max();
|
|
std::string s = Poco::NumberFormatter::format(n);
|
|
if (std::numeric_limits<T>::is_signed)
|
|
return Poco::NumberParser::parse(s) == n;
|
|
else
|
|
return Poco::NumberParser::parseUnsigned(s) == n;
|
|
}
|
|
|
|
template <class T> bool testLowerLimit()
|
|
{
|
|
T n = std::numeric_limits<T>::min();
|
|
std::string s = Poco::NumberFormatter::format(n);
|
|
return Poco::NumberParser::parse(s) == n;
|
|
}
|
|
|
|
#if defined(POCO_HAVE_INT64)
|
|
template <class T> bool testUpperLimit64()
|
|
{
|
|
T n = std::numeric_limits<T>::max();
|
|
std::string s = Poco::NumberFormatter::format(n);
|
|
if (std::numeric_limits<T>::is_signed)
|
|
return Poco::NumberParser::parse64(s) == n;
|
|
else
|
|
return Poco::NumberParser::parseUnsigned64(s) == n;
|
|
}
|
|
|
|
template <class T> bool testLowerLimit64()
|
|
{
|
|
T n = std::numeric_limits<T>::min();
|
|
std::string s = Poco::NumberFormatter::format(n);
|
|
return Poco::NumberParser::parse64(s) == n;
|
|
}
|
|
#endif
|
|
};
|
|
|
|
|
|
#endif // NumberParserTest_INCLUDED
|