mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 10:35:50 +00:00
231 lines
4.7 KiB
C++
231 lines
4.7 KiB
C++
//
|
|
// Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#ifndef BEAST_UNIT_TEST_RESULTS_HPP
|
|
#define BEAST_UNIT_TEST_RESULTS_HPP
|
|
|
|
#include <xrpl/beast/unit_test/detail/const_container.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace beast {
|
|
namespace unit_test {
|
|
|
|
/** Holds a set of test condition outcomes in a testcase. */
|
|
class case_results
|
|
{
|
|
public:
|
|
/** Holds the result of evaluating one test condition. */
|
|
struct test
|
|
{
|
|
explicit test(bool pass_) : pass(pass_)
|
|
{
|
|
}
|
|
|
|
test(bool pass_, std::string const& reason_)
|
|
: pass(pass_), reason(reason_)
|
|
{
|
|
}
|
|
|
|
bool pass;
|
|
std::string reason;
|
|
};
|
|
|
|
private:
|
|
class tests_t : public detail::const_container<std::vector<test>>
|
|
{
|
|
private:
|
|
std::size_t failed_;
|
|
|
|
public:
|
|
tests_t() : failed_(0)
|
|
{
|
|
}
|
|
|
|
/** Returns the total number of test conditions. */
|
|
std::size_t
|
|
total() const
|
|
{
|
|
return cont().size();
|
|
}
|
|
|
|
/** Returns the number of failed test conditions. */
|
|
std::size_t
|
|
failed() const
|
|
{
|
|
return failed_;
|
|
}
|
|
|
|
/** Register a successful test condition. */
|
|
void
|
|
pass()
|
|
{
|
|
cont().emplace_back(true);
|
|
}
|
|
|
|
/** Register a failed test condition. */
|
|
void
|
|
fail(std::string const& reason = "")
|
|
{
|
|
++failed_;
|
|
cont().emplace_back(false, reason);
|
|
}
|
|
};
|
|
|
|
class log_t : public detail::const_container<std::vector<std::string>>
|
|
{
|
|
public:
|
|
/** Insert a string into the log. */
|
|
void
|
|
insert(std::string const& s)
|
|
{
|
|
cont().push_back(s);
|
|
}
|
|
};
|
|
|
|
std::string name_;
|
|
|
|
public:
|
|
explicit case_results(std::string const& name = "") : name_(name)
|
|
{
|
|
}
|
|
|
|
/** Returns the name of this testcase. */
|
|
std::string const&
|
|
name() const
|
|
{
|
|
return name_;
|
|
}
|
|
|
|
/** Memberspace for a container of test condition outcomes. */
|
|
tests_t tests;
|
|
|
|
/** Memberspace for a container of testcase log messages. */
|
|
log_t log;
|
|
};
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
/** Holds the set of testcase results in a suite. */
|
|
class suite_results : public detail::const_container<std::vector<case_results>>
|
|
{
|
|
private:
|
|
std::string name_;
|
|
std::size_t total_ = 0;
|
|
std::size_t failed_ = 0;
|
|
|
|
public:
|
|
explicit suite_results(std::string const& name = "") : name_(name)
|
|
{
|
|
}
|
|
|
|
/** Returns the name of this suite. */
|
|
std::string const&
|
|
name() const
|
|
{
|
|
return name_;
|
|
}
|
|
|
|
/** Returns the total number of test conditions. */
|
|
std::size_t
|
|
total() const
|
|
{
|
|
return total_;
|
|
}
|
|
|
|
/** Returns the number of failures. */
|
|
std::size_t
|
|
failed() const
|
|
{
|
|
return failed_;
|
|
}
|
|
|
|
/** Insert a set of testcase results. */
|
|
/** @{ */
|
|
void
|
|
insert(case_results&& r)
|
|
{
|
|
cont().emplace_back(std::move(r));
|
|
total_ += r.tests.total();
|
|
failed_ += r.tests.failed();
|
|
}
|
|
|
|
void
|
|
insert(case_results const& r)
|
|
{
|
|
cont().push_back(r);
|
|
total_ += r.tests.total();
|
|
failed_ += r.tests.failed();
|
|
}
|
|
/** @} */
|
|
};
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// VFALCO TODO Make this a template class using scoped allocators
|
|
/** Holds the results of running a set of testsuites. */
|
|
class results : public detail::const_container<std::vector<suite_results>>
|
|
{
|
|
private:
|
|
std::size_t m_cases;
|
|
std::size_t total_;
|
|
std::size_t failed_;
|
|
|
|
public:
|
|
results() : m_cases(0), total_(0), failed_(0)
|
|
{
|
|
}
|
|
|
|
/** Returns the total number of test cases. */
|
|
std::size_t
|
|
cases() const
|
|
{
|
|
return m_cases;
|
|
}
|
|
|
|
/** Returns the total number of test conditions. */
|
|
std::size_t
|
|
total() const
|
|
{
|
|
return total_;
|
|
}
|
|
|
|
/** Returns the number of failures. */
|
|
std::size_t
|
|
failed() const
|
|
{
|
|
return failed_;
|
|
}
|
|
|
|
/** Insert a set of suite results. */
|
|
/** @{ */
|
|
void
|
|
insert(suite_results&& r)
|
|
{
|
|
m_cases += r.size();
|
|
total_ += r.total();
|
|
failed_ += r.failed();
|
|
cont().emplace_back(std::move(r));
|
|
}
|
|
|
|
void
|
|
insert(suite_results const& r)
|
|
{
|
|
m_cases += r.size();
|
|
total_ += r.total();
|
|
failed_ += r.failed();
|
|
cont().push_back(r);
|
|
}
|
|
/** @} */
|
|
};
|
|
|
|
} // namespace unit_test
|
|
} // namespace beast
|
|
|
|
#endif
|