blob: dcb5829e9d3bd0149fbca0ce8443c4e31fd90d4c [file] [log] [blame]
Geza Lorea661bc82016-05-20 16:33:12 +01001/*
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 Lorea3f7ddc2016-07-12 15:26:36 +010015#include "test/acm_random.h"
Geza Lorea661bc82016-05-20 16:33:12 +010016#include "test/clear_system_state.h"
17#include "test/util.h"
18
Yaowu Xuc27fc142016-08-22 16:08:15 -070019using libaom_test::ACMRandom;
Geza Lorea3f7ddc2016-07-12 15:26:36 +010020
Yaowu Xuc27fc142016-08-22 16:08:15 -070021namespace libaom_test {
Geza Lorea3f7ddc2016-07-12 15:26:36 +010022// 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 Lorea661bc82016-05-20 16:33:12 +010035template <typename T>
Geza Lorea3f7ddc2016-07-12 15:26:36 +010036struct 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
44template <typename T>
45class FunctionEquivalenceTest : public ::testing::TestWithParam<FuncParam<T> > {
Geza Lorea661bc82016-05-20 16:33:12 +010046 public:
Geza Lorea3f7ddc2016-07-12 15:26:36 +010047 FunctionEquivalenceTest() : rng_(ACMRandom::DeterministicSeed()) {}
48
Geza Lorea661bc82016-05-20 16:33:12 +010049 virtual ~FunctionEquivalenceTest() {}
50
clang-format3a826f12016-08-11 17:46:05 -070051 virtual void SetUp() { params_ = this->GetParam(); }
Geza Lorea661bc82016-05-20 16:33:12 +010052
Yaowu Xuc27fc142016-08-22 16:08:15 -070053 virtual void TearDown() { libaom_test::ClearSystemState(); }
Geza Lorea661bc82016-05-20 16:33:12 +010054
55 protected:
Geza Lorea3f7ddc2016-07-12 15:26:36 +010056 ACMRandom rng_;
57 FuncParam<T> params_;
Geza Lorea661bc82016-05-20 16:33:12 +010058};
59
Yaowu Xuc27fc142016-08-22 16:08:15 -070060} // namespace libaom_test
Geza Lorea661bc82016-05-20 16:33:12 +010061#endif // TEST_FUNCTION_EQUIVALENCE_TEST_H_