Files
mariadb-connector-cpp/test/framework/test_asserts.h
Lawrin Novitsky 014f4ac0be Some additions to previous patch + downmerge from 1.1
The merge was done manually copying relevant code changes from 1.1.
In particulary merged the patch for CONCPP-94
Also many changes, that fix real possible issues, that was also present in 1.0 and found while
working on 1.1. For example(but not limited to), there were many cases of incorrect
find_first_of std::string method, where find had to be really used.
2022-05-23 23:03:37 +02:00

180 lines
6.6 KiB
C++

/*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
* 2020 MariaDB Corporation AB
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2.0, as
* published by the Free Software Foundation.
*
* This program is also distributed with certain software (including
* but not limited to OpenSSL) that is licensed under separate terms,
* as designated in a particular file or component or in included license
* documentation. The authors of MySQL hereby grant you an
* additional permission to link the program and your derivative works
* with the separately licensed software that they have included with
* MySQL.
*
* Without limiting anything contained in the foregoing, this file,
* which is part of MySQL Connector/C++, is also subject to the
* Universal FOSS Exception, version 1.0, a copy of which can be found at
* http://oss.oracle.com/licenses/universal-foss-exception.
*
* 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, version 2.0, 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __TESTASSERTS_H_
#define __TESTASSERTS_H_
#include "conncpp/ResultSet.hpp"
#include "../common/ccppTypes.h"
#ifndef __LINE__
#define __LINE__ "(line number n/a)"
#endif
#define XSTR(__MACRODEF) STR(__MACRODEF)
#define STR(__MACRODEF) #__MACRODEF
#define TEST_ERR_LOCATION __FILE__ ":L#" XSTR(__LINE__) " "
#define TEST_ERR_LINE ":L#" XSTR(__LINE__)" "
#define TEST_INSTR_EXEPTION_MSG(_ORIG_EXPTN_MSG) std::string __tst_msg(_ORIG_EXPTN_MSG);__tst_msg.append("(" TEST_ERR_LINE ")")
#define TEST_THROW(_EXPTN_CLASS,_EXPTN) do { TEST_INSTR_EXEPTION_MSG(_EXPTN.what()); throw _EXPTN_CLASS(__tst_msg.c_str(), _EXPTN.getSQLState().c_str(), _EXPTN.getErrorCode()); } while (false)
namespace testsuite
{
void fail(const char* reason, const char * file, int line);
void assertTrue(const String & msg, bool expression
, const char * file, int line);
void assertTrue(const char* msg, bool expression
, const char* file, int line);
void assertEquals(const char * expected, const char * result
, const char * file, int line);
void assertEquals(int32_t expected, uint32_t result
, const char * file, int line);
void assertEquals(int32_t expected, int32_t result
, const char * file, int line);
void assertEquals(uint32_t expected, uint32_t result
, const char * file, int line);
void assertEquals(int64_t expected, int64_t result
, const char * file, int line);
void assertEquals(uint64_t expected, uint64_t result
, const char * file, int line);
void assertEquals(bool expected, bool result
, const char * file, int line);
void assertEquals(const double & expected, const long double & result
, const char * file, int line);
void assertEquals(const long double & expected, const long double & result
, const char * file, int line);
void assertEquals(const double & expected, const double & result
, const char * file, int line);
void assertEquals(const float & expected, const float & result
, const char * file, int line);
void assertEquals(const long double & expected
, const long double & result
, const char * file, int line);
void assertEqualsEpsilon(const double & expected, const double & result
, const double & epsilon, const char * file, int line);
void assertEquals(const String & expected, const String & result
, const char * file, int line);
void assertEquals(const String& expected, const char* result
, const char* file, int line);
// These are needed because blobs may contain \0, and const char* won't work for them
void assertEquals(const sql::SQLString & result, const String& expected
, const char* file, int line);
void assertEquals(const sql::SQLString& expected, const char* result
, const char* file, int line);
// Needed to avoid ambiguity
void assertEquals(const char* expected, const String& result
, const char* file, int line);
//void assertTrueMessage(bool exp, const String & msg, const char * file
// , int line);
void assertGreaterThan(int expected, unsigned int result
, const char * file, int line);
void assertGreaterThan(int expected, int result
, const char * file, int line);
void assertGreaterThan(unsigned int expected, unsigned int result
, const char * file, int line);
void assertLessThan(int expected, unsigned int result
, const char * file, int line);
void assertLessThan(int expected, int result
, const char * file, int line);
void assertLessThan(unsigned int expected, unsigned int result
, const char * file, int line);
bool fuzzyEquals(double expected, double result, double fuzzyEpsilon);
template <class T>
bool contains(const std::vector<T> container, const T& val)
{
for (auto& el : container)
{
if (el == val)
{
return true;
}
}
return false;
}
}
#define TEST_CATCH_EXCEPTIONS catch (sql::SQLFeatureNotSupportedException& ee) { TEST_THROW(sql::SQLFeatureNotSupportedException, ee); }\
catch (sql::SQLException &ee) { TEST_THROW(sql::SQLException, ee); }
// Macros should be used inside testsuite namespace
#define FAIL( why ) fail( (why), __FILE__, __LINE__ )
#define ASSERT_EQUALS( expected, result) do{ try{assertEquals( (expected), (result), __FILE__, __LINE__ );} TEST_CATCH_EXCEPTIONS }while (false)
#define ASSERT_LT( expected, result) \
assertLessThan( (expected), (result), __FILE__, __LINE__ )
#define ASSERT_GT( expected, result) \
assertGreaterThan( (expected), (result), __FILE__, __LINE__ )
#define ASSERT_EQUALS_EPSILON( expected, result, epsilon) \
assertEqualsEpsilon( (expected), (result), (epsilon), __FILE__, __LINE__ )
#define ASSERT( exp ) do{ try{ assertTrue( (#exp), (exp), __FILE__, __LINE__); } TEST_CATCH_EXCEPTIONS }while (false)
#define ASSERT_MESSAGE( exp, message ) \
assertTrue( (message), (exp), __FILE__, __LINE__ )
#endif // __TESTASSERTS_H_