OLD | NEW |
1 library googleapis.admin.reports_v1.test; | 1 library googleapis.admin.reports_v1.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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 } | 44 } |
45 } | 45 } |
46 } | 46 } |
47 | 47 |
48 http.StreamedResponse stringResponse( | 48 http.StreamedResponse stringResponse( |
49 core.int status, core.Map headers, core.String body) { | 49 core.int status, core.Map headers, core.String body) { |
50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); | 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); |
51 return new http.StreamedResponse(stream, status, headers: headers); | 51 return new http.StreamedResponse(stream, status, headers: headers); |
52 } | 52 } |
53 | 53 |
54 buildUnnamed574() { | 54 buildUnnamed581() { |
55 var o = new core.List<api.Activity>(); | 55 var o = new core.List<api.Activity>(); |
56 o.add(buildActivity()); | 56 o.add(buildActivity()); |
57 o.add(buildActivity()); | 57 o.add(buildActivity()); |
58 return o; | 58 return o; |
59 } | 59 } |
60 | 60 |
61 checkUnnamed574(core.List<api.Activity> o) { | 61 checkUnnamed581(core.List<api.Activity> o) { |
62 unittest.expect(o, unittest.hasLength(2)); | 62 unittest.expect(o, unittest.hasLength(2)); |
63 checkActivity(o[0]); | 63 checkActivity(o[0]); |
64 checkActivity(o[1]); | 64 checkActivity(o[1]); |
65 } | 65 } |
66 | 66 |
67 core.int buildCounterActivities = 0; | 67 core.int buildCounterActivities = 0; |
68 buildActivities() { | 68 buildActivities() { |
69 var o = new api.Activities(); | 69 var o = new api.Activities(); |
70 buildCounterActivities++; | 70 buildCounterActivities++; |
71 if (buildCounterActivities < 3) { | 71 if (buildCounterActivities < 3) { |
72 o.etag = "foo"; | 72 o.etag = "foo"; |
73 o.items = buildUnnamed574(); | 73 o.items = buildUnnamed581(); |
74 o.kind = "foo"; | 74 o.kind = "foo"; |
75 o.nextPageToken = "foo"; | 75 o.nextPageToken = "foo"; |
76 } | 76 } |
77 buildCounterActivities--; | 77 buildCounterActivities--; |
78 return o; | 78 return o; |
79 } | 79 } |
80 | 80 |
81 checkActivities(api.Activities o) { | 81 checkActivities(api.Activities o) { |
82 buildCounterActivities++; | 82 buildCounterActivities++; |
83 if (buildCounterActivities < 3) { | 83 if (buildCounterActivities < 3) { |
84 unittest.expect(o.etag, unittest.equals('foo')); | 84 unittest.expect(o.etag, unittest.equals('foo')); |
85 checkUnnamed574(o.items); | 85 checkUnnamed581(o.items); |
86 unittest.expect(o.kind, unittest.equals('foo')); | 86 unittest.expect(o.kind, unittest.equals('foo')); |
87 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 87 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
88 } | 88 } |
89 buildCounterActivities--; | 89 buildCounterActivities--; |
90 } | 90 } |
91 | 91 |
92 core.int buildCounterActivityActor = 0; | 92 core.int buildCounterActivityActor = 0; |
93 buildActivityActor() { | 93 buildActivityActor() { |
94 var o = new api.ActivityActor(); | 94 var o = new api.ActivityActor(); |
95 buildCounterActivityActor++; | 95 buildCounterActivityActor++; |
(...skipping 11 matching lines...) Expand all Loading... |
107 buildCounterActivityActor++; | 107 buildCounterActivityActor++; |
108 if (buildCounterActivityActor < 3) { | 108 if (buildCounterActivityActor < 3) { |
109 unittest.expect(o.callerType, unittest.equals('foo')); | 109 unittest.expect(o.callerType, unittest.equals('foo')); |
110 unittest.expect(o.email, unittest.equals('foo')); | 110 unittest.expect(o.email, unittest.equals('foo')); |
111 unittest.expect(o.key, unittest.equals('foo')); | 111 unittest.expect(o.key, unittest.equals('foo')); |
112 unittest.expect(o.profileId, unittest.equals('foo')); | 112 unittest.expect(o.profileId, unittest.equals('foo')); |
113 } | 113 } |
114 buildCounterActivityActor--; | 114 buildCounterActivityActor--; |
115 } | 115 } |
116 | 116 |
117 buildUnnamed575() { | 117 buildUnnamed582() { |
118 var o = new core.List<core.String>(); | 118 var o = new core.List<core.String>(); |
119 o.add("foo"); | 119 o.add("foo"); |
120 o.add("foo"); | 120 o.add("foo"); |
121 return o; | 121 return o; |
122 } | 122 } |
123 | 123 |
124 checkUnnamed575(core.List<core.String> o) { | 124 checkUnnamed582(core.List<core.String> o) { |
125 unittest.expect(o, unittest.hasLength(2)); | 125 unittest.expect(o, unittest.hasLength(2)); |
126 unittest.expect(o[0], unittest.equals('foo')); | 126 unittest.expect(o[0], unittest.equals('foo')); |
127 unittest.expect(o[1], unittest.equals('foo')); | 127 unittest.expect(o[1], unittest.equals('foo')); |
128 } | 128 } |
129 | 129 |
130 buildUnnamed576() { | 130 buildUnnamed583() { |
131 var o = new core.List<core.String>(); | 131 var o = new core.List<core.String>(); |
132 o.add("foo"); | 132 o.add("foo"); |
133 o.add("foo"); | 133 o.add("foo"); |
134 return o; | 134 return o; |
135 } | 135 } |
136 | 136 |
137 checkUnnamed576(core.List<core.String> o) { | 137 checkUnnamed583(core.List<core.String> o) { |
138 unittest.expect(o, unittest.hasLength(2)); | 138 unittest.expect(o, unittest.hasLength(2)); |
139 unittest.expect(o[0], unittest.equals('foo')); | 139 unittest.expect(o[0], unittest.equals('foo')); |
140 unittest.expect(o[1], unittest.equals('foo')); | 140 unittest.expect(o[1], unittest.equals('foo')); |
141 } | 141 } |
142 | 142 |
143 core.int buildCounterActivityEventsParameters = 0; | 143 core.int buildCounterActivityEventsParameters = 0; |
144 buildActivityEventsParameters() { | 144 buildActivityEventsParameters() { |
145 var o = new api.ActivityEventsParameters(); | 145 var o = new api.ActivityEventsParameters(); |
146 buildCounterActivityEventsParameters++; | 146 buildCounterActivityEventsParameters++; |
147 if (buildCounterActivityEventsParameters < 3) { | 147 if (buildCounterActivityEventsParameters < 3) { |
148 o.boolValue = true; | 148 o.boolValue = true; |
149 o.intValue = "foo"; | 149 o.intValue = "foo"; |
150 o.multiIntValue = buildUnnamed575(); | 150 o.multiIntValue = buildUnnamed582(); |
151 o.multiValue = buildUnnamed576(); | 151 o.multiValue = buildUnnamed583(); |
152 o.name = "foo"; | 152 o.name = "foo"; |
153 o.value = "foo"; | 153 o.value = "foo"; |
154 } | 154 } |
155 buildCounterActivityEventsParameters--; | 155 buildCounterActivityEventsParameters--; |
156 return o; | 156 return o; |
157 } | 157 } |
158 | 158 |
159 checkActivityEventsParameters(api.ActivityEventsParameters o) { | 159 checkActivityEventsParameters(api.ActivityEventsParameters o) { |
160 buildCounterActivityEventsParameters++; | 160 buildCounterActivityEventsParameters++; |
161 if (buildCounterActivityEventsParameters < 3) { | 161 if (buildCounterActivityEventsParameters < 3) { |
162 unittest.expect(o.boolValue, unittest.isTrue); | 162 unittest.expect(o.boolValue, unittest.isTrue); |
163 unittest.expect(o.intValue, unittest.equals('foo')); | 163 unittest.expect(o.intValue, unittest.equals('foo')); |
164 checkUnnamed575(o.multiIntValue); | 164 checkUnnamed582(o.multiIntValue); |
165 checkUnnamed576(o.multiValue); | 165 checkUnnamed583(o.multiValue); |
166 unittest.expect(o.name, unittest.equals('foo')); | 166 unittest.expect(o.name, unittest.equals('foo')); |
167 unittest.expect(o.value, unittest.equals('foo')); | 167 unittest.expect(o.value, unittest.equals('foo')); |
168 } | 168 } |
169 buildCounterActivityEventsParameters--; | 169 buildCounterActivityEventsParameters--; |
170 } | 170 } |
171 | 171 |
172 buildUnnamed577() { | 172 buildUnnamed584() { |
173 var o = new core.List<api.ActivityEventsParameters>(); | 173 var o = new core.List<api.ActivityEventsParameters>(); |
174 o.add(buildActivityEventsParameters()); | 174 o.add(buildActivityEventsParameters()); |
175 o.add(buildActivityEventsParameters()); | 175 o.add(buildActivityEventsParameters()); |
176 return o; | 176 return o; |
177 } | 177 } |
178 | 178 |
179 checkUnnamed577(core.List<api.ActivityEventsParameters> o) { | 179 checkUnnamed584(core.List<api.ActivityEventsParameters> o) { |
180 unittest.expect(o, unittest.hasLength(2)); | 180 unittest.expect(o, unittest.hasLength(2)); |
181 checkActivityEventsParameters(o[0]); | 181 checkActivityEventsParameters(o[0]); |
182 checkActivityEventsParameters(o[1]); | 182 checkActivityEventsParameters(o[1]); |
183 } | 183 } |
184 | 184 |
185 core.int buildCounterActivityEvents = 0; | 185 core.int buildCounterActivityEvents = 0; |
186 buildActivityEvents() { | 186 buildActivityEvents() { |
187 var o = new api.ActivityEvents(); | 187 var o = new api.ActivityEvents(); |
188 buildCounterActivityEvents++; | 188 buildCounterActivityEvents++; |
189 if (buildCounterActivityEvents < 3) { | 189 if (buildCounterActivityEvents < 3) { |
190 o.name = "foo"; | 190 o.name = "foo"; |
191 o.parameters = buildUnnamed577(); | 191 o.parameters = buildUnnamed584(); |
192 o.type = "foo"; | 192 o.type = "foo"; |
193 } | 193 } |
194 buildCounterActivityEvents--; | 194 buildCounterActivityEvents--; |
195 return o; | 195 return o; |
196 } | 196 } |
197 | 197 |
198 checkActivityEvents(api.ActivityEvents o) { | 198 checkActivityEvents(api.ActivityEvents o) { |
199 buildCounterActivityEvents++; | 199 buildCounterActivityEvents++; |
200 if (buildCounterActivityEvents < 3) { | 200 if (buildCounterActivityEvents < 3) { |
201 unittest.expect(o.name, unittest.equals('foo')); | 201 unittest.expect(o.name, unittest.equals('foo')); |
202 checkUnnamed577(o.parameters); | 202 checkUnnamed584(o.parameters); |
203 unittest.expect(o.type, unittest.equals('foo')); | 203 unittest.expect(o.type, unittest.equals('foo')); |
204 } | 204 } |
205 buildCounterActivityEvents--; | 205 buildCounterActivityEvents--; |
206 } | 206 } |
207 | 207 |
208 buildUnnamed578() { | 208 buildUnnamed585() { |
209 var o = new core.List<api.ActivityEvents>(); | 209 var o = new core.List<api.ActivityEvents>(); |
210 o.add(buildActivityEvents()); | 210 o.add(buildActivityEvents()); |
211 o.add(buildActivityEvents()); | 211 o.add(buildActivityEvents()); |
212 return o; | 212 return o; |
213 } | 213 } |
214 | 214 |
215 checkUnnamed578(core.List<api.ActivityEvents> o) { | 215 checkUnnamed585(core.List<api.ActivityEvents> o) { |
216 unittest.expect(o, unittest.hasLength(2)); | 216 unittest.expect(o, unittest.hasLength(2)); |
217 checkActivityEvents(o[0]); | 217 checkActivityEvents(o[0]); |
218 checkActivityEvents(o[1]); | 218 checkActivityEvents(o[1]); |
219 } | 219 } |
220 | 220 |
221 core.int buildCounterActivityId = 0; | 221 core.int buildCounterActivityId = 0; |
222 buildActivityId() { | 222 buildActivityId() { |
223 var o = new api.ActivityId(); | 223 var o = new api.ActivityId(); |
224 buildCounterActivityId++; | 224 buildCounterActivityId++; |
225 if (buildCounterActivityId < 3) { | 225 if (buildCounterActivityId < 3) { |
(...skipping 17 matching lines...) Expand all Loading... |
243 buildCounterActivityId--; | 243 buildCounterActivityId--; |
244 } | 244 } |
245 | 245 |
246 core.int buildCounterActivity = 0; | 246 core.int buildCounterActivity = 0; |
247 buildActivity() { | 247 buildActivity() { |
248 var o = new api.Activity(); | 248 var o = new api.Activity(); |
249 buildCounterActivity++; | 249 buildCounterActivity++; |
250 if (buildCounterActivity < 3) { | 250 if (buildCounterActivity < 3) { |
251 o.actor = buildActivityActor(); | 251 o.actor = buildActivityActor(); |
252 o.etag = "foo"; | 252 o.etag = "foo"; |
253 o.events = buildUnnamed578(); | 253 o.events = buildUnnamed585(); |
254 o.id = buildActivityId(); | 254 o.id = buildActivityId(); |
255 o.ipAddress = "foo"; | 255 o.ipAddress = "foo"; |
256 o.kind = "foo"; | 256 o.kind = "foo"; |
257 o.ownerDomain = "foo"; | 257 o.ownerDomain = "foo"; |
258 } | 258 } |
259 buildCounterActivity--; | 259 buildCounterActivity--; |
260 return o; | 260 return o; |
261 } | 261 } |
262 | 262 |
263 checkActivity(api.Activity o) { | 263 checkActivity(api.Activity o) { |
264 buildCounterActivity++; | 264 buildCounterActivity++; |
265 if (buildCounterActivity < 3) { | 265 if (buildCounterActivity < 3) { |
266 checkActivityActor(o.actor); | 266 checkActivityActor(o.actor); |
267 unittest.expect(o.etag, unittest.equals('foo')); | 267 unittest.expect(o.etag, unittest.equals('foo')); |
268 checkUnnamed578(o.events); | 268 checkUnnamed585(o.events); |
269 checkActivityId(o.id); | 269 checkActivityId(o.id); |
270 unittest.expect(o.ipAddress, unittest.equals('foo')); | 270 unittest.expect(o.ipAddress, unittest.equals('foo')); |
271 unittest.expect(o.kind, unittest.equals('foo')); | 271 unittest.expect(o.kind, unittest.equals('foo')); |
272 unittest.expect(o.ownerDomain, unittest.equals('foo')); | 272 unittest.expect(o.ownerDomain, unittest.equals('foo')); |
273 } | 273 } |
274 buildCounterActivity--; | 274 buildCounterActivity--; |
275 } | 275 } |
276 | 276 |
277 buildUnnamed579() { | 277 buildUnnamed586() { |
278 var o = new core.Map<core.String, core.String>(); | 278 var o = new core.Map<core.String, core.String>(); |
279 o["x"] = "foo"; | 279 o["x"] = "foo"; |
280 o["y"] = "foo"; | 280 o["y"] = "foo"; |
281 return o; | 281 return o; |
282 } | 282 } |
283 | 283 |
284 checkUnnamed579(core.Map<core.String, core.String> o) { | 284 checkUnnamed586(core.Map<core.String, core.String> o) { |
285 unittest.expect(o, unittest.hasLength(2)); | 285 unittest.expect(o, unittest.hasLength(2)); |
286 unittest.expect(o["x"], unittest.equals('foo')); | 286 unittest.expect(o["x"], unittest.equals('foo')); |
287 unittest.expect(o["y"], unittest.equals('foo')); | 287 unittest.expect(o["y"], unittest.equals('foo')); |
288 } | 288 } |
289 | 289 |
290 core.int buildCounterChannel = 0; | 290 core.int buildCounterChannel = 0; |
291 buildChannel() { | 291 buildChannel() { |
292 var o = new api.Channel(); | 292 var o = new api.Channel(); |
293 buildCounterChannel++; | 293 buildCounterChannel++; |
294 if (buildCounterChannel < 3) { | 294 if (buildCounterChannel < 3) { |
295 o.address = "foo"; | 295 o.address = "foo"; |
296 o.expiration = "foo"; | 296 o.expiration = "foo"; |
297 o.id = "foo"; | 297 o.id = "foo"; |
298 o.kind = "foo"; | 298 o.kind = "foo"; |
299 o.params = buildUnnamed579(); | 299 o.params = buildUnnamed586(); |
300 o.payload = true; | 300 o.payload = true; |
301 o.resourceId = "foo"; | 301 o.resourceId = "foo"; |
302 o.resourceUri = "foo"; | 302 o.resourceUri = "foo"; |
303 o.token = "foo"; | 303 o.token = "foo"; |
304 o.type = "foo"; | 304 o.type = "foo"; |
305 } | 305 } |
306 buildCounterChannel--; | 306 buildCounterChannel--; |
307 return o; | 307 return o; |
308 } | 308 } |
309 | 309 |
310 checkChannel(api.Channel o) { | 310 checkChannel(api.Channel o) { |
311 buildCounterChannel++; | 311 buildCounterChannel++; |
312 if (buildCounterChannel < 3) { | 312 if (buildCounterChannel < 3) { |
313 unittest.expect(o.address, unittest.equals('foo')); | 313 unittest.expect(o.address, unittest.equals('foo')); |
314 unittest.expect(o.expiration, unittest.equals('foo')); | 314 unittest.expect(o.expiration, unittest.equals('foo')); |
315 unittest.expect(o.id, unittest.equals('foo')); | 315 unittest.expect(o.id, unittest.equals('foo')); |
316 unittest.expect(o.kind, unittest.equals('foo')); | 316 unittest.expect(o.kind, unittest.equals('foo')); |
317 checkUnnamed579(o.params); | 317 checkUnnamed586(o.params); |
318 unittest.expect(o.payload, unittest.isTrue); | 318 unittest.expect(o.payload, unittest.isTrue); |
319 unittest.expect(o.resourceId, unittest.equals('foo')); | 319 unittest.expect(o.resourceId, unittest.equals('foo')); |
320 unittest.expect(o.resourceUri, unittest.equals('foo')); | 320 unittest.expect(o.resourceUri, unittest.equals('foo')); |
321 unittest.expect(o.token, unittest.equals('foo')); | 321 unittest.expect(o.token, unittest.equals('foo')); |
322 unittest.expect(o.type, unittest.equals('foo')); | 322 unittest.expect(o.type, unittest.equals('foo')); |
323 } | 323 } |
324 buildCounterChannel--; | 324 buildCounterChannel--; |
325 } | 325 } |
326 | 326 |
327 core.int buildCounterUsageReportEntity = 0; | 327 core.int buildCounterUsageReportEntity = 0; |
(...skipping 14 matching lines...) Expand all Loading... |
342 buildCounterUsageReportEntity++; | 342 buildCounterUsageReportEntity++; |
343 if (buildCounterUsageReportEntity < 3) { | 343 if (buildCounterUsageReportEntity < 3) { |
344 unittest.expect(o.customerId, unittest.equals('foo')); | 344 unittest.expect(o.customerId, unittest.equals('foo')); |
345 unittest.expect(o.profileId, unittest.equals('foo')); | 345 unittest.expect(o.profileId, unittest.equals('foo')); |
346 unittest.expect(o.type, unittest.equals('foo')); | 346 unittest.expect(o.type, unittest.equals('foo')); |
347 unittest.expect(o.userEmail, unittest.equals('foo')); | 347 unittest.expect(o.userEmail, unittest.equals('foo')); |
348 } | 348 } |
349 buildCounterUsageReportEntity--; | 349 buildCounterUsageReportEntity--; |
350 } | 350 } |
351 | 351 |
352 buildUnnamed580() { | 352 buildUnnamed587() { |
353 var o = new core.Map<core.String, core.Object>(); | 353 var o = new core.Map<core.String, core.Object>(); |
354 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 354 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
355 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 355 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
356 return o; | 356 return o; |
357 } | 357 } |
358 | 358 |
359 checkUnnamed580(core.Map<core.String, core.Object> o) { | 359 checkUnnamed587(core.Map<core.String, core.Object> o) { |
360 unittest.expect(o, unittest.hasLength(2)); | 360 unittest.expect(o, unittest.hasLength(2)); |
361 var casted1 = (o["x"]) as core.Map; unittest.expect(casted1, unittest.hasLengt
h(3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"],
unittest.equals('foo')); | 361 var casted1 = (o["x"]) as core.Map; unittest.expect(casted1, unittest.hasLengt
h(3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"],
unittest.equals('foo')); |
362 var casted2 = (o["y"]) as core.Map; unittest.expect(casted2, unittest.hasLengt
h(3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"],
unittest.equals('foo')); | 362 var casted2 = (o["y"]) as core.Map; unittest.expect(casted2, unittest.hasLengt
h(3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"],
unittest.equals('foo')); |
363 } | 363 } |
364 | 364 |
365 buildUnnamed581() { | 365 buildUnnamed588() { |
366 var o = new core.List<core.Map<core.String, core.Object>>(); | 366 var o = new core.List<core.Map<core.String, core.Object>>(); |
367 o.add(buildUnnamed580()); | 367 o.add(buildUnnamed587()); |
368 o.add(buildUnnamed580()); | 368 o.add(buildUnnamed587()); |
369 return o; | 369 return o; |
370 } | 370 } |
371 | 371 |
372 checkUnnamed581(core.List<core.Map<core.String, core.Object>> o) { | 372 checkUnnamed588(core.List<core.Map<core.String, core.Object>> o) { |
373 unittest.expect(o, unittest.hasLength(2)); | 373 unittest.expect(o, unittest.hasLength(2)); |
374 checkUnnamed580(o[0]); | 374 checkUnnamed587(o[0]); |
375 checkUnnamed580(o[1]); | 375 checkUnnamed587(o[1]); |
376 } | 376 } |
377 | 377 |
378 core.int buildCounterUsageReportParameters = 0; | 378 core.int buildCounterUsageReportParameters = 0; |
379 buildUsageReportParameters() { | 379 buildUsageReportParameters() { |
380 var o = new api.UsageReportParameters(); | 380 var o = new api.UsageReportParameters(); |
381 buildCounterUsageReportParameters++; | 381 buildCounterUsageReportParameters++; |
382 if (buildCounterUsageReportParameters < 3) { | 382 if (buildCounterUsageReportParameters < 3) { |
383 o.boolValue = true; | 383 o.boolValue = true; |
384 o.datetimeValue = core.DateTime.parse("2002-02-27T14:01:02"); | 384 o.datetimeValue = core.DateTime.parse("2002-02-27T14:01:02"); |
385 o.intValue = "foo"; | 385 o.intValue = "foo"; |
386 o.msgValue = buildUnnamed581(); | 386 o.msgValue = buildUnnamed588(); |
387 o.name = "foo"; | 387 o.name = "foo"; |
388 o.stringValue = "foo"; | 388 o.stringValue = "foo"; |
389 } | 389 } |
390 buildCounterUsageReportParameters--; | 390 buildCounterUsageReportParameters--; |
391 return o; | 391 return o; |
392 } | 392 } |
393 | 393 |
394 checkUsageReportParameters(api.UsageReportParameters o) { | 394 checkUsageReportParameters(api.UsageReportParameters o) { |
395 buildCounterUsageReportParameters++; | 395 buildCounterUsageReportParameters++; |
396 if (buildCounterUsageReportParameters < 3) { | 396 if (buildCounterUsageReportParameters < 3) { |
397 unittest.expect(o.boolValue, unittest.isTrue); | 397 unittest.expect(o.boolValue, unittest.isTrue); |
398 unittest.expect(o.datetimeValue, unittest.equals(core.DateTime.parse("2002-0
2-27T14:01:02"))); | 398 unittest.expect(o.datetimeValue, unittest.equals(core.DateTime.parse("2002-0
2-27T14:01:02"))); |
399 unittest.expect(o.intValue, unittest.equals('foo')); | 399 unittest.expect(o.intValue, unittest.equals('foo')); |
400 checkUnnamed581(o.msgValue); | 400 checkUnnamed588(o.msgValue); |
401 unittest.expect(o.name, unittest.equals('foo')); | 401 unittest.expect(o.name, unittest.equals('foo')); |
402 unittest.expect(o.stringValue, unittest.equals('foo')); | 402 unittest.expect(o.stringValue, unittest.equals('foo')); |
403 } | 403 } |
404 buildCounterUsageReportParameters--; | 404 buildCounterUsageReportParameters--; |
405 } | 405 } |
406 | 406 |
407 buildUnnamed582() { | 407 buildUnnamed589() { |
408 var o = new core.List<api.UsageReportParameters>(); | 408 var o = new core.List<api.UsageReportParameters>(); |
409 o.add(buildUsageReportParameters()); | 409 o.add(buildUsageReportParameters()); |
410 o.add(buildUsageReportParameters()); | 410 o.add(buildUsageReportParameters()); |
411 return o; | 411 return o; |
412 } | 412 } |
413 | 413 |
414 checkUnnamed582(core.List<api.UsageReportParameters> o) { | 414 checkUnnamed589(core.List<api.UsageReportParameters> o) { |
415 unittest.expect(o, unittest.hasLength(2)); | 415 unittest.expect(o, unittest.hasLength(2)); |
416 checkUsageReportParameters(o[0]); | 416 checkUsageReportParameters(o[0]); |
417 checkUsageReportParameters(o[1]); | 417 checkUsageReportParameters(o[1]); |
418 } | 418 } |
419 | 419 |
420 core.int buildCounterUsageReport = 0; | 420 core.int buildCounterUsageReport = 0; |
421 buildUsageReport() { | 421 buildUsageReport() { |
422 var o = new api.UsageReport(); | 422 var o = new api.UsageReport(); |
423 buildCounterUsageReport++; | 423 buildCounterUsageReport++; |
424 if (buildCounterUsageReport < 3) { | 424 if (buildCounterUsageReport < 3) { |
425 o.date = "foo"; | 425 o.date = "foo"; |
426 o.entity = buildUsageReportEntity(); | 426 o.entity = buildUsageReportEntity(); |
427 o.etag = "foo"; | 427 o.etag = "foo"; |
428 o.kind = "foo"; | 428 o.kind = "foo"; |
429 o.parameters = buildUnnamed582(); | 429 o.parameters = buildUnnamed589(); |
430 } | 430 } |
431 buildCounterUsageReport--; | 431 buildCounterUsageReport--; |
432 return o; | 432 return o; |
433 } | 433 } |
434 | 434 |
435 checkUsageReport(api.UsageReport o) { | 435 checkUsageReport(api.UsageReport o) { |
436 buildCounterUsageReport++; | 436 buildCounterUsageReport++; |
437 if (buildCounterUsageReport < 3) { | 437 if (buildCounterUsageReport < 3) { |
438 unittest.expect(o.date, unittest.equals('foo')); | 438 unittest.expect(o.date, unittest.equals('foo')); |
439 checkUsageReportEntity(o.entity); | 439 checkUsageReportEntity(o.entity); |
440 unittest.expect(o.etag, unittest.equals('foo')); | 440 unittest.expect(o.etag, unittest.equals('foo')); |
441 unittest.expect(o.kind, unittest.equals('foo')); | 441 unittest.expect(o.kind, unittest.equals('foo')); |
442 checkUnnamed582(o.parameters); | 442 checkUnnamed589(o.parameters); |
443 } | 443 } |
444 buildCounterUsageReport--; | 444 buildCounterUsageReport--; |
445 } | 445 } |
446 | 446 |
447 buildUnnamed583() { | 447 buildUnnamed590() { |
448 var o = new core.List<api.UsageReport>(); | 448 var o = new core.List<api.UsageReport>(); |
449 o.add(buildUsageReport()); | 449 o.add(buildUsageReport()); |
450 o.add(buildUsageReport()); | 450 o.add(buildUsageReport()); |
451 return o; | 451 return o; |
452 } | 452 } |
453 | 453 |
454 checkUnnamed583(core.List<api.UsageReport> o) { | 454 checkUnnamed590(core.List<api.UsageReport> o) { |
455 unittest.expect(o, unittest.hasLength(2)); | 455 unittest.expect(o, unittest.hasLength(2)); |
456 checkUsageReport(o[0]); | 456 checkUsageReport(o[0]); |
457 checkUsageReport(o[1]); | 457 checkUsageReport(o[1]); |
458 } | 458 } |
459 | 459 |
460 core.int buildCounterUsageReportsWarningsData = 0; | 460 core.int buildCounterUsageReportsWarningsData = 0; |
461 buildUsageReportsWarningsData() { | 461 buildUsageReportsWarningsData() { |
462 var o = new api.UsageReportsWarningsData(); | 462 var o = new api.UsageReportsWarningsData(); |
463 buildCounterUsageReportsWarningsData++; | 463 buildCounterUsageReportsWarningsData++; |
464 if (buildCounterUsageReportsWarningsData < 3) { | 464 if (buildCounterUsageReportsWarningsData < 3) { |
465 o.key = "foo"; | 465 o.key = "foo"; |
466 o.value = "foo"; | 466 o.value = "foo"; |
467 } | 467 } |
468 buildCounterUsageReportsWarningsData--; | 468 buildCounterUsageReportsWarningsData--; |
469 return o; | 469 return o; |
470 } | 470 } |
471 | 471 |
472 checkUsageReportsWarningsData(api.UsageReportsWarningsData o) { | 472 checkUsageReportsWarningsData(api.UsageReportsWarningsData o) { |
473 buildCounterUsageReportsWarningsData++; | 473 buildCounterUsageReportsWarningsData++; |
474 if (buildCounterUsageReportsWarningsData < 3) { | 474 if (buildCounterUsageReportsWarningsData < 3) { |
475 unittest.expect(o.key, unittest.equals('foo')); | 475 unittest.expect(o.key, unittest.equals('foo')); |
476 unittest.expect(o.value, unittest.equals('foo')); | 476 unittest.expect(o.value, unittest.equals('foo')); |
477 } | 477 } |
478 buildCounterUsageReportsWarningsData--; | 478 buildCounterUsageReportsWarningsData--; |
479 } | 479 } |
480 | 480 |
481 buildUnnamed584() { | 481 buildUnnamed591() { |
482 var o = new core.List<api.UsageReportsWarningsData>(); | 482 var o = new core.List<api.UsageReportsWarningsData>(); |
483 o.add(buildUsageReportsWarningsData()); | 483 o.add(buildUsageReportsWarningsData()); |
484 o.add(buildUsageReportsWarningsData()); | 484 o.add(buildUsageReportsWarningsData()); |
485 return o; | 485 return o; |
486 } | 486 } |
487 | 487 |
488 checkUnnamed584(core.List<api.UsageReportsWarningsData> o) { | 488 checkUnnamed591(core.List<api.UsageReportsWarningsData> o) { |
489 unittest.expect(o, unittest.hasLength(2)); | 489 unittest.expect(o, unittest.hasLength(2)); |
490 checkUsageReportsWarningsData(o[0]); | 490 checkUsageReportsWarningsData(o[0]); |
491 checkUsageReportsWarningsData(o[1]); | 491 checkUsageReportsWarningsData(o[1]); |
492 } | 492 } |
493 | 493 |
494 core.int buildCounterUsageReportsWarnings = 0; | 494 core.int buildCounterUsageReportsWarnings = 0; |
495 buildUsageReportsWarnings() { | 495 buildUsageReportsWarnings() { |
496 var o = new api.UsageReportsWarnings(); | 496 var o = new api.UsageReportsWarnings(); |
497 buildCounterUsageReportsWarnings++; | 497 buildCounterUsageReportsWarnings++; |
498 if (buildCounterUsageReportsWarnings < 3) { | 498 if (buildCounterUsageReportsWarnings < 3) { |
499 o.code = "foo"; | 499 o.code = "foo"; |
500 o.data = buildUnnamed584(); | 500 o.data = buildUnnamed591(); |
501 o.message = "foo"; | 501 o.message = "foo"; |
502 } | 502 } |
503 buildCounterUsageReportsWarnings--; | 503 buildCounterUsageReportsWarnings--; |
504 return o; | 504 return o; |
505 } | 505 } |
506 | 506 |
507 checkUsageReportsWarnings(api.UsageReportsWarnings o) { | 507 checkUsageReportsWarnings(api.UsageReportsWarnings o) { |
508 buildCounterUsageReportsWarnings++; | 508 buildCounterUsageReportsWarnings++; |
509 if (buildCounterUsageReportsWarnings < 3) { | 509 if (buildCounterUsageReportsWarnings < 3) { |
510 unittest.expect(o.code, unittest.equals('foo')); | 510 unittest.expect(o.code, unittest.equals('foo')); |
511 checkUnnamed584(o.data); | 511 checkUnnamed591(o.data); |
512 unittest.expect(o.message, unittest.equals('foo')); | 512 unittest.expect(o.message, unittest.equals('foo')); |
513 } | 513 } |
514 buildCounterUsageReportsWarnings--; | 514 buildCounterUsageReportsWarnings--; |
515 } | 515 } |
516 | 516 |
517 buildUnnamed585() { | 517 buildUnnamed592() { |
518 var o = new core.List<api.UsageReportsWarnings>(); | 518 var o = new core.List<api.UsageReportsWarnings>(); |
519 o.add(buildUsageReportsWarnings()); | 519 o.add(buildUsageReportsWarnings()); |
520 o.add(buildUsageReportsWarnings()); | 520 o.add(buildUsageReportsWarnings()); |
521 return o; | 521 return o; |
522 } | 522 } |
523 | 523 |
524 checkUnnamed585(core.List<api.UsageReportsWarnings> o) { | 524 checkUnnamed592(core.List<api.UsageReportsWarnings> o) { |
525 unittest.expect(o, unittest.hasLength(2)); | 525 unittest.expect(o, unittest.hasLength(2)); |
526 checkUsageReportsWarnings(o[0]); | 526 checkUsageReportsWarnings(o[0]); |
527 checkUsageReportsWarnings(o[1]); | 527 checkUsageReportsWarnings(o[1]); |
528 } | 528 } |
529 | 529 |
530 core.int buildCounterUsageReports = 0; | 530 core.int buildCounterUsageReports = 0; |
531 buildUsageReports() { | 531 buildUsageReports() { |
532 var o = new api.UsageReports(); | 532 var o = new api.UsageReports(); |
533 buildCounterUsageReports++; | 533 buildCounterUsageReports++; |
534 if (buildCounterUsageReports < 3) { | 534 if (buildCounterUsageReports < 3) { |
535 o.etag = "foo"; | 535 o.etag = "foo"; |
536 o.kind = "foo"; | 536 o.kind = "foo"; |
537 o.nextPageToken = "foo"; | 537 o.nextPageToken = "foo"; |
538 o.usageReports = buildUnnamed583(); | 538 o.usageReports = buildUnnamed590(); |
539 o.warnings = buildUnnamed585(); | 539 o.warnings = buildUnnamed592(); |
540 } | 540 } |
541 buildCounterUsageReports--; | 541 buildCounterUsageReports--; |
542 return o; | 542 return o; |
543 } | 543 } |
544 | 544 |
545 checkUsageReports(api.UsageReports o) { | 545 checkUsageReports(api.UsageReports o) { |
546 buildCounterUsageReports++; | 546 buildCounterUsageReports++; |
547 if (buildCounterUsageReports < 3) { | 547 if (buildCounterUsageReports < 3) { |
548 unittest.expect(o.etag, unittest.equals('foo')); | 548 unittest.expect(o.etag, unittest.equals('foo')); |
549 unittest.expect(o.kind, unittest.equals('foo')); | 549 unittest.expect(o.kind, unittest.equals('foo')); |
550 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 550 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
551 checkUnnamed583(o.usageReports); | 551 checkUnnamed590(o.usageReports); |
552 checkUnnamed585(o.warnings); | 552 checkUnnamed592(o.warnings); |
553 } | 553 } |
554 buildCounterUsageReports--; | 554 buildCounterUsageReports--; |
555 } | 555 } |
556 | 556 |
557 | 557 |
558 main() { | 558 main() { |
559 unittest.group("obj-schema-Activities", () { | 559 unittest.group("obj-schema-Activities", () { |
560 unittest.test("to-json--from-json", () { | 560 unittest.test("to-json--from-json", () { |
561 var o = buildActivities(); | 561 var o = buildActivities(); |
562 var od = new api.Activities.fromJson(o.toJson()); | 562 var od = new api.Activities.fromJson(o.toJson()); |
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 res.get(arg_userKey, arg_date, customerId: arg_customerId, filters: arg_fi
lters, maxResults: arg_maxResults, pageToken: arg_pageToken, parameters: arg_par
ameters).then(unittest.expectAsync(((api.UsageReports response) { | 1005 res.get(arg_userKey, arg_date, customerId: arg_customerId, filters: arg_fi
lters, maxResults: arg_maxResults, pageToken: arg_pageToken, parameters: arg_par
ameters).then(unittest.expectAsync(((api.UsageReports response) { |
1006 checkUsageReports(response); | 1006 checkUsageReports(response); |
1007 }))); | 1007 }))); |
1008 }); | 1008 }); |
1009 | 1009 |
1010 }); | 1010 }); |
1011 | 1011 |
1012 | 1012 |
1013 } | 1013 } |
1014 | 1014 |
OLD | NEW |