| OLD | NEW |
| 1 library googleapis.storagetransfer.v1.test; | 1 library googleapis.storagetransfer.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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 return o; | 126 return o; |
| 127 } | 127 } |
| 128 | 128 |
| 129 checkEmpty(api.Empty o) { | 129 checkEmpty(api.Empty o) { |
| 130 buildCounterEmpty++; | 130 buildCounterEmpty++; |
| 131 if (buildCounterEmpty < 3) { | 131 if (buildCounterEmpty < 3) { |
| 132 } | 132 } |
| 133 buildCounterEmpty--; | 133 buildCounterEmpty--; |
| 134 } | 134 } |
| 135 | 135 |
| 136 buildUnnamed2099() { | 136 buildUnnamed1365() { |
| 137 var o = new core.List<core.String>(); | 137 var o = new core.List<core.String>(); |
| 138 o.add("foo"); | 138 o.add("foo"); |
| 139 o.add("foo"); | 139 o.add("foo"); |
| 140 return o; | 140 return o; |
| 141 } | 141 } |
| 142 | 142 |
| 143 checkUnnamed2099(core.List<core.String> o) { | 143 checkUnnamed1365(core.List<core.String> o) { |
| 144 unittest.expect(o, unittest.hasLength(2)); | 144 unittest.expect(o, unittest.hasLength(2)); |
| 145 unittest.expect(o[0], unittest.equals('foo')); | 145 unittest.expect(o[0], unittest.equals('foo')); |
| 146 unittest.expect(o[1], unittest.equals('foo')); | 146 unittest.expect(o[1], unittest.equals('foo')); |
| 147 } | 147 } |
| 148 | 148 |
| 149 core.int buildCounterErrorLogEntry = 0; | 149 core.int buildCounterErrorLogEntry = 0; |
| 150 buildErrorLogEntry() { | 150 buildErrorLogEntry() { |
| 151 var o = new api.ErrorLogEntry(); | 151 var o = new api.ErrorLogEntry(); |
| 152 buildCounterErrorLogEntry++; | 152 buildCounterErrorLogEntry++; |
| 153 if (buildCounterErrorLogEntry < 3) { | 153 if (buildCounterErrorLogEntry < 3) { |
| 154 o.errorDetails = buildUnnamed2099(); | 154 o.errorDetails = buildUnnamed1365(); |
| 155 o.url = "foo"; | 155 o.url = "foo"; |
| 156 } | 156 } |
| 157 buildCounterErrorLogEntry--; | 157 buildCounterErrorLogEntry--; |
| 158 return o; | 158 return o; |
| 159 } | 159 } |
| 160 | 160 |
| 161 checkErrorLogEntry(api.ErrorLogEntry o) { | 161 checkErrorLogEntry(api.ErrorLogEntry o) { |
| 162 buildCounterErrorLogEntry++; | 162 buildCounterErrorLogEntry++; |
| 163 if (buildCounterErrorLogEntry < 3) { | 163 if (buildCounterErrorLogEntry < 3) { |
| 164 checkUnnamed2099(o.errorDetails); | 164 checkUnnamed1365(o.errorDetails); |
| 165 unittest.expect(o.url, unittest.equals('foo')); | 165 unittest.expect(o.url, unittest.equals('foo')); |
| 166 } | 166 } |
| 167 buildCounterErrorLogEntry--; | 167 buildCounterErrorLogEntry--; |
| 168 } | 168 } |
| 169 | 169 |
| 170 buildUnnamed2100() { | 170 buildUnnamed1366() { |
| 171 var o = new core.List<api.ErrorLogEntry>(); | 171 var o = new core.List<api.ErrorLogEntry>(); |
| 172 o.add(buildErrorLogEntry()); | 172 o.add(buildErrorLogEntry()); |
| 173 o.add(buildErrorLogEntry()); | 173 o.add(buildErrorLogEntry()); |
| 174 return o; | 174 return o; |
| 175 } | 175 } |
| 176 | 176 |
| 177 checkUnnamed2100(core.List<api.ErrorLogEntry> o) { | 177 checkUnnamed1366(core.List<api.ErrorLogEntry> o) { |
| 178 unittest.expect(o, unittest.hasLength(2)); | 178 unittest.expect(o, unittest.hasLength(2)); |
| 179 checkErrorLogEntry(o[0]); | 179 checkErrorLogEntry(o[0]); |
| 180 checkErrorLogEntry(o[1]); | 180 checkErrorLogEntry(o[1]); |
| 181 } | 181 } |
| 182 | 182 |
| 183 core.int buildCounterErrorSummary = 0; | 183 core.int buildCounterErrorSummary = 0; |
| 184 buildErrorSummary() { | 184 buildErrorSummary() { |
| 185 var o = new api.ErrorSummary(); | 185 var o = new api.ErrorSummary(); |
| 186 buildCounterErrorSummary++; | 186 buildCounterErrorSummary++; |
| 187 if (buildCounterErrorSummary < 3) { | 187 if (buildCounterErrorSummary < 3) { |
| 188 o.errorCode = "foo"; | 188 o.errorCode = "foo"; |
| 189 o.errorCount = "foo"; | 189 o.errorCount = "foo"; |
| 190 o.errorLogEntries = buildUnnamed2100(); | 190 o.errorLogEntries = buildUnnamed1366(); |
| 191 } | 191 } |
| 192 buildCounterErrorSummary--; | 192 buildCounterErrorSummary--; |
| 193 return o; | 193 return o; |
| 194 } | 194 } |
| 195 | 195 |
| 196 checkErrorSummary(api.ErrorSummary o) { | 196 checkErrorSummary(api.ErrorSummary o) { |
| 197 buildCounterErrorSummary++; | 197 buildCounterErrorSummary++; |
| 198 if (buildCounterErrorSummary < 3) { | 198 if (buildCounterErrorSummary < 3) { |
| 199 unittest.expect(o.errorCode, unittest.equals('foo')); | 199 unittest.expect(o.errorCode, unittest.equals('foo')); |
| 200 unittest.expect(o.errorCount, unittest.equals('foo')); | 200 unittest.expect(o.errorCount, unittest.equals('foo')); |
| 201 checkUnnamed2100(o.errorLogEntries); | 201 checkUnnamed1366(o.errorLogEntries); |
| 202 } | 202 } |
| 203 buildCounterErrorSummary--; | 203 buildCounterErrorSummary--; |
| 204 } | 204 } |
| 205 | 205 |
| 206 core.int buildCounterGcsData = 0; | 206 core.int buildCounterGcsData = 0; |
| 207 buildGcsData() { | 207 buildGcsData() { |
| 208 var o = new api.GcsData(); | 208 var o = new api.GcsData(); |
| 209 buildCounterGcsData++; | 209 buildCounterGcsData++; |
| 210 if (buildCounterGcsData < 3) { | 210 if (buildCounterGcsData < 3) { |
| 211 o.bucketName = "foo"; | 211 o.bucketName = "foo"; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 } | 253 } |
| 254 | 254 |
| 255 checkHttpData(api.HttpData o) { | 255 checkHttpData(api.HttpData o) { |
| 256 buildCounterHttpData++; | 256 buildCounterHttpData++; |
| 257 if (buildCounterHttpData < 3) { | 257 if (buildCounterHttpData < 3) { |
| 258 unittest.expect(o.listUrl, unittest.equals('foo')); | 258 unittest.expect(o.listUrl, unittest.equals('foo')); |
| 259 } | 259 } |
| 260 buildCounterHttpData--; | 260 buildCounterHttpData--; |
| 261 } | 261 } |
| 262 | 262 |
| 263 buildUnnamed2101() { | 263 buildUnnamed1367() { |
| 264 var o = new core.List<api.Operation>(); | 264 var o = new core.List<api.Operation>(); |
| 265 o.add(buildOperation()); | 265 o.add(buildOperation()); |
| 266 o.add(buildOperation()); | 266 o.add(buildOperation()); |
| 267 return o; | 267 return o; |
| 268 } | 268 } |
| 269 | 269 |
| 270 checkUnnamed2101(core.List<api.Operation> o) { | 270 checkUnnamed1367(core.List<api.Operation> o) { |
| 271 unittest.expect(o, unittest.hasLength(2)); | 271 unittest.expect(o, unittest.hasLength(2)); |
| 272 checkOperation(o[0]); | 272 checkOperation(o[0]); |
| 273 checkOperation(o[1]); | 273 checkOperation(o[1]); |
| 274 } | 274 } |
| 275 | 275 |
| 276 core.int buildCounterListOperationsResponse = 0; | 276 core.int buildCounterListOperationsResponse = 0; |
| 277 buildListOperationsResponse() { | 277 buildListOperationsResponse() { |
| 278 var o = new api.ListOperationsResponse(); | 278 var o = new api.ListOperationsResponse(); |
| 279 buildCounterListOperationsResponse++; | 279 buildCounterListOperationsResponse++; |
| 280 if (buildCounterListOperationsResponse < 3) { | 280 if (buildCounterListOperationsResponse < 3) { |
| 281 o.nextPageToken = "foo"; | 281 o.nextPageToken = "foo"; |
| 282 o.operations = buildUnnamed2101(); | 282 o.operations = buildUnnamed1367(); |
| 283 } | 283 } |
| 284 buildCounterListOperationsResponse--; | 284 buildCounterListOperationsResponse--; |
| 285 return o; | 285 return o; |
| 286 } | 286 } |
| 287 | 287 |
| 288 checkListOperationsResponse(api.ListOperationsResponse o) { | 288 checkListOperationsResponse(api.ListOperationsResponse o) { |
| 289 buildCounterListOperationsResponse++; | 289 buildCounterListOperationsResponse++; |
| 290 if (buildCounterListOperationsResponse < 3) { | 290 if (buildCounterListOperationsResponse < 3) { |
| 291 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 291 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 292 checkUnnamed2101(o.operations); | 292 checkUnnamed1367(o.operations); |
| 293 } | 293 } |
| 294 buildCounterListOperationsResponse--; | 294 buildCounterListOperationsResponse--; |
| 295 } | 295 } |
| 296 | 296 |
| 297 buildUnnamed2102() { | 297 buildUnnamed1368() { |
| 298 var o = new core.List<api.TransferJob>(); | 298 var o = new core.List<api.TransferJob>(); |
| 299 o.add(buildTransferJob()); | 299 o.add(buildTransferJob()); |
| 300 o.add(buildTransferJob()); | 300 o.add(buildTransferJob()); |
| 301 return o; | 301 return o; |
| 302 } | 302 } |
| 303 | 303 |
| 304 checkUnnamed2102(core.List<api.TransferJob> o) { | 304 checkUnnamed1368(core.List<api.TransferJob> o) { |
| 305 unittest.expect(o, unittest.hasLength(2)); | 305 unittest.expect(o, unittest.hasLength(2)); |
| 306 checkTransferJob(o[0]); | 306 checkTransferJob(o[0]); |
| 307 checkTransferJob(o[1]); | 307 checkTransferJob(o[1]); |
| 308 } | 308 } |
| 309 | 309 |
| 310 core.int buildCounterListTransferJobsResponse = 0; | 310 core.int buildCounterListTransferJobsResponse = 0; |
| 311 buildListTransferJobsResponse() { | 311 buildListTransferJobsResponse() { |
| 312 var o = new api.ListTransferJobsResponse(); | 312 var o = new api.ListTransferJobsResponse(); |
| 313 buildCounterListTransferJobsResponse++; | 313 buildCounterListTransferJobsResponse++; |
| 314 if (buildCounterListTransferJobsResponse < 3) { | 314 if (buildCounterListTransferJobsResponse < 3) { |
| 315 o.nextPageToken = "foo"; | 315 o.nextPageToken = "foo"; |
| 316 o.transferJobs = buildUnnamed2102(); | 316 o.transferJobs = buildUnnamed1368(); |
| 317 } | 317 } |
| 318 buildCounterListTransferJobsResponse--; | 318 buildCounterListTransferJobsResponse--; |
| 319 return o; | 319 return o; |
| 320 } | 320 } |
| 321 | 321 |
| 322 checkListTransferJobsResponse(api.ListTransferJobsResponse o) { | 322 checkListTransferJobsResponse(api.ListTransferJobsResponse o) { |
| 323 buildCounterListTransferJobsResponse++; | 323 buildCounterListTransferJobsResponse++; |
| 324 if (buildCounterListTransferJobsResponse < 3) { | 324 if (buildCounterListTransferJobsResponse < 3) { |
| 325 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 325 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 326 checkUnnamed2102(o.transferJobs); | 326 checkUnnamed1368(o.transferJobs); |
| 327 } | 327 } |
| 328 buildCounterListTransferJobsResponse--; | 328 buildCounterListTransferJobsResponse--; |
| 329 } | 329 } |
| 330 | 330 |
| 331 buildUnnamed2103() { | 331 buildUnnamed1369() { |
| 332 var o = new core.List<core.String>(); | 332 var o = new core.List<core.String>(); |
| 333 o.add("foo"); | 333 o.add("foo"); |
| 334 o.add("foo"); | 334 o.add("foo"); |
| 335 return o; | 335 return o; |
| 336 } | 336 } |
| 337 | 337 |
| 338 checkUnnamed2103(core.List<core.String> o) { | 338 checkUnnamed1369(core.List<core.String> o) { |
| 339 unittest.expect(o, unittest.hasLength(2)); | 339 unittest.expect(o, unittest.hasLength(2)); |
| 340 unittest.expect(o[0], unittest.equals('foo')); | 340 unittest.expect(o[0], unittest.equals('foo')); |
| 341 unittest.expect(o[1], unittest.equals('foo')); | 341 unittest.expect(o[1], unittest.equals('foo')); |
| 342 } | 342 } |
| 343 | 343 |
| 344 buildUnnamed2104() { | 344 buildUnnamed1370() { |
| 345 var o = new core.List<core.String>(); | 345 var o = new core.List<core.String>(); |
| 346 o.add("foo"); | 346 o.add("foo"); |
| 347 o.add("foo"); | 347 o.add("foo"); |
| 348 return o; | 348 return o; |
| 349 } | 349 } |
| 350 | 350 |
| 351 checkUnnamed2104(core.List<core.String> o) { | 351 checkUnnamed1370(core.List<core.String> o) { |
| 352 unittest.expect(o, unittest.hasLength(2)); | 352 unittest.expect(o, unittest.hasLength(2)); |
| 353 unittest.expect(o[0], unittest.equals('foo')); | 353 unittest.expect(o[0], unittest.equals('foo')); |
| 354 unittest.expect(o[1], unittest.equals('foo')); | 354 unittest.expect(o[1], unittest.equals('foo')); |
| 355 } | 355 } |
| 356 | 356 |
| 357 core.int buildCounterObjectConditions = 0; | 357 core.int buildCounterObjectConditions = 0; |
| 358 buildObjectConditions() { | 358 buildObjectConditions() { |
| 359 var o = new api.ObjectConditions(); | 359 var o = new api.ObjectConditions(); |
| 360 buildCounterObjectConditions++; | 360 buildCounterObjectConditions++; |
| 361 if (buildCounterObjectConditions < 3) { | 361 if (buildCounterObjectConditions < 3) { |
| 362 o.excludePrefixes = buildUnnamed2103(); | 362 o.excludePrefixes = buildUnnamed1369(); |
| 363 o.includePrefixes = buildUnnamed2104(); | 363 o.includePrefixes = buildUnnamed1370(); |
| 364 o.maxTimeElapsedSinceLastModification = "foo"; | 364 o.maxTimeElapsedSinceLastModification = "foo"; |
| 365 o.minTimeElapsedSinceLastModification = "foo"; | 365 o.minTimeElapsedSinceLastModification = "foo"; |
| 366 } | 366 } |
| 367 buildCounterObjectConditions--; | 367 buildCounterObjectConditions--; |
| 368 return o; | 368 return o; |
| 369 } | 369 } |
| 370 | 370 |
| 371 checkObjectConditions(api.ObjectConditions o) { | 371 checkObjectConditions(api.ObjectConditions o) { |
| 372 buildCounterObjectConditions++; | 372 buildCounterObjectConditions++; |
| 373 if (buildCounterObjectConditions < 3) { | 373 if (buildCounterObjectConditions < 3) { |
| 374 checkUnnamed2103(o.excludePrefixes); | 374 checkUnnamed1369(o.excludePrefixes); |
| 375 checkUnnamed2104(o.includePrefixes); | 375 checkUnnamed1370(o.includePrefixes); |
| 376 unittest.expect(o.maxTimeElapsedSinceLastModification, unittest.equals('foo'
)); | 376 unittest.expect(o.maxTimeElapsedSinceLastModification, unittest.equals('foo'
)); |
| 377 unittest.expect(o.minTimeElapsedSinceLastModification, unittest.equals('foo'
)); | 377 unittest.expect(o.minTimeElapsedSinceLastModification, unittest.equals('foo'
)); |
| 378 } | 378 } |
| 379 buildCounterObjectConditions--; | 379 buildCounterObjectConditions--; |
| 380 } | 380 } |
| 381 | 381 |
| 382 buildUnnamed2105() { | 382 buildUnnamed1371() { |
| 383 var o = new core.Map<core.String, core.Object>(); | 383 var o = new core.Map<core.String, core.Object>(); |
| 384 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 384 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 385 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 385 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 386 return o; | 386 return o; |
| 387 } | 387 } |
| 388 | 388 |
| 389 checkUnnamed2105(core.Map<core.String, core.Object> o) { | 389 checkUnnamed1371(core.Map<core.String, core.Object> o) { |
| 390 unittest.expect(o, unittest.hasLength(2)); | 390 unittest.expect(o, unittest.hasLength(2)); |
| 391 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')); | 391 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')); |
| 392 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')); | 392 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')); |
| 393 } | 393 } |
| 394 | 394 |
| 395 buildUnnamed2106() { | 395 buildUnnamed1372() { |
| 396 var o = new core.Map<core.String, core.Object>(); | 396 var o = new core.Map<core.String, core.Object>(); |
| 397 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 397 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 398 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 398 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 399 return o; | 399 return o; |
| 400 } | 400 } |
| 401 | 401 |
| 402 checkUnnamed2106(core.Map<core.String, core.Object> o) { | 402 checkUnnamed1372(core.Map<core.String, core.Object> o) { |
| 403 unittest.expect(o, unittest.hasLength(2)); | 403 unittest.expect(o, unittest.hasLength(2)); |
| 404 var casted3 = (o["x"]) as core.Map; unittest.expect(casted3, unittest.hasLengt
h(3)); unittest.expect(casted3["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted3["bool"], unittest.equals(true)); unittest.expect(casted3["string"],
unittest.equals('foo')); | 404 var casted3 = (o["x"]) as core.Map; unittest.expect(casted3, unittest.hasLengt
h(3)); unittest.expect(casted3["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted3["bool"], unittest.equals(true)); unittest.expect(casted3["string"],
unittest.equals('foo')); |
| 405 var casted4 = (o["y"]) as core.Map; unittest.expect(casted4, unittest.hasLengt
h(3)); unittest.expect(casted4["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted4["bool"], unittest.equals(true)); unittest.expect(casted4["string"],
unittest.equals('foo')); | 405 var casted4 = (o["y"]) as core.Map; unittest.expect(casted4, unittest.hasLengt
h(3)); unittest.expect(casted4["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted4["bool"], unittest.equals(true)); unittest.expect(casted4["string"],
unittest.equals('foo')); |
| 406 } | 406 } |
| 407 | 407 |
| 408 core.int buildCounterOperation = 0; | 408 core.int buildCounterOperation = 0; |
| 409 buildOperation() { | 409 buildOperation() { |
| 410 var o = new api.Operation(); | 410 var o = new api.Operation(); |
| 411 buildCounterOperation++; | 411 buildCounterOperation++; |
| 412 if (buildCounterOperation < 3) { | 412 if (buildCounterOperation < 3) { |
| 413 o.done = true; | 413 o.done = true; |
| 414 o.error = buildStatus(); | 414 o.error = buildStatus(); |
| 415 o.metadata = buildUnnamed2105(); | 415 o.metadata = buildUnnamed1371(); |
| 416 o.name = "foo"; | 416 o.name = "foo"; |
| 417 o.response = buildUnnamed2106(); | 417 o.response = buildUnnamed1372(); |
| 418 } | 418 } |
| 419 buildCounterOperation--; | 419 buildCounterOperation--; |
| 420 return o; | 420 return o; |
| 421 } | 421 } |
| 422 | 422 |
| 423 checkOperation(api.Operation o) { | 423 checkOperation(api.Operation o) { |
| 424 buildCounterOperation++; | 424 buildCounterOperation++; |
| 425 if (buildCounterOperation < 3) { | 425 if (buildCounterOperation < 3) { |
| 426 unittest.expect(o.done, unittest.isTrue); | 426 unittest.expect(o.done, unittest.isTrue); |
| 427 checkStatus(o.error); | 427 checkStatus(o.error); |
| 428 checkUnnamed2105(o.metadata); | 428 checkUnnamed1371(o.metadata); |
| 429 unittest.expect(o.name, unittest.equals('foo')); | 429 unittest.expect(o.name, unittest.equals('foo')); |
| 430 checkUnnamed2106(o.response); | 430 checkUnnamed1372(o.response); |
| 431 } | 431 } |
| 432 buildCounterOperation--; | 432 buildCounterOperation--; |
| 433 } | 433 } |
| 434 | 434 |
| 435 core.int buildCounterPauseTransferOperationRequest = 0; | 435 core.int buildCounterPauseTransferOperationRequest = 0; |
| 436 buildPauseTransferOperationRequest() { | 436 buildPauseTransferOperationRequest() { |
| 437 var o = new api.PauseTransferOperationRequest(); | 437 var o = new api.PauseTransferOperationRequest(); |
| 438 buildCounterPauseTransferOperationRequest++; | 438 buildCounterPauseTransferOperationRequest++; |
| 439 if (buildCounterPauseTransferOperationRequest < 3) { | 439 if (buildCounterPauseTransferOperationRequest < 3) { |
| 440 } | 440 } |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 checkSchedule(api.Schedule o) { | 482 checkSchedule(api.Schedule o) { |
| 483 buildCounterSchedule++; | 483 buildCounterSchedule++; |
| 484 if (buildCounterSchedule < 3) { | 484 if (buildCounterSchedule < 3) { |
| 485 checkDate(o.scheduleEndDate); | 485 checkDate(o.scheduleEndDate); |
| 486 checkDate(o.scheduleStartDate); | 486 checkDate(o.scheduleStartDate); |
| 487 checkTimeOfDay(o.startTimeOfDay); | 487 checkTimeOfDay(o.startTimeOfDay); |
| 488 } | 488 } |
| 489 buildCounterSchedule--; | 489 buildCounterSchedule--; |
| 490 } | 490 } |
| 491 | 491 |
| 492 buildUnnamed2107() { | 492 buildUnnamed1373() { |
| 493 var o = new core.Map<core.String, core.Object>(); | 493 var o = new core.Map<core.String, core.Object>(); |
| 494 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 494 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 495 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 495 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 496 return o; | 496 return o; |
| 497 } | 497 } |
| 498 | 498 |
| 499 checkUnnamed2107(core.Map<core.String, core.Object> o) { | 499 checkUnnamed1373(core.Map<core.String, core.Object> o) { |
| 500 unittest.expect(o, unittest.hasLength(2)); | 500 unittest.expect(o, unittest.hasLength(2)); |
| 501 var casted5 = (o["x"]) as core.Map; unittest.expect(casted5, unittest.hasLengt
h(3)); unittest.expect(casted5["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted5["bool"], unittest.equals(true)); unittest.expect(casted5["string"],
unittest.equals('foo')); | 501 var casted5 = (o["x"]) as core.Map; unittest.expect(casted5, unittest.hasLengt
h(3)); unittest.expect(casted5["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted5["bool"], unittest.equals(true)); unittest.expect(casted5["string"],
unittest.equals('foo')); |
| 502 var casted6 = (o["y"]) as core.Map; unittest.expect(casted6, unittest.hasLengt
h(3)); unittest.expect(casted6["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted6["bool"], unittest.equals(true)); unittest.expect(casted6["string"],
unittest.equals('foo')); | 502 var casted6 = (o["y"]) as core.Map; unittest.expect(casted6, unittest.hasLengt
h(3)); unittest.expect(casted6["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted6["bool"], unittest.equals(true)); unittest.expect(casted6["string"],
unittest.equals('foo')); |
| 503 } | 503 } |
| 504 | 504 |
| 505 buildUnnamed2108() { | 505 buildUnnamed1374() { |
| 506 var o = new core.List<core.Map<core.String, core.Object>>(); | 506 var o = new core.List<core.Map<core.String, core.Object>>(); |
| 507 o.add(buildUnnamed2107()); | 507 o.add(buildUnnamed1373()); |
| 508 o.add(buildUnnamed2107()); | 508 o.add(buildUnnamed1373()); |
| 509 return o; | 509 return o; |
| 510 } | 510 } |
| 511 | 511 |
| 512 checkUnnamed2108(core.List<core.Map<core.String, core.Object>> o) { | 512 checkUnnamed1374(core.List<core.Map<core.String, core.Object>> o) { |
| 513 unittest.expect(o, unittest.hasLength(2)); | 513 unittest.expect(o, unittest.hasLength(2)); |
| 514 checkUnnamed2107(o[0]); | 514 checkUnnamed1373(o[0]); |
| 515 checkUnnamed2107(o[1]); | 515 checkUnnamed1373(o[1]); |
| 516 } | 516 } |
| 517 | 517 |
| 518 core.int buildCounterStatus = 0; | 518 core.int buildCounterStatus = 0; |
| 519 buildStatus() { | 519 buildStatus() { |
| 520 var o = new api.Status(); | 520 var o = new api.Status(); |
| 521 buildCounterStatus++; | 521 buildCounterStatus++; |
| 522 if (buildCounterStatus < 3) { | 522 if (buildCounterStatus < 3) { |
| 523 o.code = 42; | 523 o.code = 42; |
| 524 o.details = buildUnnamed2108(); | 524 o.details = buildUnnamed1374(); |
| 525 o.message = "foo"; | 525 o.message = "foo"; |
| 526 } | 526 } |
| 527 buildCounterStatus--; | 527 buildCounterStatus--; |
| 528 return o; | 528 return o; |
| 529 } | 529 } |
| 530 | 530 |
| 531 checkStatus(api.Status o) { | 531 checkStatus(api.Status o) { |
| 532 buildCounterStatus++; | 532 buildCounterStatus++; |
| 533 if (buildCounterStatus < 3) { | 533 if (buildCounterStatus < 3) { |
| 534 unittest.expect(o.code, unittest.equals(42)); | 534 unittest.expect(o.code, unittest.equals(42)); |
| 535 checkUnnamed2108(o.details); | 535 checkUnnamed1374(o.details); |
| 536 unittest.expect(o.message, unittest.equals('foo')); | 536 unittest.expect(o.message, unittest.equals('foo')); |
| 537 } | 537 } |
| 538 buildCounterStatus--; | 538 buildCounterStatus--; |
| 539 } | 539 } |
| 540 | 540 |
| 541 core.int buildCounterTimeOfDay = 0; | 541 core.int buildCounterTimeOfDay = 0; |
| 542 buildTimeOfDay() { | 542 buildTimeOfDay() { |
| 543 var o = new api.TimeOfDay(); | 543 var o = new api.TimeOfDay(); |
| 544 buildCounterTimeOfDay++; | 544 buildCounterTimeOfDay++; |
| 545 if (buildCounterTimeOfDay < 3) { | 545 if (buildCounterTimeOfDay < 3) { |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 unittest.expect(o.lastModificationTime, unittest.equals('foo')); | 640 unittest.expect(o.lastModificationTime, unittest.equals('foo')); |
| 641 unittest.expect(o.name, unittest.equals('foo')); | 641 unittest.expect(o.name, unittest.equals('foo')); |
| 642 unittest.expect(o.projectId, unittest.equals('foo')); | 642 unittest.expect(o.projectId, unittest.equals('foo')); |
| 643 checkSchedule(o.schedule); | 643 checkSchedule(o.schedule); |
| 644 unittest.expect(o.status, unittest.equals('foo')); | 644 unittest.expect(o.status, unittest.equals('foo')); |
| 645 checkTransferSpec(o.transferSpec); | 645 checkTransferSpec(o.transferSpec); |
| 646 } | 646 } |
| 647 buildCounterTransferJob--; | 647 buildCounterTransferJob--; |
| 648 } | 648 } |
| 649 | 649 |
| 650 buildUnnamed2109() { | 650 buildUnnamed1375() { |
| 651 var o = new core.List<api.ErrorSummary>(); | 651 var o = new core.List<api.ErrorSummary>(); |
| 652 o.add(buildErrorSummary()); | 652 o.add(buildErrorSummary()); |
| 653 o.add(buildErrorSummary()); | 653 o.add(buildErrorSummary()); |
| 654 return o; | 654 return o; |
| 655 } | 655 } |
| 656 | 656 |
| 657 checkUnnamed2109(core.List<api.ErrorSummary> o) { | 657 checkUnnamed1375(core.List<api.ErrorSummary> o) { |
| 658 unittest.expect(o, unittest.hasLength(2)); | 658 unittest.expect(o, unittest.hasLength(2)); |
| 659 checkErrorSummary(o[0]); | 659 checkErrorSummary(o[0]); |
| 660 checkErrorSummary(o[1]); | 660 checkErrorSummary(o[1]); |
| 661 } | 661 } |
| 662 | 662 |
| 663 core.int buildCounterTransferOperation = 0; | 663 core.int buildCounterTransferOperation = 0; |
| 664 buildTransferOperation() { | 664 buildTransferOperation() { |
| 665 var o = new api.TransferOperation(); | 665 var o = new api.TransferOperation(); |
| 666 buildCounterTransferOperation++; | 666 buildCounterTransferOperation++; |
| 667 if (buildCounterTransferOperation < 3) { | 667 if (buildCounterTransferOperation < 3) { |
| 668 o.counters = buildTransferCounters(); | 668 o.counters = buildTransferCounters(); |
| 669 o.endTime = "foo"; | 669 o.endTime = "foo"; |
| 670 o.errorBreakdowns = buildUnnamed2109(); | 670 o.errorBreakdowns = buildUnnamed1375(); |
| 671 o.name = "foo"; | 671 o.name = "foo"; |
| 672 o.projectId = "foo"; | 672 o.projectId = "foo"; |
| 673 o.startTime = "foo"; | 673 o.startTime = "foo"; |
| 674 o.status = "foo"; | 674 o.status = "foo"; |
| 675 o.transferJobName = "foo"; | 675 o.transferJobName = "foo"; |
| 676 o.transferSpec = buildTransferSpec(); | 676 o.transferSpec = buildTransferSpec(); |
| 677 } | 677 } |
| 678 buildCounterTransferOperation--; | 678 buildCounterTransferOperation--; |
| 679 return o; | 679 return o; |
| 680 } | 680 } |
| 681 | 681 |
| 682 checkTransferOperation(api.TransferOperation o) { | 682 checkTransferOperation(api.TransferOperation o) { |
| 683 buildCounterTransferOperation++; | 683 buildCounterTransferOperation++; |
| 684 if (buildCounterTransferOperation < 3) { | 684 if (buildCounterTransferOperation < 3) { |
| 685 checkTransferCounters(o.counters); | 685 checkTransferCounters(o.counters); |
| 686 unittest.expect(o.endTime, unittest.equals('foo')); | 686 unittest.expect(o.endTime, unittest.equals('foo')); |
| 687 checkUnnamed2109(o.errorBreakdowns); | 687 checkUnnamed1375(o.errorBreakdowns); |
| 688 unittest.expect(o.name, unittest.equals('foo')); | 688 unittest.expect(o.name, unittest.equals('foo')); |
| 689 unittest.expect(o.projectId, unittest.equals('foo')); | 689 unittest.expect(o.projectId, unittest.equals('foo')); |
| 690 unittest.expect(o.startTime, unittest.equals('foo')); | 690 unittest.expect(o.startTime, unittest.equals('foo')); |
| 691 unittest.expect(o.status, unittest.equals('foo')); | 691 unittest.expect(o.status, unittest.equals('foo')); |
| 692 unittest.expect(o.transferJobName, unittest.equals('foo')); | 692 unittest.expect(o.transferJobName, unittest.equals('foo')); |
| 693 checkTransferSpec(o.transferSpec); | 693 checkTransferSpec(o.transferSpec); |
| 694 } | 694 } |
| 695 buildCounterTransferOperation--; | 695 buildCounterTransferOperation--; |
| 696 } | 696 } |
| 697 | 697 |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1567 res.getGoogleServiceAccount(projectId: arg_projectId).then(unittest.expect
Async(((api.GoogleServiceAccount response) { | 1567 res.getGoogleServiceAccount(projectId: arg_projectId).then(unittest.expect
Async(((api.GoogleServiceAccount response) { |
| 1568 checkGoogleServiceAccount(response); | 1568 checkGoogleServiceAccount(response); |
| 1569 }))); | 1569 }))); |
| 1570 }); | 1570 }); |
| 1571 | 1571 |
| 1572 }); | 1572 }); |
| 1573 | 1573 |
| 1574 | 1574 |
| 1575 } | 1575 } |
| 1576 | 1576 |
| OLD | NEW |