blob: d816da48954f4db83c9e3ed00a5569a2f176740c [file] [log] [blame]
kkinnunen3e980c32015-12-23 01:33:00 -08001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkCommonFlagsConfig.h"
brianosmanb6095ae2016-06-16 13:32:51 -07009#include "SkColorSpace.h"
kkinnunen3e980c32015-12-23 01:33:00 -080010#include "Test.h"
11#include <initializer_list>
12
bsalomon3724e572016-03-30 18:56:19 -070013using sk_gpu_test::GrContextFactory;
14
kkinnunen3e980c32015-12-23 01:33:00 -080015namespace {
16// The code
17// SkCommandLineFlags::StringArray FLAGS_config1 = make_string_array({"a", "b"})
18// can be used to construct string array that one gets with command line flags.
19// For example, the call above is equivalent of
20// DEFINE_string(config1, "a b", "");
21// in cases where the default command line flag value ("a b") is used.
22// make_string_array can be used to construct StringArray strings that have spaces in
23// them.
24SkCommandLineFlags::StringArray make_string_array(std::initializer_list<const char*> strings) {
25 SkTArray<SkString> array;
26 for (auto& s : strings) {
27 array.push_back(SkString(s));
28 }
29 return SkCommandLineFlags::StringArray(array);
30}
31}
32DEF_TEST(ParseConfigs_Gpu, reporter) {
33 // Parses a normal config and returns correct "tag".
34 // Gpu config defaults work.
35 SkCommandLineFlags::StringArray config1 = make_string_array({"gpu"});
36 SkCommandLineConfigArray configs;
37 ParseConfigs(config1, &configs);
38
39 REPORTER_ASSERT(reporter, configs.count() == 1);
40 REPORTER_ASSERT(reporter, configs[0]->getTag().equals("gpu"));
41 REPORTER_ASSERT(reporter, configs[0]->getViaParts().count() == 0);
42#if SK_SUPPORT_GPU
43 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu());
44 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getContextType()
bsalomon85b4b532016-04-05 11:06:27 -070045 == GrContextFactory::kNativeGL_ContextType);
kkinnunen3e980c32015-12-23 01:33:00 -080046 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseNVPR() == false);
csmartdaltone0d36292016-07-29 08:14:20 -070047 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseInstanced() == false);
kkinnunen3e980c32015-12-23 01:33:00 -080048 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseDIText() == false);
49 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getSamples() == 0);
brianosmand93c1202016-03-10 07:49:08 -080050 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getColorType() == kN32_SkColorType);
brianosmanb109b8c2016-06-16 13:03:24 -070051 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getColorSpace() == nullptr);
kkinnunen3e980c32015-12-23 01:33:00 -080052#endif
53}
54
55DEF_TEST(ParseConfigs_OutParam, reporter) {
56 // Clears the out parameter.
57 SkCommandLineFlags::StringArray config1 = make_string_array({"gpu"});
58 SkCommandLineConfigArray configs;
59 ParseConfigs(config1, &configs);
60 REPORTER_ASSERT(reporter, configs.count() == 1);
61 REPORTER_ASSERT(reporter, configs[0]->getTag().equals("gpu"));
bsalomonb8797bb2016-04-05 08:49:38 -070062
kkinnunen3e980c32015-12-23 01:33:00 -080063 SkCommandLineFlags::StringArray config2 = make_string_array({"8888"});
64 ParseConfigs(config2, &configs);
65 REPORTER_ASSERT(reporter, configs.count() == 1);
66 REPORTER_ASSERT(reporter, configs[0]->getTag().equals("8888"));
bsalomonb8797bb2016-04-05 08:49:38 -070067
68 SkCommandLineFlags::StringArray config3 = make_string_array({"gl"});
69 ParseConfigs(config3, &configs);
70 REPORTER_ASSERT(reporter, configs.count() == 1);
71 REPORTER_ASSERT(reporter, configs[0]->getTag().equals("gl"));
kkinnunen3e980c32015-12-23 01:33:00 -080072}
73
74DEF_TEST(ParseConfigs_DefaultConfigs, reporter) {
75 // Parses all default configs and returns correct "tag".
76
77 SkCommandLineFlags::StringArray config1 = make_string_array({
78 "565", "8888", "debug", "gpu", "gpudebug", "gpudft", "gpunull", "msaa16", "msaa4",
csmartdaltone0d36292016-07-29 08:14:20 -070079 "nonrendering", "null", "nullgpu", "nvpr16", "nvpr4", "nvprdit16", "nvprdit4", "pdf", "skp",
80 "svg", "xps", "angle", "angle-gl", "commandbuffer", "mesa", "hwui", "gpuf16", "gpusrgb",
81 "gl", "glnvpr4", "glnvprdit4", "glsrgb", "glmsaa4", "vk", "glinst", "glinst4", "glinstdit4",
brianosman4562f6e2016-09-19 14:42:04 -070082 "glinst16", "glinstdit16", "esinst", "esinst4", "esinstdit4", "glwide"
kkinnunen3e980c32015-12-23 01:33:00 -080083 });
84
85 SkCommandLineConfigArray configs;
86 ParseConfigs(config1, &configs);
87
brianosmanb109b8c2016-06-16 13:03:24 -070088 auto srgbColorSpace = SkColorSpace::NewNamed(SkColorSpace::kSRGB_Named);
89
kkinnunen3e980c32015-12-23 01:33:00 -080090 REPORTER_ASSERT(reporter, configs.count() == config1.count());
91 for (int i = 0; i < config1.count(); ++i) {
92 REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i]));
93 REPORTER_ASSERT(reporter, configs[i]->getViaParts().count() == 0);
94 }
95#if SK_SUPPORT_GPU
96 REPORTER_ASSERT(reporter, !configs[0]->asConfigGpu());
97 REPORTER_ASSERT(reporter, !configs[1]->asConfigGpu());
98 REPORTER_ASSERT(reporter, configs[2]->asConfigGpu());
99 REPORTER_ASSERT(reporter, configs[3]->asConfigGpu());
100 REPORTER_ASSERT(reporter, configs[4]->asConfigGpu());
101 REPORTER_ASSERT(reporter, configs[5]->asConfigGpu()->getUseDIText());
102 REPORTER_ASSERT(reporter, configs[6]->asConfigGpu());
103 REPORTER_ASSERT(reporter, configs[7]->asConfigGpu()->getSamples() == 16);
104 REPORTER_ASSERT(reporter, configs[8]->asConfigGpu()->getSamples() == 4);
105 REPORTER_ASSERT(reporter, !configs[9]->asConfigGpu());
106 REPORTER_ASSERT(reporter, !configs[10]->asConfigGpu());
107 REPORTER_ASSERT(reporter, configs[11]->asConfigGpu());
108 REPORTER_ASSERT(reporter, configs[12]->asConfigGpu()->getSamples() == 16);
109 REPORTER_ASSERT(reporter, configs[12]->asConfigGpu()->getUseNVPR());
cdaltonc28afdb2016-03-29 20:05:07 -0700110 REPORTER_ASSERT(reporter, !configs[12]->asConfigGpu()->getUseDIText());
kkinnunen3e980c32015-12-23 01:33:00 -0800111 REPORTER_ASSERT(reporter, configs[13]->asConfigGpu()->getSamples() == 4);
112 REPORTER_ASSERT(reporter, configs[13]->asConfigGpu()->getUseNVPR());
cdaltonc28afdb2016-03-29 20:05:07 -0700113 REPORTER_ASSERT(reporter, !configs[13]->asConfigGpu()->getUseDIText());
114 REPORTER_ASSERT(reporter, configs[14]->asConfigGpu()->getSamples() == 16);
115 REPORTER_ASSERT(reporter, configs[14]->asConfigGpu()->getUseNVPR());
116 REPORTER_ASSERT(reporter, configs[14]->asConfigGpu()->getUseDIText());
117 REPORTER_ASSERT(reporter, configs[15]->asConfigGpu()->getSamples() == 4);
118 REPORTER_ASSERT(reporter, configs[15]->asConfigGpu()->getUseNVPR());
119 REPORTER_ASSERT(reporter, configs[15]->asConfigGpu()->getUseDIText());
kkinnunen3e980c32015-12-23 01:33:00 -0800120 REPORTER_ASSERT(reporter, !configs[16]->asConfigGpu());
121 REPORTER_ASSERT(reporter, !configs[17]->asConfigGpu());
122 REPORTER_ASSERT(reporter, !configs[18]->asConfigGpu());
cdaltonc28afdb2016-03-29 20:05:07 -0700123 REPORTER_ASSERT(reporter, !configs[19]->asConfigGpu());
halcanary3c4521a2016-04-04 12:14:46 -0700124 REPORTER_ASSERT(reporter, !configs[24]->asConfigGpu());
brianosmanb109b8c2016-06-16 13:03:24 -0700125 REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorType() == kRGBA_F16_SkColorType);
brianosman0e22eb82016-08-30 07:07:59 -0700126 REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace());
msarett600c7372016-09-07 12:03:53 -0700127 REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()->gammaIsLinear());
brianosman971cd492016-09-08 10:10:11 -0700128 REPORTER_ASSERT(reporter, configs[25]->asConfigGpu()->getColorSpace()->toXYZD50() ==
129 srgbColorSpace->toXYZD50());
brianosmanb109b8c2016-06-16 13:03:24 -0700130 REPORTER_ASSERT(reporter, configs[26]->asConfigGpu()->getColorType() == kN32_SkColorType);
131 REPORTER_ASSERT(reporter, configs[26]->asConfigGpu()->getColorSpace() == srgbColorSpace.get());
brianosman4562f6e2016-09-19 14:42:04 -0700132 REPORTER_ASSERT(reporter, configs[41]->asConfigGpu()->getColorType() == kRGBA_F16_SkColorType);
133 REPORTER_ASSERT(reporter, configs[41]->asConfigGpu()->getColorSpace());
134 REPORTER_ASSERT(reporter, configs[41]->asConfigGpu()->getColorSpace()->gammaIsLinear());
135 REPORTER_ASSERT(reporter, configs[41]->asConfigGpu()->getColorSpace()->toXYZD50() !=
136 srgbColorSpace->toXYZD50());
csmartdaltone0d36292016-07-29 08:14:20 -0700137 REPORTER_ASSERT(reporter, configs[33]->asConfigGpu()->getContextType() ==
138 GrContextFactory::kGL_ContextType);
139 REPORTER_ASSERT(reporter, configs[33]->asConfigGpu()->getUseInstanced());
140 REPORTER_ASSERT(reporter, configs[34]->asConfigGpu()->getContextType() ==
141 GrContextFactory::kGL_ContextType);
142 REPORTER_ASSERT(reporter, configs[34]->asConfigGpu()->getUseInstanced());
143 REPORTER_ASSERT(reporter, configs[34]->asConfigGpu()->getSamples() == 4);
144 REPORTER_ASSERT(reporter, configs[35]->asConfigGpu()->getContextType() ==
145 GrContextFactory::kGL_ContextType);
146 REPORTER_ASSERT(reporter, configs[35]->asConfigGpu()->getUseInstanced());
147 REPORTER_ASSERT(reporter, configs[35]->asConfigGpu()->getUseDIText());
148 REPORTER_ASSERT(reporter, configs[35]->asConfigGpu()->getSamples() == 4);
149 REPORTER_ASSERT(reporter, configs[36]->asConfigGpu()->getContextType() ==
150 GrContextFactory::kGL_ContextType);
151 REPORTER_ASSERT(reporter, configs[36]->asConfigGpu()->getUseInstanced());
152 REPORTER_ASSERT(reporter, configs[36]->asConfigGpu()->getSamples() == 16);
153 REPORTER_ASSERT(reporter, configs[37]->asConfigGpu()->getContextType() ==
154 GrContextFactory::kGL_ContextType);
155 REPORTER_ASSERT(reporter, configs[37]->asConfigGpu()->getUseInstanced());
156 REPORTER_ASSERT(reporter, configs[37]->asConfigGpu()->getUseDIText());
157 REPORTER_ASSERT(reporter, configs[37]->asConfigGpu()->getSamples() == 16);
158 REPORTER_ASSERT(reporter, configs[38]->asConfigGpu()->getContextType() ==
159 GrContextFactory::kGLES_ContextType);
160 REPORTER_ASSERT(reporter, configs[38]->asConfigGpu()->getUseInstanced());
161 REPORTER_ASSERT(reporter, configs[39]->asConfigGpu()->getContextType() ==
162 GrContextFactory::kGLES_ContextType);
163 REPORTER_ASSERT(reporter, configs[39]->asConfigGpu()->getUseInstanced());
164 REPORTER_ASSERT(reporter, configs[39]->asConfigGpu()->getSamples() == 4);
165 REPORTER_ASSERT(reporter, configs[40]->asConfigGpu()->getContextType() ==
166 GrContextFactory::kGLES_ContextType);
167 REPORTER_ASSERT(reporter, configs[40]->asConfigGpu()->getUseInstanced());
168 REPORTER_ASSERT(reporter, configs[40]->asConfigGpu()->getUseDIText());
169 REPORTER_ASSERT(reporter, configs[40]->asConfigGpu()->getSamples() == 4);
brianosmanb109b8c2016-06-16 13:03:24 -0700170
kkinnunen3e980c32015-12-23 01:33:00 -0800171#if SK_ANGLE
172#ifdef SK_BUILD_FOR_WIN
halcanary3c4521a2016-04-04 12:14:46 -0700173 REPORTER_ASSERT(reporter, configs[20]->asConfigGpu());
174#else
175 REPORTER_ASSERT(reporter, !configs[20]->asConfigGpu());
176#endif
kkinnunen3e980c32015-12-23 01:33:00 -0800177 REPORTER_ASSERT(reporter, configs[21]->asConfigGpu());
178#else
halcanary3c4521a2016-04-04 12:14:46 -0700179 REPORTER_ASSERT(reporter, !configs[20]->asConfigGpu());
kkinnunen3e980c32015-12-23 01:33:00 -0800180 REPORTER_ASSERT(reporter, !configs[21]->asConfigGpu());
181#endif
cdaltonc28afdb2016-03-29 20:05:07 -0700182#if SK_COMMAND_BUFFER
halcanary3c4521a2016-04-04 12:14:46 -0700183 REPORTER_ASSERT(reporter, configs[22]->asConfigGpu());
184#else
185 REPORTER_ASSERT(reporter, !configs[22]->asConfigGpu());
186#endif
187#if SK_MESA
cdaltonc28afdb2016-03-29 20:05:07 -0700188 REPORTER_ASSERT(reporter, configs[23]->asConfigGpu());
189#else
190 REPORTER_ASSERT(reporter, !configs[23]->asConfigGpu());
191#endif
bsalomonb8797bb2016-04-05 08:49:38 -0700192 REPORTER_ASSERT(reporter, configs[27]->asConfigGpu());
193 REPORTER_ASSERT(reporter, configs[28]->asConfigGpu());
194 REPORTER_ASSERT(reporter, configs[28]->asConfigGpu()->getSamples() == 4);
195 REPORTER_ASSERT(reporter, configs[28]->asConfigGpu()->getUseNVPR());
196 REPORTER_ASSERT(reporter, configs[29]->asConfigGpu());
197 REPORTER_ASSERT(reporter, configs[29]->asConfigGpu()->getSamples() == 4);
198 REPORTER_ASSERT(reporter, configs[29]->asConfigGpu()->getUseNVPR());
199 REPORTER_ASSERT(reporter, configs[29]->asConfigGpu()->getUseDIText());
200 REPORTER_ASSERT(reporter, configs[30]->asConfigGpu());
201 REPORTER_ASSERT(reporter, configs[30]->asConfigGpu()->getColorType() == kN32_SkColorType);
brianosmanb109b8c2016-06-16 13:03:24 -0700202 REPORTER_ASSERT(reporter, configs[30]->asConfigGpu()->getColorSpace() == srgbColorSpace.get());
bsalomonb8797bb2016-04-05 08:49:38 -0700203 REPORTER_ASSERT(reporter, configs[31]->asConfigGpu());
204 REPORTER_ASSERT(reporter, configs[31]->asConfigGpu()->getSamples() == 4);
bsalomondc0fcd42016-04-11 14:21:33 -0700205#ifdef SK_VULKAN
206 REPORTER_ASSERT(reporter, configs[32]->asConfigGpu());
207#endif
kkinnunen3e980c32015-12-23 01:33:00 -0800208#endif
209}
210
211DEF_TEST(ParseConfigs_ExtendedGpuConfigsCorrect, reporter) {
212 SkCommandLineFlags::StringArray config1 = make_string_array({
kkinnunene3c2f802015-12-29 08:57:32 -0800213 "gpu(nvpr=true,dit=false)",
kkinnunen3e980c32015-12-23 01:33:00 -0800214 "gpu(api=angle)",
215 "gpu(api=angle-gl)",
216 "gpu(api=mesa,samples=77)",
217 "gpu(dit=true,api=commandbuffer)",
218 "gpu()",
bsalomonb8797bb2016-04-05 08:49:38 -0700219 "gpu(api=gles)",
bsalomondc0fcd42016-04-11 14:21:33 -0700220 "gpu(api=gl)",
221 "gpu(api=vulkan)",
kkinnunen3e980c32015-12-23 01:33:00 -0800222 });
223
224 SkCommandLineConfigArray configs;
225 ParseConfigs(config1, &configs);
226 REPORTER_ASSERT(reporter, configs.count() == config1.count());
227 for (int i = 0; i < config1.count(); ++i) {
228 REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i]));
229 }
230#if SK_SUPPORT_GPU
231 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getContextType() ==
bsalomon85b4b532016-04-05 11:06:27 -0700232 GrContextFactory::kNativeGL_ContextType);
kkinnunen3e980c32015-12-23 01:33:00 -0800233 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getUseNVPR());
kkinnunene3c2f802015-12-29 08:57:32 -0800234 REPORTER_ASSERT(reporter, !configs[0]->asConfigGpu()->getUseDIText());
kkinnunen3e980c32015-12-23 01:33:00 -0800235 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu()->getSamples() == 0);
236#if SK_ANGLE
237#ifdef SK_BUILD_FOR_WIN
238 REPORTER_ASSERT(reporter, configs[1]->asConfigGpu()->getContextType() ==
bsalomon85b4b532016-04-05 11:06:27 -0700239 GrContextFactory::kANGLE_ContextType);
kkinnunen3e980c32015-12-23 01:33:00 -0800240#else
241 REPORTER_ASSERT(reporter, !configs[1]->asConfigGpu());
242#endif
243 REPORTER_ASSERT(reporter, configs[2]->asConfigGpu()->getContextType() ==
bsalomon85b4b532016-04-05 11:06:27 -0700244 GrContextFactory::kANGLE_GL_ContextType);
kkinnunen3e980c32015-12-23 01:33:00 -0800245#else
246 REPORTER_ASSERT(reporter, !configs[1]->asConfigGpu());
247 REPORTER_ASSERT(reporter, !configs[2]->asConfigGpu());
248#endif
249#if SK_MESA
250 REPORTER_ASSERT(reporter, configs[3]->asConfigGpu()->getContextType() ==
bsalomon85b4b532016-04-05 11:06:27 -0700251 GrContextFactory::kMESA_ContextType);
kkinnunen3e980c32015-12-23 01:33:00 -0800252#else
253 REPORTER_ASSERT(reporter, !configs[3]->asConfigGpu());
254#endif
255#if SK_COMMAND_BUFFER
256 REPORTER_ASSERT(reporter, configs[4]->asConfigGpu()->getContextType() ==
bsalomon85b4b532016-04-05 11:06:27 -0700257 GrContextFactory::kCommandBuffer_ContextType);
kkinnunen3e980c32015-12-23 01:33:00 -0800258
259#else
260 REPORTER_ASSERT(reporter, !configs[4]->asConfigGpu());
261#endif
262 REPORTER_ASSERT(reporter, configs[5]->asConfigGpu()->getContextType() ==
bsalomon85b4b532016-04-05 11:06:27 -0700263 GrContextFactory::kNativeGL_ContextType);
kkinnunen3e980c32015-12-23 01:33:00 -0800264 REPORTER_ASSERT(reporter, !configs[5]->asConfigGpu()->getUseNVPR());
265 REPORTER_ASSERT(reporter, !configs[5]->asConfigGpu()->getUseDIText());
266 REPORTER_ASSERT(reporter, configs[5]->asConfigGpu()->getSamples() == 0);
267 REPORTER_ASSERT(reporter, configs[6]->asConfigGpu()->getContextType() ==
bsalomon85b4b532016-04-05 11:06:27 -0700268 GrContextFactory::kGLES_ContextType);
kkinnunen3e980c32015-12-23 01:33:00 -0800269 REPORTER_ASSERT(reporter, !configs[6]->asConfigGpu()->getUseNVPR());
270 REPORTER_ASSERT(reporter, !configs[6]->asConfigGpu()->getUseDIText());
271 REPORTER_ASSERT(reporter, configs[6]->asConfigGpu()->getSamples() == 0);
bsalomonb8797bb2016-04-05 08:49:38 -0700272 REPORTER_ASSERT(reporter, configs[7]->asConfigGpu()->getContextType() ==
bsalomon85b4b532016-04-05 11:06:27 -0700273 GrContextFactory::kGL_ContextType);
bsalomonb8797bb2016-04-05 08:49:38 -0700274 REPORTER_ASSERT(reporter, !configs[7]->asConfigGpu()->getUseNVPR());
275 REPORTER_ASSERT(reporter, !configs[7]->asConfigGpu()->getUseDIText());
276 REPORTER_ASSERT(reporter, configs[7]->asConfigGpu()->getSamples() == 0);
bsalomondc0fcd42016-04-11 14:21:33 -0700277#ifdef SK_VULKAN
278 REPORTER_ASSERT(reporter, configs[8]->asConfigGpu()->getContextType() ==
279 GrContextFactory::kVulkan_ContextType);
280 REPORTER_ASSERT(reporter, !configs[7]->asConfigGpu()->getUseNVPR());
281 REPORTER_ASSERT(reporter, !configs[7]->asConfigGpu()->getUseDIText());
282 REPORTER_ASSERT(reporter, configs[7]->asConfigGpu()->getSamples() == 0);
283#endif
kkinnunen3e980c32015-12-23 01:33:00 -0800284#endif
285}
286
287DEF_TEST(ParseConfigs_ExtendedGpuConfigsIncorrect, reporter) {
288 SkCommandLineFlags::StringArray config1 = make_string_array({
289 "gpu(nvpr=1)", // Number as bool.
290 "gpu(api=gl,)", // Trailing in comma.
291 "gpu(api=angle-glu)", // Unknown api.
292 "gpu(api=,samples=0)", // Empty api.
293 "gpu(samples=true)", // Value true as a number.
294 "gpu(samples=0,samples=0)", // Duplicate option key.
295 "gpu(,samples=0)", // Leading comma.
296 "gpu(samples=54", // Missing closing parenthesis.
297 ",,",
298 "gpu(", // Missing parenthesis.
299 "samples=54" // No backend.
300 "gpu(nvpr=true )", // Space.
301 });
302
303 SkCommandLineConfigArray configs;
304 ParseConfigs(config1, &configs);
305 REPORTER_ASSERT(reporter, configs.count() == config1.count());
306 for (int i = 0; i < config1.count(); ++i) {
307 REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i]));
308 REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(config1[i]));
309#if SK_SUPPORT_GPU
310 REPORTER_ASSERT(reporter, !configs[i]->asConfigGpu());
311#endif
312 }
313}
314
kkinnunen3e980c32015-12-23 01:33:00 -0800315DEF_TEST(ParseConfigs_ExtendedGpuConfigsSurprises, reporter) {
316 // These just list explicitly some properties of the system.
317 SkCommandLineFlags::StringArray config1 = make_string_array({
318 // Options are not canonized -> two same configs have a different tag.
319 "gpu(nvpr=true,dit=true)", "gpu(dit=true,nvpr=true)",
bsalomon85b4b532016-04-05 11:06:27 -0700320 "gpu(api=debug)", "gpu(api=gl)", "gpu(api=gles)", ""
321 "gpu", "gpu()", "gpu(samples=0)", "gpu(api=gles,samples=0)"
kkinnunen3e980c32015-12-23 01:33:00 -0800322 });
323 SkCommandLineConfigArray configs;
324 ParseConfigs(config1, &configs);
325 REPORTER_ASSERT(reporter, configs.count() == config1.count());
326 for (int i = 0; i < config1.count(); ++i) {
327 REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i]));
328#if SK_SUPPORT_GPU
329 REPORTER_ASSERT(reporter, configs[i]->getBackend().equals("gpu"));
330 REPORTER_ASSERT(reporter, configs[i]->asConfigGpu());
331#else
332 REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(config1[i]));
333#endif
334 }
335}
336DEF_TEST(ParseConfigs_ViaParsing, reporter) {
337 SkCommandLineFlags::StringArray config1 = make_string_array({
338 "a-b-c-8888",
339 "zz-qq-gpu",
340 "a-angle-gl"
341 });
342
343 SkCommandLineConfigArray configs;
344 ParseConfigs(config1, &configs);
345 const struct {
346 const char* backend;
347 const char* vias[3];
348 } expectedConfigs[] = {
349 {"8888", {"a", "b", "c"}},
350 {"gpu", {"zz", "qq", nullptr}},
brianosman577e0252016-07-27 09:21:51 -0700351#if SK_ANGLE
352 { "gpu",{ "a", nullptr, nullptr } } // With SK_ANGLE, angle-gl becomes gpu(api=angle-gl)
353#else
354 { "angle-gl",{ "a", nullptr, nullptr } } // The angle-gl tag is only tag that contains
355 // hyphen.
356#endif
kkinnunen3e980c32015-12-23 01:33:00 -0800357 };
358 for (int i = 0; i < config1.count(); ++i) {
359 REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i]));
360 REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(expectedConfigs[i].backend));
361 for (int j = 0; j < static_cast<int>(SK_ARRAY_COUNT(expectedConfigs[i].vias)); ++j) {
362 if (!expectedConfigs[i].vias[j]) {
363 REPORTER_ASSERT(reporter, configs[i]->getViaParts().count() == j);
364 break;
365 }
366 REPORTER_ASSERT(reporter,
367 configs[i]->getViaParts()[j].equals(expectedConfigs[i].vias[j]));
368 }
369 }
370}
371
372DEF_TEST(ParseConfigs_ViaParsingExtendedForm, reporter) {
373 SkCommandLineFlags::StringArray config1 = make_string_array({
374 "zz-qq-gpu(api=gles)",
375 "a-gpu(samples=1",
376 "abc-def-angle-gl(samples=1)",
377 });
378
379 SkCommandLineConfigArray configs;
380 ParseConfigs(config1, &configs);
381 const struct {
382 const char* backend;
383 const char* vias[3];
384 } expectedConfigs[] = {
385#if SK_SUPPORT_GPU
386 {"gpu", {"zz", "qq", nullptr}},
387#else
388 {"gpu(api=gles)", {"zz", "qq", nullptr}},
389#endif
390 {"gpu(samples=1", {"a", nullptr, nullptr}}, // This is not extended form, but via still
391 // works as expected.
392 {"gl(samples=1)", {"abc", "def", "angle"}} // This is not extended form. Also
393 // angle-gl is not a "backend" in this case.
394 };
395 for (int i = 0; i < config1.count(); ++i) {
396 REPORTER_ASSERT(reporter, configs[i]->getTag().equals(config1[i]));
397 REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(expectedConfigs[i].backend));
398 for (int j = 0; j < static_cast<int>(SK_ARRAY_COUNT(expectedConfigs[i].vias)); ++j) {
399 if (!expectedConfigs[i].vias[j]) {
400 REPORTER_ASSERT(reporter, configs[i]->getViaParts().count() ==
401 static_cast<int>(j));
402 break;
403 }
404 REPORTER_ASSERT(reporter,
405 configs[i]->getViaParts()[j].equals(expectedConfigs[i].vias[j]));
406 }
407 }
408#if SK_SUPPORT_GPU
409 REPORTER_ASSERT(reporter, configs[0]->asConfigGpu());
410 REPORTER_ASSERT(reporter, !configs[1]->asConfigGpu());
411 REPORTER_ASSERT(reporter, !configs[2]->asConfigGpu());
412#endif
413}