blob: a41226af245e7109610367fb1d25a676c7d323de [file] [log] [blame]
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef ARM_COMPUTE_TEST_TEST_CASE_FACTORY
25#define ARM_COMPUTE_TEST_TEST_CASE_FACTORY
26
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010027#include "DatasetModes.h"
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010028#include "TestCase.h"
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010029
30#include <memory>
31#include <string>
32
33namespace arm_compute
34{
35namespace test
36{
37namespace framework
38{
39/** Abstract factory class to create test cases. */
40class TestCaseFactory
41{
42public:
Moritz Pflanzerbf234e02017-07-24 15:04:14 +010043 /** Test case status.
44 *
45 * ACTIVE == Test is run and result is validated. Failure on failed validation.
46 * EXPECTED_FAILURE == Test is run and result is validated. Failure on successful validation.
47 * DISABLED == Test is not run.
48 */
49 enum class Status
50 {
51 ACTIVE,
52 EXPECTED_FAILURE,
53 DISABLED
54 };
55
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010056 /** Constructor.
57 *
58 * @param[in] suite_name Name of the test suite to which the test case has been added.
59 * @param[in] name Name of the test case.
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010060 * @param[in] mode Datset mode of the test case.
Moritz Pflanzerbf234e02017-07-24 15:04:14 +010061 * @param[in] status Status of the test case.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010062 * @param[in] description Description of data arguments.
63 */
Moritz Pflanzerbf234e02017-07-24 15:04:14 +010064 TestCaseFactory(std::string suite_name, std::string name, DatasetMode mode, Status status, std::string description = "");
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010065
66 /** Default destructor. */
67 virtual ~TestCaseFactory() = default;
68
69 /** Name of the test case.
70 *
71 * @return Name of the test case.
72 */
73 std::string name() const;
74
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010075 /** Get the mode for which test case will be enabled.
76 *
77 * @return Dataset mode of the test case.
78 */
79 DatasetMode mode() const;
80
Moritz Pflanzerbf234e02017-07-24 15:04:14 +010081 /** Get the status of the test case.
82 *
83 * @return Status of the test case.
84 */
85 Status status() const;
86
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010087 /** Factory function to create the test case
88 *
89 * @return Unique pointer to a newly created test case.
90 */
91 virtual std::unique_ptr<TestCase> make() const = 0;
92
93private:
94 const std::string _suite_name;
95 const std::string _test_name;
96 const std::string _data_description;
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010097 const DatasetMode _mode{ DatasetMode::ALL };
Moritz Pflanzerbf234e02017-07-24 15:04:14 +010098 const Status _status{ Status::ACTIVE };
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010099};
100
101/** Implementation of a test case factory to create non-data test cases. */
102template <typename T>
103class SimpleTestCaseFactory final : public TestCaseFactory
104{
105public:
106 /** Default constructor. */
107 using TestCaseFactory::TestCaseFactory;
108
109 std::unique_ptr<TestCase> make() const override;
110};
111
Alex Gildayc357c472018-03-21 13:54:09 +0000112/** Implementation of a test case factory to create data test cases. */
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100113template <typename T, typename D>
114class DataTestCaseFactory final : public TestCaseFactory
115{
116public:
117 /** Constructor.
118 *
119 * @param[in] suite_name Name of the test suite to which the test case has been added.
120 * @param[in] test_name Name of the test case.
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +0100121 * @param[in] mode Mode in which the test case is enabled.
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100122 * @param[in] status Status of the test case.
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100123 * @param[in] description Description of data arguments.
124 * @param[in] data Input data for the test case.
125 */
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100126 DataTestCaseFactory(std::string suite_name, std::string test_name, DatasetMode mode, Status status, std::string description, const D &data);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100127
128 std::unique_ptr<TestCase> make() const override;
129
130private:
131 D _data;
132};
133
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100134inline TestCaseFactory::TestCaseFactory(std::string suite_name, std::string test_name, DatasetMode mode, Status status, std::string description)
135 : _suite_name{ std::move(suite_name) }, _test_name{ std::move(test_name) }, _data_description{ std::move(description) }, _mode{ mode }, _status{ status }
136
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100137{
138}
139
140inline std::string TestCaseFactory::name() const
141{
142 std::string name = _suite_name + "/" + _test_name;
143
144 if(!_data_description.empty())
145 {
146 name += "@" + _data_description;
147 }
148
149 return name;
150}
151
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +0100152inline DatasetMode TestCaseFactory::mode() const
153{
154 return _mode;
155}
156
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100157inline TestCaseFactory::Status TestCaseFactory::status() const
158{
159 return _status;
160}
161
162inline ::std::ostream &operator<<(::std::ostream &stream, TestCaseFactory::Status status)
163{
164 switch(status)
165 {
166 case TestCaseFactory::Status::ACTIVE:
167 stream << "ACTIVE";
168 break;
169 case TestCaseFactory::Status::EXPECTED_FAILURE:
170 stream << "EXPECTED_FAILURE";
171 break;
172 case TestCaseFactory::Status::DISABLED:
173 stream << "DISABLED";
174 break;
175 default:
176 throw std::invalid_argument("Unsupported test case factory status");
177 }
178
179 return stream;
180}
181
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100182template <typename T>
183inline std::unique_ptr<TestCase> SimpleTestCaseFactory<T>::make() const
184{
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000185 return std::make_unique<T>();
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100186}
187
188template <typename T, typename D>
Moritz Pflanzerbf234e02017-07-24 15:04:14 +0100189inline DataTestCaseFactory<T, D>::DataTestCaseFactory(std::string suite_name, std::string test_name, DatasetMode mode, Status status, std::string description, const D &data)
190 : TestCaseFactory{ std::move(suite_name), std::move(test_name), mode, status, std::move(description) }, _data{ data }
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100191{
192}
193
194template <typename T, typename D>
195inline std::unique_ptr<TestCase> DataTestCaseFactory<T, D>::make() const
196{
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000197 return std::make_unique<T>(_data);
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +0100198}
199} // namespace framework
200} // namespace test
201} // namespace arm_compute
202#endif /* ARM_COMPUTE_TEST_TEST_CASE_FACTORY */