OLD | NEW |
1 library googleapis.doubleclicksearch.v2.test; | 1 library googleapis.doubleclicksearch.v2.test; |
2 | 2 |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
5 import "dart:async" as async; | 5 import "dart:async" as async; |
6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
7 | 7 |
8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
(...skipping 27 matching lines...) Expand all Loading... |
38 unittest.expect(o.advertiserId, unittest.equals('foo')); | 38 unittest.expect(o.advertiserId, unittest.equals('foo')); |
39 unittest.expect(o.agencyId, unittest.equals('foo')); | 39 unittest.expect(o.agencyId, unittest.equals('foo')); |
40 unittest.expect(o.availabilityTimestamp, unittest.equals('foo')); | 40 unittest.expect(o.availabilityTimestamp, unittest.equals('foo')); |
41 unittest.expect(o.segmentationId, unittest.equals('foo')); | 41 unittest.expect(o.segmentationId, unittest.equals('foo')); |
42 unittest.expect(o.segmentationName, unittest.equals('foo')); | 42 unittest.expect(o.segmentationName, unittest.equals('foo')); |
43 unittest.expect(o.segmentationType, unittest.equals('foo')); | 43 unittest.expect(o.segmentationType, unittest.equals('foo')); |
44 } | 44 } |
45 buildCounterAvailability--; | 45 buildCounterAvailability--; |
46 } | 46 } |
47 | 47 |
48 buildUnnamed710() { | 48 buildUnnamed774() { |
49 var o = new core.List<api.CustomDimension>(); | 49 var o = new core.List<api.CustomDimension>(); |
50 o.add(buildCustomDimension()); | 50 o.add(buildCustomDimension()); |
51 o.add(buildCustomDimension()); | 51 o.add(buildCustomDimension()); |
52 return o; | 52 return o; |
53 } | 53 } |
54 | 54 |
55 checkUnnamed710(core.List<api.CustomDimension> o) { | 55 checkUnnamed774(core.List<api.CustomDimension> o) { |
56 unittest.expect(o, unittest.hasLength(2)); | 56 unittest.expect(o, unittest.hasLength(2)); |
57 checkCustomDimension(o[0]); | 57 checkCustomDimension(o[0]); |
58 checkCustomDimension(o[1]); | 58 checkCustomDimension(o[1]); |
59 } | 59 } |
60 | 60 |
61 buildUnnamed711() { | 61 buildUnnamed775() { |
62 var o = new core.List<api.CustomMetric>(); | 62 var o = new core.List<api.CustomMetric>(); |
63 o.add(buildCustomMetric()); | 63 o.add(buildCustomMetric()); |
64 o.add(buildCustomMetric()); | 64 o.add(buildCustomMetric()); |
65 return o; | 65 return o; |
66 } | 66 } |
67 | 67 |
68 checkUnnamed711(core.List<api.CustomMetric> o) { | 68 checkUnnamed775(core.List<api.CustomMetric> o) { |
69 unittest.expect(o, unittest.hasLength(2)); | 69 unittest.expect(o, unittest.hasLength(2)); |
70 checkCustomMetric(o[0]); | 70 checkCustomMetric(o[0]); |
71 checkCustomMetric(o[1]); | 71 checkCustomMetric(o[1]); |
72 } | 72 } |
73 | 73 |
74 core.int buildCounterConversion = 0; | 74 core.int buildCounterConversion = 0; |
75 buildConversion() { | 75 buildConversion() { |
76 var o = new api.Conversion(); | 76 var o = new api.Conversion(); |
77 buildCounterConversion++; | 77 buildCounterConversion++; |
78 if (buildCounterConversion < 3) { | 78 if (buildCounterConversion < 3) { |
79 o.adGroupId = "foo"; | 79 o.adGroupId = "foo"; |
80 o.adId = "foo"; | 80 o.adId = "foo"; |
81 o.advertiserId = "foo"; | 81 o.advertiserId = "foo"; |
82 o.agencyId = "foo"; | 82 o.agencyId = "foo"; |
83 o.attributionModel = "foo"; | 83 o.attributionModel = "foo"; |
84 o.campaignId = "foo"; | 84 o.campaignId = "foo"; |
85 o.clickId = "foo"; | 85 o.clickId = "foo"; |
86 o.conversionId = "foo"; | 86 o.conversionId = "foo"; |
87 o.conversionModifiedTimestamp = "foo"; | 87 o.conversionModifiedTimestamp = "foo"; |
88 o.conversionTimestamp = "foo"; | 88 o.conversionTimestamp = "foo"; |
89 o.countMillis = "foo"; | 89 o.countMillis = "foo"; |
90 o.criterionId = "foo"; | 90 o.criterionId = "foo"; |
91 o.currencyCode = "foo"; | 91 o.currencyCode = "foo"; |
92 o.customDimension = buildUnnamed710(); | 92 o.customDimension = buildUnnamed774(); |
93 o.customMetric = buildUnnamed711(); | 93 o.customMetric = buildUnnamed775(); |
94 o.dsConversionId = "foo"; | 94 o.dsConversionId = "foo"; |
95 o.engineAccountId = "foo"; | 95 o.engineAccountId = "foo"; |
96 o.floodlightOrderId = "foo"; | 96 o.floodlightOrderId = "foo"; |
97 o.quantityMillis = "foo"; | 97 o.quantityMillis = "foo"; |
98 o.revenueMicros = "foo"; | 98 o.revenueMicros = "foo"; |
99 o.segmentationId = "foo"; | 99 o.segmentationId = "foo"; |
100 o.segmentationName = "foo"; | 100 o.segmentationName = "foo"; |
101 o.segmentationType = "foo"; | 101 o.segmentationType = "foo"; |
102 o.state = "foo"; | 102 o.state = "foo"; |
103 o.type = "foo"; | 103 o.type = "foo"; |
(...skipping 11 matching lines...) Expand all Loading... |
115 unittest.expect(o.agencyId, unittest.equals('foo')); | 115 unittest.expect(o.agencyId, unittest.equals('foo')); |
116 unittest.expect(o.attributionModel, unittest.equals('foo')); | 116 unittest.expect(o.attributionModel, unittest.equals('foo')); |
117 unittest.expect(o.campaignId, unittest.equals('foo')); | 117 unittest.expect(o.campaignId, unittest.equals('foo')); |
118 unittest.expect(o.clickId, unittest.equals('foo')); | 118 unittest.expect(o.clickId, unittest.equals('foo')); |
119 unittest.expect(o.conversionId, unittest.equals('foo')); | 119 unittest.expect(o.conversionId, unittest.equals('foo')); |
120 unittest.expect(o.conversionModifiedTimestamp, unittest.equals('foo')); | 120 unittest.expect(o.conversionModifiedTimestamp, unittest.equals('foo')); |
121 unittest.expect(o.conversionTimestamp, unittest.equals('foo')); | 121 unittest.expect(o.conversionTimestamp, unittest.equals('foo')); |
122 unittest.expect(o.countMillis, unittest.equals('foo')); | 122 unittest.expect(o.countMillis, unittest.equals('foo')); |
123 unittest.expect(o.criterionId, unittest.equals('foo')); | 123 unittest.expect(o.criterionId, unittest.equals('foo')); |
124 unittest.expect(o.currencyCode, unittest.equals('foo')); | 124 unittest.expect(o.currencyCode, unittest.equals('foo')); |
125 checkUnnamed710(o.customDimension); | 125 checkUnnamed774(o.customDimension); |
126 checkUnnamed711(o.customMetric); | 126 checkUnnamed775(o.customMetric); |
127 unittest.expect(o.dsConversionId, unittest.equals('foo')); | 127 unittest.expect(o.dsConversionId, unittest.equals('foo')); |
128 unittest.expect(o.engineAccountId, unittest.equals('foo')); | 128 unittest.expect(o.engineAccountId, unittest.equals('foo')); |
129 unittest.expect(o.floodlightOrderId, unittest.equals('foo')); | 129 unittest.expect(o.floodlightOrderId, unittest.equals('foo')); |
130 unittest.expect(o.quantityMillis, unittest.equals('foo')); | 130 unittest.expect(o.quantityMillis, unittest.equals('foo')); |
131 unittest.expect(o.revenueMicros, unittest.equals('foo')); | 131 unittest.expect(o.revenueMicros, unittest.equals('foo')); |
132 unittest.expect(o.segmentationId, unittest.equals('foo')); | 132 unittest.expect(o.segmentationId, unittest.equals('foo')); |
133 unittest.expect(o.segmentationName, unittest.equals('foo')); | 133 unittest.expect(o.segmentationName, unittest.equals('foo')); |
134 unittest.expect(o.segmentationType, unittest.equals('foo')); | 134 unittest.expect(o.segmentationType, unittest.equals('foo')); |
135 unittest.expect(o.state, unittest.equals('foo')); | 135 unittest.expect(o.state, unittest.equals('foo')); |
136 unittest.expect(o.type, unittest.equals('foo')); | 136 unittest.expect(o.type, unittest.equals('foo')); |
137 } | 137 } |
138 buildCounterConversion--; | 138 buildCounterConversion--; |
139 } | 139 } |
140 | 140 |
141 buildUnnamed712() { | 141 buildUnnamed776() { |
142 var o = new core.List<api.Conversion>(); | 142 var o = new core.List<api.Conversion>(); |
143 o.add(buildConversion()); | 143 o.add(buildConversion()); |
144 o.add(buildConversion()); | 144 o.add(buildConversion()); |
145 return o; | 145 return o; |
146 } | 146 } |
147 | 147 |
148 checkUnnamed712(core.List<api.Conversion> o) { | 148 checkUnnamed776(core.List<api.Conversion> o) { |
149 unittest.expect(o, unittest.hasLength(2)); | 149 unittest.expect(o, unittest.hasLength(2)); |
150 checkConversion(o[0]); | 150 checkConversion(o[0]); |
151 checkConversion(o[1]); | 151 checkConversion(o[1]); |
152 } | 152 } |
153 | 153 |
154 core.int buildCounterConversionList = 0; | 154 core.int buildCounterConversionList = 0; |
155 buildConversionList() { | 155 buildConversionList() { |
156 var o = new api.ConversionList(); | 156 var o = new api.ConversionList(); |
157 buildCounterConversionList++; | 157 buildCounterConversionList++; |
158 if (buildCounterConversionList < 3) { | 158 if (buildCounterConversionList < 3) { |
159 o.conversion = buildUnnamed712(); | 159 o.conversion = buildUnnamed776(); |
160 o.kind = "foo"; | 160 o.kind = "foo"; |
161 } | 161 } |
162 buildCounterConversionList--; | 162 buildCounterConversionList--; |
163 return o; | 163 return o; |
164 } | 164 } |
165 | 165 |
166 checkConversionList(api.ConversionList o) { | 166 checkConversionList(api.ConversionList o) { |
167 buildCounterConversionList++; | 167 buildCounterConversionList++; |
168 if (buildCounterConversionList < 3) { | 168 if (buildCounterConversionList < 3) { |
169 checkUnnamed712(o.conversion); | 169 checkUnnamed776(o.conversion); |
170 unittest.expect(o.kind, unittest.equals('foo')); | 170 unittest.expect(o.kind, unittest.equals('foo')); |
171 } | 171 } |
172 buildCounterConversionList--; | 172 buildCounterConversionList--; |
173 } | 173 } |
174 | 174 |
175 core.int buildCounterCustomDimension = 0; | 175 core.int buildCounterCustomDimension = 0; |
176 buildCustomDimension() { | 176 buildCustomDimension() { |
177 var o = new api.CustomDimension(); | 177 var o = new api.CustomDimension(); |
178 buildCounterCustomDimension++; | 178 buildCounterCustomDimension++; |
179 if (buildCounterCustomDimension < 3) { | 179 if (buildCounterCustomDimension < 3) { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 | 228 |
229 checkReportFiles(api.ReportFiles o) { | 229 checkReportFiles(api.ReportFiles o) { |
230 buildCounterReportFiles++; | 230 buildCounterReportFiles++; |
231 if (buildCounterReportFiles < 3) { | 231 if (buildCounterReportFiles < 3) { |
232 unittest.expect(o.byteCount, unittest.equals('foo')); | 232 unittest.expect(o.byteCount, unittest.equals('foo')); |
233 unittest.expect(o.url, unittest.equals('foo')); | 233 unittest.expect(o.url, unittest.equals('foo')); |
234 } | 234 } |
235 buildCounterReportFiles--; | 235 buildCounterReportFiles--; |
236 } | 236 } |
237 | 237 |
238 buildUnnamed713() { | 238 buildUnnamed777() { |
239 var o = new core.List<api.ReportFiles>(); | 239 var o = new core.List<api.ReportFiles>(); |
240 o.add(buildReportFiles()); | 240 o.add(buildReportFiles()); |
241 o.add(buildReportFiles()); | 241 o.add(buildReportFiles()); |
242 return o; | 242 return o; |
243 } | 243 } |
244 | 244 |
245 checkUnnamed713(core.List<api.ReportFiles> o) { | 245 checkUnnamed777(core.List<api.ReportFiles> o) { |
246 unittest.expect(o, unittest.hasLength(2)); | 246 unittest.expect(o, unittest.hasLength(2)); |
247 checkReportFiles(o[0]); | 247 checkReportFiles(o[0]); |
248 checkReportFiles(o[1]); | 248 checkReportFiles(o[1]); |
249 } | 249 } |
250 | 250 |
251 buildUnnamed714() { | 251 buildUnnamed778() { |
252 var o = new core.List<api.ReportRow>(); | 252 var o = new core.List<api.ReportRow>(); |
253 o.add(buildReportRow()); | 253 o.add(buildReportRow()); |
254 o.add(buildReportRow()); | 254 o.add(buildReportRow()); |
255 return o; | 255 return o; |
256 } | 256 } |
257 | 257 |
258 checkUnnamed714(core.List<api.ReportRow> o) { | 258 checkUnnamed778(core.List<api.ReportRow> o) { |
259 unittest.expect(o, unittest.hasLength(2)); | 259 unittest.expect(o, unittest.hasLength(2)); |
260 checkReportRow(o[0]); | 260 checkReportRow(o[0]); |
261 checkReportRow(o[1]); | 261 checkReportRow(o[1]); |
262 } | 262 } |
263 | 263 |
264 core.int buildCounterReport = 0; | 264 core.int buildCounterReport = 0; |
265 buildReport() { | 265 buildReport() { |
266 var o = new api.Report(); | 266 var o = new api.Report(); |
267 buildCounterReport++; | 267 buildCounterReport++; |
268 if (buildCounterReport < 3) { | 268 if (buildCounterReport < 3) { |
269 o.files = buildUnnamed713(); | 269 o.files = buildUnnamed777(); |
270 o.id = "foo"; | 270 o.id = "foo"; |
271 o.isReportReady = true; | 271 o.isReportReady = true; |
272 o.kind = "foo"; | 272 o.kind = "foo"; |
273 o.request = buildReportRequest(); | 273 o.request = buildReportRequest(); |
274 o.rowCount = 42; | 274 o.rowCount = 42; |
275 o.rows = buildUnnamed714(); | 275 o.rows = buildUnnamed778(); |
276 o.statisticsCurrencyCode = "foo"; | 276 o.statisticsCurrencyCode = "foo"; |
277 o.statisticsTimeZone = "foo"; | 277 o.statisticsTimeZone = "foo"; |
278 } | 278 } |
279 buildCounterReport--; | 279 buildCounterReport--; |
280 return o; | 280 return o; |
281 } | 281 } |
282 | 282 |
283 checkReport(api.Report o) { | 283 checkReport(api.Report o) { |
284 buildCounterReport++; | 284 buildCounterReport++; |
285 if (buildCounterReport < 3) { | 285 if (buildCounterReport < 3) { |
286 checkUnnamed713(o.files); | 286 checkUnnamed777(o.files); |
287 unittest.expect(o.id, unittest.equals('foo')); | 287 unittest.expect(o.id, unittest.equals('foo')); |
288 unittest.expect(o.isReportReady, unittest.isTrue); | 288 unittest.expect(o.isReportReady, unittest.isTrue); |
289 unittest.expect(o.kind, unittest.equals('foo')); | 289 unittest.expect(o.kind, unittest.equals('foo')); |
290 checkReportRequest(o.request); | 290 checkReportRequest(o.request); |
291 unittest.expect(o.rowCount, unittest.equals(42)); | 291 unittest.expect(o.rowCount, unittest.equals(42)); |
292 checkUnnamed714(o.rows); | 292 checkUnnamed778(o.rows); |
293 unittest.expect(o.statisticsCurrencyCode, unittest.equals('foo')); | 293 unittest.expect(o.statisticsCurrencyCode, unittest.equals('foo')); |
294 unittest.expect(o.statisticsTimeZone, unittest.equals('foo')); | 294 unittest.expect(o.statisticsTimeZone, unittest.equals('foo')); |
295 } | 295 } |
296 buildCounterReport--; | 296 buildCounterReport--; |
297 } | 297 } |
298 | 298 |
299 core.int buildCounterReportApiColumnSpec = 0; | 299 core.int buildCounterReportApiColumnSpec = 0; |
300 buildReportApiColumnSpec() { | 300 buildReportApiColumnSpec() { |
301 var o = new api.ReportApiColumnSpec(); | 301 var o = new api.ReportApiColumnSpec(); |
302 buildCounterReportApiColumnSpec++; | 302 buildCounterReportApiColumnSpec++; |
(...skipping 21 matching lines...) Expand all Loading... |
324 unittest.expect(o.endDate, unittest.equals('foo')); | 324 unittest.expect(o.endDate, unittest.equals('foo')); |
325 unittest.expect(o.groupByColumn, unittest.isTrue); | 325 unittest.expect(o.groupByColumn, unittest.isTrue); |
326 unittest.expect(o.headerText, unittest.equals('foo')); | 326 unittest.expect(o.headerText, unittest.equals('foo')); |
327 unittest.expect(o.platformSource, unittest.equals('foo')); | 327 unittest.expect(o.platformSource, unittest.equals('foo')); |
328 unittest.expect(o.savedColumnName, unittest.equals('foo')); | 328 unittest.expect(o.savedColumnName, unittest.equals('foo')); |
329 unittest.expect(o.startDate, unittest.equals('foo')); | 329 unittest.expect(o.startDate, unittest.equals('foo')); |
330 } | 330 } |
331 buildCounterReportApiColumnSpec--; | 331 buildCounterReportApiColumnSpec--; |
332 } | 332 } |
333 | 333 |
334 buildUnnamed715() { | 334 buildUnnamed779() { |
335 var o = new core.List<api.ReportApiColumnSpec>(); | 335 var o = new core.List<api.ReportApiColumnSpec>(); |
336 o.add(buildReportApiColumnSpec()); | 336 o.add(buildReportApiColumnSpec()); |
337 o.add(buildReportApiColumnSpec()); | 337 o.add(buildReportApiColumnSpec()); |
338 return o; | 338 return o; |
339 } | 339 } |
340 | 340 |
341 checkUnnamed715(core.List<api.ReportApiColumnSpec> o) { | 341 checkUnnamed779(core.List<api.ReportApiColumnSpec> o) { |
342 unittest.expect(o, unittest.hasLength(2)); | 342 unittest.expect(o, unittest.hasLength(2)); |
343 checkReportApiColumnSpec(o[0]); | 343 checkReportApiColumnSpec(o[0]); |
344 checkReportApiColumnSpec(o[1]); | 344 checkReportApiColumnSpec(o[1]); |
345 } | 345 } |
346 | 346 |
347 buildUnnamed716() { | 347 buildUnnamed780() { |
348 var o = new core.List<core.Object>(); | 348 var o = new core.List<core.Object>(); |
349 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 349 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
350 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 350 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
351 return o; | 351 return o; |
352 } | 352 } |
353 | 353 |
354 checkUnnamed716(core.List<core.Object> o) { | 354 checkUnnamed780(core.List<core.Object> o) { |
355 unittest.expect(o, unittest.hasLength(2)); | 355 unittest.expect(o, unittest.hasLength(2)); |
356 var casted1 = (o[0]) as core.Map; unittest.expect(casted1, unittest.hasLength(
3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"], u
nittest.equals('foo')); | 356 var casted1 = (o[0]) as core.Map; unittest.expect(casted1, unittest.hasLength(
3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"], u
nittest.equals('foo')); |
357 var casted2 = (o[1]) as core.Map; unittest.expect(casted2, unittest.hasLength(
3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"], u
nittest.equals('foo')); | 357 var casted2 = (o[1]) as core.Map; unittest.expect(casted2, unittest.hasLength(
3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"], u
nittest.equals('foo')); |
358 } | 358 } |
359 | 359 |
360 core.int buildCounterReportRequestFilters = 0; | 360 core.int buildCounterReportRequestFilters = 0; |
361 buildReportRequestFilters() { | 361 buildReportRequestFilters() { |
362 var o = new api.ReportRequestFilters(); | 362 var o = new api.ReportRequestFilters(); |
363 buildCounterReportRequestFilters++; | 363 buildCounterReportRequestFilters++; |
364 if (buildCounterReportRequestFilters < 3) { | 364 if (buildCounterReportRequestFilters < 3) { |
365 o.column = buildReportApiColumnSpec(); | 365 o.column = buildReportApiColumnSpec(); |
366 o.operator = "foo"; | 366 o.operator = "foo"; |
367 o.values = buildUnnamed716(); | 367 o.values = buildUnnamed780(); |
368 } | 368 } |
369 buildCounterReportRequestFilters--; | 369 buildCounterReportRequestFilters--; |
370 return o; | 370 return o; |
371 } | 371 } |
372 | 372 |
373 checkReportRequestFilters(api.ReportRequestFilters o) { | 373 checkReportRequestFilters(api.ReportRequestFilters o) { |
374 buildCounterReportRequestFilters++; | 374 buildCounterReportRequestFilters++; |
375 if (buildCounterReportRequestFilters < 3) { | 375 if (buildCounterReportRequestFilters < 3) { |
376 checkReportApiColumnSpec(o.column); | 376 checkReportApiColumnSpec(o.column); |
377 unittest.expect(o.operator, unittest.equals('foo')); | 377 unittest.expect(o.operator, unittest.equals('foo')); |
378 checkUnnamed716(o.values); | 378 checkUnnamed780(o.values); |
379 } | 379 } |
380 buildCounterReportRequestFilters--; | 380 buildCounterReportRequestFilters--; |
381 } | 381 } |
382 | 382 |
383 buildUnnamed717() { | 383 buildUnnamed781() { |
384 var o = new core.List<api.ReportRequestFilters>(); | 384 var o = new core.List<api.ReportRequestFilters>(); |
385 o.add(buildReportRequestFilters()); | 385 o.add(buildReportRequestFilters()); |
386 o.add(buildReportRequestFilters()); | 386 o.add(buildReportRequestFilters()); |
387 return o; | 387 return o; |
388 } | 388 } |
389 | 389 |
390 checkUnnamed717(core.List<api.ReportRequestFilters> o) { | 390 checkUnnamed781(core.List<api.ReportRequestFilters> o) { |
391 unittest.expect(o, unittest.hasLength(2)); | 391 unittest.expect(o, unittest.hasLength(2)); |
392 checkReportRequestFilters(o[0]); | 392 checkReportRequestFilters(o[0]); |
393 checkReportRequestFilters(o[1]); | 393 checkReportRequestFilters(o[1]); |
394 } | 394 } |
395 | 395 |
396 core.int buildCounterReportRequestOrderBy = 0; | 396 core.int buildCounterReportRequestOrderBy = 0; |
397 buildReportRequestOrderBy() { | 397 buildReportRequestOrderBy() { |
398 var o = new api.ReportRequestOrderBy(); | 398 var o = new api.ReportRequestOrderBy(); |
399 buildCounterReportRequestOrderBy++; | 399 buildCounterReportRequestOrderBy++; |
400 if (buildCounterReportRequestOrderBy < 3) { | 400 if (buildCounterReportRequestOrderBy < 3) { |
401 o.column = buildReportApiColumnSpec(); | 401 o.column = buildReportApiColumnSpec(); |
402 o.sortOrder = "foo"; | 402 o.sortOrder = "foo"; |
403 } | 403 } |
404 buildCounterReportRequestOrderBy--; | 404 buildCounterReportRequestOrderBy--; |
405 return o; | 405 return o; |
406 } | 406 } |
407 | 407 |
408 checkReportRequestOrderBy(api.ReportRequestOrderBy o) { | 408 checkReportRequestOrderBy(api.ReportRequestOrderBy o) { |
409 buildCounterReportRequestOrderBy++; | 409 buildCounterReportRequestOrderBy++; |
410 if (buildCounterReportRequestOrderBy < 3) { | 410 if (buildCounterReportRequestOrderBy < 3) { |
411 checkReportApiColumnSpec(o.column); | 411 checkReportApiColumnSpec(o.column); |
412 unittest.expect(o.sortOrder, unittest.equals('foo')); | 412 unittest.expect(o.sortOrder, unittest.equals('foo')); |
413 } | 413 } |
414 buildCounterReportRequestOrderBy--; | 414 buildCounterReportRequestOrderBy--; |
415 } | 415 } |
416 | 416 |
417 buildUnnamed718() { | 417 buildUnnamed782() { |
418 var o = new core.List<api.ReportRequestOrderBy>(); | 418 var o = new core.List<api.ReportRequestOrderBy>(); |
419 o.add(buildReportRequestOrderBy()); | 419 o.add(buildReportRequestOrderBy()); |
420 o.add(buildReportRequestOrderBy()); | 420 o.add(buildReportRequestOrderBy()); |
421 return o; | 421 return o; |
422 } | 422 } |
423 | 423 |
424 checkUnnamed718(core.List<api.ReportRequestOrderBy> o) { | 424 checkUnnamed782(core.List<api.ReportRequestOrderBy> o) { |
425 unittest.expect(o, unittest.hasLength(2)); | 425 unittest.expect(o, unittest.hasLength(2)); |
426 checkReportRequestOrderBy(o[0]); | 426 checkReportRequestOrderBy(o[0]); |
427 checkReportRequestOrderBy(o[1]); | 427 checkReportRequestOrderBy(o[1]); |
428 } | 428 } |
429 | 429 |
430 core.int buildCounterReportRequestReportScope = 0; | 430 core.int buildCounterReportRequestReportScope = 0; |
431 buildReportRequestReportScope() { | 431 buildReportRequestReportScope() { |
432 var o = new api.ReportRequestReportScope(); | 432 var o = new api.ReportRequestReportScope(); |
433 buildCounterReportRequestReportScope++; | 433 buildCounterReportRequestReportScope++; |
434 if (buildCounterReportRequestReportScope < 3) { | 434 if (buildCounterReportRequestReportScope < 3) { |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 unittest.expect(o.startDate, unittest.equals('foo')); | 481 unittest.expect(o.startDate, unittest.equals('foo')); |
482 } | 482 } |
483 buildCounterReportRequestTimeRange--; | 483 buildCounterReportRequestTimeRange--; |
484 } | 484 } |
485 | 485 |
486 core.int buildCounterReportRequest = 0; | 486 core.int buildCounterReportRequest = 0; |
487 buildReportRequest() { | 487 buildReportRequest() { |
488 var o = new api.ReportRequest(); | 488 var o = new api.ReportRequest(); |
489 buildCounterReportRequest++; | 489 buildCounterReportRequest++; |
490 if (buildCounterReportRequest < 3) { | 490 if (buildCounterReportRequest < 3) { |
491 o.columns = buildUnnamed715(); | 491 o.columns = buildUnnamed779(); |
492 o.downloadFormat = "foo"; | 492 o.downloadFormat = "foo"; |
493 o.filters = buildUnnamed717(); | 493 o.filters = buildUnnamed781(); |
494 o.includeDeletedEntities = true; | 494 o.includeDeletedEntities = true; |
495 o.includeRemovedEntities = true; | 495 o.includeRemovedEntities = true; |
496 o.maxRowsPerFile = 42; | 496 o.maxRowsPerFile = 42; |
497 o.orderBy = buildUnnamed718(); | 497 o.orderBy = buildUnnamed782(); |
498 o.reportScope = buildReportRequestReportScope(); | 498 o.reportScope = buildReportRequestReportScope(); |
499 o.reportType = "foo"; | 499 o.reportType = "foo"; |
500 o.rowCount = 42; | 500 o.rowCount = 42; |
501 o.startRow = 42; | 501 o.startRow = 42; |
502 o.statisticsCurrency = "foo"; | 502 o.statisticsCurrency = "foo"; |
503 o.timeRange = buildReportRequestTimeRange(); | 503 o.timeRange = buildReportRequestTimeRange(); |
504 o.verifySingleTimeZone = true; | 504 o.verifySingleTimeZone = true; |
505 } | 505 } |
506 buildCounterReportRequest--; | 506 buildCounterReportRequest--; |
507 return o; | 507 return o; |
508 } | 508 } |
509 | 509 |
510 checkReportRequest(api.ReportRequest o) { | 510 checkReportRequest(api.ReportRequest o) { |
511 buildCounterReportRequest++; | 511 buildCounterReportRequest++; |
512 if (buildCounterReportRequest < 3) { | 512 if (buildCounterReportRequest < 3) { |
513 checkUnnamed715(o.columns); | 513 checkUnnamed779(o.columns); |
514 unittest.expect(o.downloadFormat, unittest.equals('foo')); | 514 unittest.expect(o.downloadFormat, unittest.equals('foo')); |
515 checkUnnamed717(o.filters); | 515 checkUnnamed781(o.filters); |
516 unittest.expect(o.includeDeletedEntities, unittest.isTrue); | 516 unittest.expect(o.includeDeletedEntities, unittest.isTrue); |
517 unittest.expect(o.includeRemovedEntities, unittest.isTrue); | 517 unittest.expect(o.includeRemovedEntities, unittest.isTrue); |
518 unittest.expect(o.maxRowsPerFile, unittest.equals(42)); | 518 unittest.expect(o.maxRowsPerFile, unittest.equals(42)); |
519 checkUnnamed718(o.orderBy); | 519 checkUnnamed782(o.orderBy); |
520 checkReportRequestReportScope(o.reportScope); | 520 checkReportRequestReportScope(o.reportScope); |
521 unittest.expect(o.reportType, unittest.equals('foo')); | 521 unittest.expect(o.reportType, unittest.equals('foo')); |
522 unittest.expect(o.rowCount, unittest.equals(42)); | 522 unittest.expect(o.rowCount, unittest.equals(42)); |
523 unittest.expect(o.startRow, unittest.equals(42)); | 523 unittest.expect(o.startRow, unittest.equals(42)); |
524 unittest.expect(o.statisticsCurrency, unittest.equals('foo')); | 524 unittest.expect(o.statisticsCurrency, unittest.equals('foo')); |
525 checkReportRequestTimeRange(o.timeRange); | 525 checkReportRequestTimeRange(o.timeRange); |
526 unittest.expect(o.verifySingleTimeZone, unittest.isTrue); | 526 unittest.expect(o.verifySingleTimeZone, unittest.isTrue); |
527 } | 527 } |
528 buildCounterReportRequest--; | 528 buildCounterReportRequest--; |
529 } | 529 } |
(...skipping 27 matching lines...) Expand all Loading... |
557 checkSavedColumn(api.SavedColumn o) { | 557 checkSavedColumn(api.SavedColumn o) { |
558 buildCounterSavedColumn++; | 558 buildCounterSavedColumn++; |
559 if (buildCounterSavedColumn < 3) { | 559 if (buildCounterSavedColumn < 3) { |
560 unittest.expect(o.kind, unittest.equals('foo')); | 560 unittest.expect(o.kind, unittest.equals('foo')); |
561 unittest.expect(o.savedColumnName, unittest.equals('foo')); | 561 unittest.expect(o.savedColumnName, unittest.equals('foo')); |
562 unittest.expect(o.type, unittest.equals('foo')); | 562 unittest.expect(o.type, unittest.equals('foo')); |
563 } | 563 } |
564 buildCounterSavedColumn--; | 564 buildCounterSavedColumn--; |
565 } | 565 } |
566 | 566 |
567 buildUnnamed719() { | 567 buildUnnamed783() { |
568 var o = new core.List<api.SavedColumn>(); | 568 var o = new core.List<api.SavedColumn>(); |
569 o.add(buildSavedColumn()); | 569 o.add(buildSavedColumn()); |
570 o.add(buildSavedColumn()); | 570 o.add(buildSavedColumn()); |
571 return o; | 571 return o; |
572 } | 572 } |
573 | 573 |
574 checkUnnamed719(core.List<api.SavedColumn> o) { | 574 checkUnnamed783(core.List<api.SavedColumn> o) { |
575 unittest.expect(o, unittest.hasLength(2)); | 575 unittest.expect(o, unittest.hasLength(2)); |
576 checkSavedColumn(o[0]); | 576 checkSavedColumn(o[0]); |
577 checkSavedColumn(o[1]); | 577 checkSavedColumn(o[1]); |
578 } | 578 } |
579 | 579 |
580 core.int buildCounterSavedColumnList = 0; | 580 core.int buildCounterSavedColumnList = 0; |
581 buildSavedColumnList() { | 581 buildSavedColumnList() { |
582 var o = new api.SavedColumnList(); | 582 var o = new api.SavedColumnList(); |
583 buildCounterSavedColumnList++; | 583 buildCounterSavedColumnList++; |
584 if (buildCounterSavedColumnList < 3) { | 584 if (buildCounterSavedColumnList < 3) { |
585 o.items = buildUnnamed719(); | 585 o.items = buildUnnamed783(); |
586 o.kind = "foo"; | 586 o.kind = "foo"; |
587 } | 587 } |
588 buildCounterSavedColumnList--; | 588 buildCounterSavedColumnList--; |
589 return o; | 589 return o; |
590 } | 590 } |
591 | 591 |
592 checkSavedColumnList(api.SavedColumnList o) { | 592 checkSavedColumnList(api.SavedColumnList o) { |
593 buildCounterSavedColumnList++; | 593 buildCounterSavedColumnList++; |
594 if (buildCounterSavedColumnList < 3) { | 594 if (buildCounterSavedColumnList < 3) { |
595 checkUnnamed719(o.items); | 595 checkUnnamed783(o.items); |
596 unittest.expect(o.kind, unittest.equals('foo')); | 596 unittest.expect(o.kind, unittest.equals('foo')); |
597 } | 597 } |
598 buildCounterSavedColumnList--; | 598 buildCounterSavedColumnList--; |
599 } | 599 } |
600 | 600 |
601 buildUnnamed720() { | 601 buildUnnamed784() { |
602 var o = new core.List<api.Availability>(); | 602 var o = new core.List<api.Availability>(); |
603 o.add(buildAvailability()); | 603 o.add(buildAvailability()); |
604 o.add(buildAvailability()); | 604 o.add(buildAvailability()); |
605 return o; | 605 return o; |
606 } | 606 } |
607 | 607 |
608 checkUnnamed720(core.List<api.Availability> o) { | 608 checkUnnamed784(core.List<api.Availability> o) { |
609 unittest.expect(o, unittest.hasLength(2)); | 609 unittest.expect(o, unittest.hasLength(2)); |
610 checkAvailability(o[0]); | 610 checkAvailability(o[0]); |
611 checkAvailability(o[1]); | 611 checkAvailability(o[1]); |
612 } | 612 } |
613 | 613 |
614 core.int buildCounterUpdateAvailabilityRequest = 0; | 614 core.int buildCounterUpdateAvailabilityRequest = 0; |
615 buildUpdateAvailabilityRequest() { | 615 buildUpdateAvailabilityRequest() { |
616 var o = new api.UpdateAvailabilityRequest(); | 616 var o = new api.UpdateAvailabilityRequest(); |
617 buildCounterUpdateAvailabilityRequest++; | 617 buildCounterUpdateAvailabilityRequest++; |
618 if (buildCounterUpdateAvailabilityRequest < 3) { | 618 if (buildCounterUpdateAvailabilityRequest < 3) { |
619 o.availabilities = buildUnnamed720(); | 619 o.availabilities = buildUnnamed784(); |
620 } | 620 } |
621 buildCounterUpdateAvailabilityRequest--; | 621 buildCounterUpdateAvailabilityRequest--; |
622 return o; | 622 return o; |
623 } | 623 } |
624 | 624 |
625 checkUpdateAvailabilityRequest(api.UpdateAvailabilityRequest o) { | 625 checkUpdateAvailabilityRequest(api.UpdateAvailabilityRequest o) { |
626 buildCounterUpdateAvailabilityRequest++; | 626 buildCounterUpdateAvailabilityRequest++; |
627 if (buildCounterUpdateAvailabilityRequest < 3) { | 627 if (buildCounterUpdateAvailabilityRequest < 3) { |
628 checkUnnamed720(o.availabilities); | 628 checkUnnamed784(o.availabilities); |
629 } | 629 } |
630 buildCounterUpdateAvailabilityRequest--; | 630 buildCounterUpdateAvailabilityRequest--; |
631 } | 631 } |
632 | 632 |
633 buildUnnamed721() { | 633 buildUnnamed785() { |
634 var o = new core.List<api.Availability>(); | 634 var o = new core.List<api.Availability>(); |
635 o.add(buildAvailability()); | 635 o.add(buildAvailability()); |
636 o.add(buildAvailability()); | 636 o.add(buildAvailability()); |
637 return o; | 637 return o; |
638 } | 638 } |
639 | 639 |
640 checkUnnamed721(core.List<api.Availability> o) { | 640 checkUnnamed785(core.List<api.Availability> o) { |
641 unittest.expect(o, unittest.hasLength(2)); | 641 unittest.expect(o, unittest.hasLength(2)); |
642 checkAvailability(o[0]); | 642 checkAvailability(o[0]); |
643 checkAvailability(o[1]); | 643 checkAvailability(o[1]); |
644 } | 644 } |
645 | 645 |
646 core.int buildCounterUpdateAvailabilityResponse = 0; | 646 core.int buildCounterUpdateAvailabilityResponse = 0; |
647 buildUpdateAvailabilityResponse() { | 647 buildUpdateAvailabilityResponse() { |
648 var o = new api.UpdateAvailabilityResponse(); | 648 var o = new api.UpdateAvailabilityResponse(); |
649 buildCounterUpdateAvailabilityResponse++; | 649 buildCounterUpdateAvailabilityResponse++; |
650 if (buildCounterUpdateAvailabilityResponse < 3) { | 650 if (buildCounterUpdateAvailabilityResponse < 3) { |
651 o.availabilities = buildUnnamed721(); | 651 o.availabilities = buildUnnamed785(); |
652 } | 652 } |
653 buildCounterUpdateAvailabilityResponse--; | 653 buildCounterUpdateAvailabilityResponse--; |
654 return o; | 654 return o; |
655 } | 655 } |
656 | 656 |
657 checkUpdateAvailabilityResponse(api.UpdateAvailabilityResponse o) { | 657 checkUpdateAvailabilityResponse(api.UpdateAvailabilityResponse o) { |
658 buildCounterUpdateAvailabilityResponse++; | 658 buildCounterUpdateAvailabilityResponse++; |
659 if (buildCounterUpdateAvailabilityResponse < 3) { | 659 if (buildCounterUpdateAvailabilityResponse < 3) { |
660 checkUnnamed721(o.availabilities); | 660 checkUnnamed785(o.availabilities); |
661 } | 661 } |
662 buildCounterUpdateAvailabilityResponse--; | 662 buildCounterUpdateAvailabilityResponse--; |
663 } | 663 } |
664 | 664 |
665 | 665 |
666 main() { | 666 main() { |
667 unittest.group("obj-schema-Availability", () { | 667 unittest.group("obj-schema-Availability", () { |
668 unittest.test("to-json--from-json", () { | 668 unittest.test("to-json--from-json", () { |
669 var o = buildAvailability(); | 669 var o = buildAvailability(); |
670 var od = new api.Availability.fromJson(o.toJson()); | 670 var od = new api.Availability.fromJson(o.toJson()); |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1393 res.list(arg_agencyId, arg_advertiserId).then(unittest.expectAsync(((api.S
avedColumnList response) { | 1393 res.list(arg_agencyId, arg_advertiserId).then(unittest.expectAsync(((api.S
avedColumnList response) { |
1394 checkSavedColumnList(response); | 1394 checkSavedColumnList(response); |
1395 }))); | 1395 }))); |
1396 }); | 1396 }); |
1397 | 1397 |
1398 }); | 1398 }); |
1399 | 1399 |
1400 | 1400 |
1401 } | 1401 } |
1402 | 1402 |
OLD | NEW |