1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * Data Differential YATL (i.e. libtest) library
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include "libtest/yatlcon.h"
39 #include <libtest/common.h>
49 TestCase(const std::string
& arg
):
55 const std::string
& name() const
60 test_return_t
result() const
65 void result(test_return_t arg
)
70 void result(test_return_t arg
, const libtest::Timer
& timer_
)
76 const libtest::Timer
& timer() const
81 void timer(libtest::Timer
& arg
)
88 test_return_t _result
;
89 libtest::Timer _timer
;
92 Formatter::Formatter(const std::string
& frame_name
, const std::string
& arg
)
94 _suite_name
= frame_name
;
99 Formatter::~Formatter()
101 std::for_each(_testcases
.begin(), _testcases
.end(), DeleteFromVector());
105 TestCase
* Formatter::current()
107 return _testcases
.back();
110 void Formatter::skipped()
112 current()->result(TEST_SKIPPED
);
113 Out
<< name() << "." << current()->name() << "\t\t\t\t\t" << "[ " << test_strerror(current()->result()) << " ]";
118 void Formatter::failed()
121 current()->result(TEST_FAILURE
);
123 Out
<< name() << "." << current()->name() << "\t\t\t\t\t" << "[ " << test_strerror(current()->result()) << " ]";
128 void Formatter::success(const libtest::Timer
& timer_
)
131 current()->result(TEST_SUCCESS
, timer_
);
136 << current()->timer()
137 << " [ " << test_strerror(current()->result()) << " ]";
142 void Formatter::xml(libtest::Framework
& framework_
, std::ofstream
& output
)
144 output
<< "<testsuites name=\"" << framework_
.name() << "\">" << std::endl
;
145 for (Suites::iterator framework_iter
= framework_
.suites().begin();
146 framework_iter
!= framework_
.suites().end();
149 output
<< "\t<testsuite name=\"" << (*framework_iter
)->name() << "\" classname=\"\" package=\"\">" << std::endl
;
151 for (TestCases::iterator case_iter
= (*framework_iter
)->formatter()->testcases().begin();
152 case_iter
!= (*framework_iter
)->formatter()->testcases().end();
155 output
<< "\t\t<testcase name=\""
156 << (*case_iter
)->name()
158 << (*case_iter
)->timer().elapsed_milliseconds()
162 switch ((*case_iter
)->result())
165 output
<< "\t\t <skipped/>" << std::endl
;
169 output
<< "\t\t <failure message=\"\" type=\"\"/>"<< std::endl
;
175 output
<< "\t\t</testcase>" << std::endl
;
177 output
<< "\t</testsuite>" << std::endl
;
179 output
<< "</testsuites>" << std::endl
;
182 void Formatter::push_testcase(const std::string
& arg
)
184 assert(_suite_name
.empty() == false);
185 TestCase
* _current_testcase
= new TestCase(arg
);
186 _testcases
.push_back(_current_testcase
);
189 void Formatter::reset()
192 } // namespace libtest