tap: use an object for logging
This commit is contained in:
parent
a7f96a127d
commit
e9c0ed3f5f
@ -169,7 +169,9 @@ UTIL_FILES = \
|
||||
string.hpp \
|
||||
stringid.cpp \
|
||||
stringid.hpp \
|
||||
tap.cpp \
|
||||
tap.hpp \
|
||||
tap.ipp \
|
||||
time.cpp \
|
||||
time.hpp \
|
||||
types.hpp \
|
||||
|
82
tap.cpp
Normal file
82
tap.cpp
Normal file
@ -0,0 +1,82 @@
|
||||
/*
|
||||
* This file is part of libgim.
|
||||
*
|
||||
* libgim 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 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* libgim 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 libgim. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
||||
*/
|
||||
|
||||
#include "tap.hpp"
|
||||
|
||||
#include "debug.hpp"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
using util::TAP::logger;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
logger::logger ():
|
||||
m_status (EXIT_SUCCESS),
|
||||
m_size (0)
|
||||
{ ; }
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
logger::~logger ()
|
||||
{
|
||||
std::cout << "1.." << m_size << '\n';
|
||||
}
|
||||
|
||||
|
||||
////////////0//////////////////////////////////////////////////////////////////
|
||||
void
|
||||
util::TAP::logger::expect (bool test, const std::string &msg)
|
||||
{
|
||||
std::cout << (test ? "ok " : "not ok ") << ++m_size << " - " << msg << '\n';
|
||||
|
||||
if (!test)
|
||||
m_status = EXIT_FAILURE;
|
||||
}
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
void
|
||||
logger::skip (const std::string &msg)
|
||||
{
|
||||
std::cout << "ok " << ++m_size << " - # SKIP " << msg << '\n';
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void
|
||||
logger::todo (const std::string &msg)
|
||||
{
|
||||
std::cout << "not ok " << ++m_size << " - # TODO " << msg << '\n';
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void
|
||||
logger::noop (void)
|
||||
{
|
||||
skip ("noop");
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
int
|
||||
logger::status (void) const
|
||||
{
|
||||
return m_status;
|
||||
}
|
56
tap.hpp
56
tap.hpp
@ -20,33 +20,51 @@
|
||||
#ifndef __UTIL_TAP_HPP
|
||||
#define __UTIL_TAP_HPP
|
||||
|
||||
#include <iostream>
|
||||
#include <functional>
|
||||
#include <vector>
|
||||
#include <initializer_list>
|
||||
|
||||
#define TAP_PLAN(N) do { \
|
||||
std::cout << "1.." << (N) << '\n'; \
|
||||
} while (0)
|
||||
namespace util { namespace TAP {
|
||||
/// A simple TAP (Test Anything Protocol) test case output
|
||||
class logger {
|
||||
public:
|
||||
enum {
|
||||
PASS,
|
||||
FAIL,
|
||||
SKIP,
|
||||
TODO
|
||||
};
|
||||
|
||||
logger ();
|
||||
~logger ();
|
||||
|
||||
#define TAP(OK, MSG) do { \
|
||||
std::cout << ((OK) ? "ok - " : "not ok - ") << (MSG) << '\n'; \
|
||||
} while (0)
|
||||
void expect (bool, const std::string &msg);
|
||||
|
||||
template <typename T, typename U>
|
||||
void expect (std::function<bool(const T&, const U&)> test, const T&, const U&, const std::string &msg);
|
||||
|
||||
#define TAP_EQ(A,B,MSG) do { \
|
||||
const auto &&__tap_eq_a = (A); \
|
||||
const auto &&__tap_eq_b = (B); \
|
||||
\
|
||||
TAP (almost_equal (__tap_eq_a, __tap_eq_b), (MSG)); \
|
||||
} while (0)
|
||||
template <typename T, typename U>
|
||||
void expect_eq (const T&, const U&, const std::string &msg = "equality");
|
||||
template <typename T, typename U>
|
||||
void expect_neq (const T&, const U&, const std::string &msg = "inequality");
|
||||
|
||||
template <typename T, typename U> void expect_gt (const T&, const U&, const std::string &msg = "gt");
|
||||
template <typename T, typename U> void expect_ge (const T&, const U&, const std::string &msg = "ge");
|
||||
template <typename T, typename U> void expect_lt (const T&, const U&, const std::string &msg = "lt");
|
||||
template <typename T, typename U> void expect_le (const T&, const U&, const std::string &msg = "le");
|
||||
|
||||
#define TAP_SKIP(MSG) do { \
|
||||
std::cout << "ok # skip " << (MSG) << '\n'; \
|
||||
} while (0)
|
||||
void skip (const std::string &msg);
|
||||
void todo (const std::string &msg);
|
||||
void noop (void);
|
||||
|
||||
int status (void) const;
|
||||
|
||||
#define TAP_BAIL(MSG) do { \
|
||||
std::cout << "Bail out! " << (MSG) << '\n'; \
|
||||
} while (0)
|
||||
private:
|
||||
int m_status;
|
||||
size_t m_size;
|
||||
};
|
||||
} }
|
||||
|
||||
#include "tap.ipp"
|
||||
|
||||
#endif
|
||||
|
83
tap.ipp
Normal file
83
tap.ipp
Normal file
@ -0,0 +1,83 @@
|
||||
/*
|
||||
* This file is part of libgim.
|
||||
*
|
||||
* libgim 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 3 of the License, or (at your option) any later
|
||||
* version.
|
||||
*
|
||||
* libgim 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 libgim. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
||||
*/
|
||||
|
||||
#ifdef __UTIL_TAP_IPP
|
||||
#error
|
||||
#endif
|
||||
#define __UTIL_TAP_IPP
|
||||
|
||||
#include "maths.hpp"
|
||||
|
||||
#include <cstdlib>
|
||||
#include <algorithm>
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
template <typename T, typename U>
|
||||
void
|
||||
util::TAP::logger::expect (std::function<bool(const T&, const U&)> test,
|
||||
const T &a,
|
||||
const U &b,
|
||||
const std::string &msg)
|
||||
{
|
||||
bool success = test (a, b);
|
||||
std::cout << (success ? "ok " : "not ok ") << ++m_size << " - " << msg << '\n';
|
||||
|
||||
if (!success)
|
||||
m_status = EXIT_FAILURE;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
template <typename T, typename U>
|
||||
void
|
||||
util::TAP::logger::expect_eq (const T&a, const U &b, const std::string &msg)
|
||||
{
|
||||
expect (almost_equal<T,U>, a, b, msg);
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
template <typename T, typename U>
|
||||
void
|
||||
util::TAP::logger::expect_neq (const T&a, const U &b, const std::string &msg)
|
||||
{
|
||||
static const std::function<bool(const T&, const U&)> TEST = [] (const T &t, const U &u) -> bool {
|
||||
return !almost_equal (t, u);
|
||||
};
|
||||
|
||||
expect (TEST, a, b, msg);
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
#define TAP_TEST(SUFFIX,OP) \
|
||||
template <typename T, typename U> \
|
||||
void \
|
||||
util::TAP::logger::expect_ ## SUFFIX (const T &a, \
|
||||
const U &b, \
|
||||
const std::string &msg) \
|
||||
{ \
|
||||
std::cout << ((a OP b) ? "ok " : "not ok ") << ++m_size << " - " << msg << '\n'; \
|
||||
}
|
||||
|
||||
TAP_TEST(gt, > )
|
||||
TAP_TEST(ge, >=)
|
||||
TAP_TEST(lt, < )
|
||||
TAP_TEST(le, <=)
|
||||
|
||||
#undef TAP_TEST
|
@ -31,7 +31,7 @@ main (int, char**)
|
||||
{ "cubic 1 uniq", { 1, -3, 3, -1 }, { 1, nan, nan } },
|
||||
};
|
||||
|
||||
TAP_PLAN(elems (CUBICS));
|
||||
util::TAP::logger test;
|
||||
|
||||
for (auto &i: CUBICS) {
|
||||
std::array<float,3> s = util::polynomial::solve<3> (i.coeffs);
|
||||
@ -52,7 +52,7 @@ main (int, char**)
|
||||
ok = false;
|
||||
}
|
||||
|
||||
TAP (ok, i.name);
|
||||
test.expect (ok, i.name);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user