Geza Lore | a661bc8 | 2016-05-20 16:33:12 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 The WebM project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #ifndef TEST_FUNCTION_EQUIVALENCE_TEST_H_ |
| 12 | #define TEST_FUNCTION_EQUIVALENCE_TEST_H_ |
| 13 | |
| 14 | #include "third_party/googletest/src/include/gtest/gtest.h" |
Geza Lore | a3f7ddc | 2016-07-12 15:26:36 +0100 | [diff] [blame] | 15 | #include "test/acm_random.h" |
Geza Lore | a661bc8 | 2016-05-20 16:33:12 +0100 | [diff] [blame] | 16 | #include "test/clear_system_state.h" |
| 17 | #include "test/util.h" |
| 18 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame^] | 19 | using libaom_test::ACMRandom; |
Geza Lore | a3f7ddc | 2016-07-12 15:26:36 +0100 | [diff] [blame] | 20 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame^] | 21 | namespace libaom_test { |
Geza Lore | a3f7ddc | 2016-07-12 15:26:36 +0100 | [diff] [blame] | 22 | // Base class for tests that compare 2 implementations of the same function |
| 23 | // for equivalence. The template parameter should be pointer to a function |
| 24 | // that is being tested. |
| 25 | // |
| 26 | // The test takes a 3-parameters encapsulating struct 'FuncParam', containing: |
| 27 | // - Pointer to reference function |
| 28 | // - Pointer to tested function |
| 29 | // - Integer bit depth (default to 0). |
| 30 | // |
| 31 | // These values are then accessible in the tests as member of params_: |
| 32 | // params_.ref_func, params_.tst_func, and params_.bit_depth. |
| 33 | // |
| 34 | |
Geza Lore | a661bc8 | 2016-05-20 16:33:12 +0100 | [diff] [blame] | 35 | template <typename T> |
Geza Lore | a3f7ddc | 2016-07-12 15:26:36 +0100 | [diff] [blame] | 36 | struct FuncParam { |
| 37 | FuncParam(T ref = NULL, T tst = NULL, int bit_depth = 0) |
| 38 | : ref_func(ref), tst_func(tst), bit_depth(bit_depth) {} |
| 39 | T ref_func; |
| 40 | T tst_func; |
| 41 | int bit_depth; |
| 42 | }; |
| 43 | |
| 44 | template <typename T> |
| 45 | class FunctionEquivalenceTest : public ::testing::TestWithParam<FuncParam<T> > { |
Geza Lore | a661bc8 | 2016-05-20 16:33:12 +0100 | [diff] [blame] | 46 | public: |
Geza Lore | a3f7ddc | 2016-07-12 15:26:36 +0100 | [diff] [blame] | 47 | FunctionEquivalenceTest() : rng_(ACMRandom::DeterministicSeed()) {} |
| 48 | |
Geza Lore | a661bc8 | 2016-05-20 16:33:12 +0100 | [diff] [blame] | 49 | virtual ~FunctionEquivalenceTest() {} |
| 50 | |
clang-format | 3a826f1 | 2016-08-11 17:46:05 -0700 | [diff] [blame] | 51 | virtual void SetUp() { params_ = this->GetParam(); } |
Geza Lore | a661bc8 | 2016-05-20 16:33:12 +0100 | [diff] [blame] | 52 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame^] | 53 | virtual void TearDown() { libaom_test::ClearSystemState(); } |
Geza Lore | a661bc8 | 2016-05-20 16:33:12 +0100 | [diff] [blame] | 54 | |
| 55 | protected: |
Geza Lore | a3f7ddc | 2016-07-12 15:26:36 +0100 | [diff] [blame] | 56 | ACMRandom rng_; |
| 57 | FuncParam<T> params_; |
Geza Lore | a661bc8 | 2016-05-20 16:33:12 +0100 | [diff] [blame] | 58 | }; |
| 59 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame^] | 60 | } // namespace libaom_test |
Geza Lore | a661bc8 | 2016-05-20 16:33:12 +0100 | [diff] [blame] | 61 | #endif // TEST_FUNCTION_EQUIVALENCE_TEST_H_ |