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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/logging.h"
#include "content/test/gpu/gpu_test_expectations_parser.h"
#include "testing/gtest/include/gtest/gtest.h"
class GPUTestExpectationsParserTest : public testing::Test {
public:
GPUTestExpectationsParserTest() { }
virtual ~GPUTestExpectationsParserTest() { }
const GPUTestBotConfig& bot_config() const {
return bot_config_;
}
protected:
void SetUp() {
bot_config_.set_os(GPUTestConfig::kOsWin7);
bot_config_.set_build_type(GPUTestConfig::kBuildTypeRelease);
bot_config_.AddGPUVendor(0x10de);
bot_config_.set_gpu_device_id(0x0640);
ASSERT_TRUE(bot_config_.IsValid());
}
void TearDown() { }
private:
GPUTestBotConfig bot_config_;
};
TEST_F(GPUTestExpectationsParserTest, CommentOnly) {
const std::string text =
" \n"
"// This is just some comment\n"
"";
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(text));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
EXPECT_EQ(GPUTestExpectationsParser::kGpuTestPass,
parser.GetTestExpectation("some_test", bot_config()));
}
TEST_F(GPUTestExpectationsParserTest, ValidFullEntry) {
const std::string text =
"BUG12345 WIN7 RELEASE NVIDIA 0x0640 : MyTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(text));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
EXPECT_EQ(GPUTestExpectationsParser::kGpuTestFail,
parser.GetTestExpectation("MyTest", bot_config()));
}
TEST_F(GPUTestExpectationsParserTest, ValidPartialEntry) {
const std::string text =
"BUG12345 WIN NVIDIA : MyTest = TIMEOUT";
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(text));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
EXPECT_EQ(GPUTestExpectationsParser::kGpuTestTimeout,
parser.GetTestExpectation("MyTest", bot_config()));
}
TEST_F(GPUTestExpectationsParserTest, ValidUnrelatedOsEntry) {
const std::string text =
"BUG12345 LEOPARD : MyTest = TIMEOUT";
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(text));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
EXPECT_EQ(GPUTestExpectationsParser::kGpuTestPass,
parser.GetTestExpectation("MyTest", bot_config()));
}
TEST_F(GPUTestExpectationsParserTest, ValidUnrelatedTestEntry) {
const std::string text =
"BUG12345 WIN7 RELEASE NVIDIA 0x0640 : AnotherTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(text));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
EXPECT_EQ(GPUTestExpectationsParser::kGpuTestPass,
parser.GetTestExpectation("MyTest", bot_config()));
}
TEST_F(GPUTestExpectationsParserTest, AllModifiers) {
const std::string text =
"BUG12345 XP VISTA WIN7 LEOPARD SNOWLEOPARD LION LINUX CHROMEOS "
"NVIDIA INTEL AMD RELEASE DEBUG : MyTest = PASS FAIL FLAKY TIMEOUT";
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(text));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
EXPECT_EQ(GPUTestExpectationsParser::kGpuTestPass |
GPUTestExpectationsParser::kGpuTestFail |
GPUTestExpectationsParser::kGpuTestFlaky |
GPUTestExpectationsParser::kGpuTestTimeout,
parser.GetTestExpectation("MyTest", bot_config()));
}
TEST_F(GPUTestExpectationsParserTest, DuplicateModifiers) {
const std::string text =
"BUG12345 WIN7 WIN7 RELEASE NVIDIA 0x0640 : MyTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_FALSE(parser.LoadTestExpectations(text));
EXPECT_NE(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, AllModifiersLowerCase) {
const std::string text =
"BUG12345 xp vista win7 leopard snowleopard lion linux chromeos "
"nvidia intel amd release debug : MyTest = pass fail flaky timeout";
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(text));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
EXPECT_EQ(GPUTestExpectationsParser::kGpuTestPass |
GPUTestExpectationsParser::kGpuTestFail |
GPUTestExpectationsParser::kGpuTestFlaky |
GPUTestExpectationsParser::kGpuTestTimeout,
parser.GetTestExpectation("MyTest", bot_config()));
}
TEST_F(GPUTestExpectationsParserTest, MissingColon) {
const std::string text =
"BUG12345 XP MyTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_FALSE(parser.LoadTestExpectations(text));
EXPECT_NE(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, MissingEqual) {
const std::string text =
"BUG12345 XP : MyTest FAIL";
GPUTestExpectationsParser parser;
EXPECT_FALSE(parser.LoadTestExpectations(text));
EXPECT_NE(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, IllegalModifier) {
const std::string text =
"BUG12345 XP XXX : MyTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_FALSE(parser.LoadTestExpectations(text));
EXPECT_NE(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, OsConflicts) {
const std::string text =
"BUG12345 XP WIN : MyTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_FALSE(parser.LoadTestExpectations(text));
EXPECT_NE(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, InvalidModifierCombination) {
const std::string text =
"BUG12345 XP NVIDIA INTEL 0x0640 : MyTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_FALSE(parser.LoadTestExpectations(text));
EXPECT_NE(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, BadGpuDeviceID) {
const std::string text =
"BUG12345 XP NVIDIA 0xU07X : MyTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_FALSE(parser.LoadTestExpectations(text));
EXPECT_NE(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, MoreThanOneGpuDeviceID) {
const std::string text =
"BUG12345 XP NVIDIA 0x0640 0x0641 : MyTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_FALSE(parser.LoadTestExpectations(text));
EXPECT_NE(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, MultipleEntriesConflicts) {
const std::string text =
"BUG12345 WIN7 RELEASE NVIDIA 0x0640 : MyTest = FAIL\n"
"BUG12345 WIN : MyTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_FALSE(parser.LoadTestExpectations(text));
EXPECT_NE(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, MultipleTests) {
const std::string text =
"BUG12345 WIN7 RELEASE NVIDIA 0x0640 : MyTest = FAIL\n"
"BUG12345 WIN : AnotherTest = FAIL";
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(text));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
}
TEST_F(GPUTestExpectationsParserTest, ValidMultipleEntries) {
const std::string text =
"BUG12345 WIN7 RELEASE NVIDIA 0x0640 : MyTest = FAIL\n"
"BUG12345 LINUX : MyTest = TIMEOUT";
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(text));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
EXPECT_EQ(GPUTestExpectationsParser::kGpuTestFail,
parser.GetTestExpectation("MyTest", bot_config()));
}
TEST_F(GPUTestExpectationsParserTest, WebGLTestExpectationsValidation) {
GPUTestExpectationsParser parser;
EXPECT_TRUE(parser.LoadTestExpectations(
GPUTestExpectationsParser::kWebGLConformanceTest));
EXPECT_EQ(0u, parser.GetErrorMessages().size());
for (size_t i = 0; i < parser.GetErrorMessages().size(); ++i)
LOG(ERROR) << parser.GetErrorMessages()[i];
}
|