-
Notifications
You must be signed in to change notification settings - Fork 613
/
Copy pathtesting.h
69 lines (59 loc) · 2.07 KB
/
testing.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <folly/portability/GTest.h>
#include <thrift/lib/cpp2/debug_thrift_data_difference/debug.h>
namespace apache::thrift {
template <class T>
::testing::AssertionResult thriftEqualHelper(
const char* left, const char* right, const T& a, const T& b) {
::testing::AssertionResult result(false);
if (facebook::thrift::debug_thrift_data_difference(
a,
b,
facebook::thrift::make_debug_output_callback(result, left, right))) {
return ::testing::AssertionResult(true);
} else {
return result;
}
}
template <class Tag, class T>
::testing::AssertionResult thriftEqualHelperTag(
const char*,
const char* left,
const char* right,
const Tag&,
const T& a,
const T& b) {
::testing::AssertionResult result(false);
if (facebook::thrift::debug_thrift_data_difference<Tag>(
a,
b,
facebook::thrift::make_debug_output_callback(result, left, right))) {
return ::testing::AssertionResult(true);
} else {
return result;
}
}
} // namespace apache::thrift
#define EXPECT_THRIFT_EQ(a, b) \
EXPECT_PRED_FORMAT2(::apache::thrift::thriftEqualHelper, a, b)
#define ASSERT_THRIFT_EQ(a, b) \
ASSERT_PRED_FORMAT2(::apache::thrift::thriftEqualHelper, a, b)
#define EXPECT_THRIFT_TAG_EQ(tag, a, b) \
EXPECT_PRED_FORMAT3(::apache::thrift::thriftEqualHelperTag, tag, a, b)
#define ASSERT_THRIFT_TAG_EQ(tag, a, b) \
ASSERT_PRED_FORMAT3(::apache::thrift::thriftEqualHelperTag, tag, a, b)