| OLD | NEW |
| 1 library googleapis.identitytoolkit.v3.test; | 1 library googleapis.identitytoolkit.v3.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 buildUnnamed2431() { | 54 buildUnnamed2785() { |
| 55 var o = new core.List<core.String>(); | 55 var o = new core.List<core.String>(); |
| 56 o.add("foo"); | 56 o.add("foo"); |
| 57 o.add("foo"); | 57 o.add("foo"); |
| 58 return o; | 58 return o; |
| 59 } | 59 } |
| 60 | 60 |
| 61 checkUnnamed2431(core.List<core.String> o) { | 61 checkUnnamed2785(core.List<core.String> o) { |
| 62 unittest.expect(o, unittest.hasLength(2)); | 62 unittest.expect(o, unittest.hasLength(2)); |
| 63 unittest.expect(o[0], unittest.equals('foo')); | 63 unittest.expect(o[0], unittest.equals('foo')); |
| 64 unittest.expect(o[1], unittest.equals('foo')); | 64 unittest.expect(o[1], unittest.equals('foo')); |
| 65 } | 65 } |
| 66 | 66 |
| 67 core.int buildCounterCreateAuthUriResponse = 0; | 67 core.int buildCounterCreateAuthUriResponse = 0; |
| 68 buildCreateAuthUriResponse() { | 68 buildCreateAuthUriResponse() { |
| 69 var o = new api.CreateAuthUriResponse(); | 69 var o = new api.CreateAuthUriResponse(); |
| 70 buildCounterCreateAuthUriResponse++; | 70 buildCounterCreateAuthUriResponse++; |
| 71 if (buildCounterCreateAuthUriResponse < 3) { | 71 if (buildCounterCreateAuthUriResponse < 3) { |
| 72 o.allProviders = buildUnnamed2431(); | 72 o.allProviders = buildUnnamed2785(); |
| 73 o.authUri = "foo"; | 73 o.authUri = "foo"; |
| 74 o.captchaRequired = true; | 74 o.captchaRequired = true; |
| 75 o.forExistingProvider = true; | 75 o.forExistingProvider = true; |
| 76 o.kind = "foo"; | 76 o.kind = "foo"; |
| 77 o.providerId = "foo"; | 77 o.providerId = "foo"; |
| 78 o.registered = true; | 78 o.registered = true; |
| 79 o.sessionId = "foo"; | 79 o.sessionId = "foo"; |
| 80 } | 80 } |
| 81 buildCounterCreateAuthUriResponse--; | 81 buildCounterCreateAuthUriResponse--; |
| 82 return o; | 82 return o; |
| 83 } | 83 } |
| 84 | 84 |
| 85 checkCreateAuthUriResponse(api.CreateAuthUriResponse o) { | 85 checkCreateAuthUriResponse(api.CreateAuthUriResponse o) { |
| 86 buildCounterCreateAuthUriResponse++; | 86 buildCounterCreateAuthUriResponse++; |
| 87 if (buildCounterCreateAuthUriResponse < 3) { | 87 if (buildCounterCreateAuthUriResponse < 3) { |
| 88 checkUnnamed2431(o.allProviders); | 88 checkUnnamed2785(o.allProviders); |
| 89 unittest.expect(o.authUri, unittest.equals('foo')); | 89 unittest.expect(o.authUri, unittest.equals('foo')); |
| 90 unittest.expect(o.captchaRequired, unittest.isTrue); | 90 unittest.expect(o.captchaRequired, unittest.isTrue); |
| 91 unittest.expect(o.forExistingProvider, unittest.isTrue); | 91 unittest.expect(o.forExistingProvider, unittest.isTrue); |
| 92 unittest.expect(o.kind, unittest.equals('foo')); | 92 unittest.expect(o.kind, unittest.equals('foo')); |
| 93 unittest.expect(o.providerId, unittest.equals('foo')); | 93 unittest.expect(o.providerId, unittest.equals('foo')); |
| 94 unittest.expect(o.registered, unittest.isTrue); | 94 unittest.expect(o.registered, unittest.isTrue); |
| 95 unittest.expect(o.sessionId, unittest.equals('foo')); | 95 unittest.expect(o.sessionId, unittest.equals('foo')); |
| 96 } | 96 } |
| 97 buildCounterCreateAuthUriResponse--; | 97 buildCounterCreateAuthUriResponse--; |
| 98 } | 98 } |
| (...skipping 10 matching lines...) Expand all Loading... |
| 109 } | 109 } |
| 110 | 110 |
| 111 checkDeleteAccountResponse(api.DeleteAccountResponse o) { | 111 checkDeleteAccountResponse(api.DeleteAccountResponse o) { |
| 112 buildCounterDeleteAccountResponse++; | 112 buildCounterDeleteAccountResponse++; |
| 113 if (buildCounterDeleteAccountResponse < 3) { | 113 if (buildCounterDeleteAccountResponse < 3) { |
| 114 unittest.expect(o.kind, unittest.equals('foo')); | 114 unittest.expect(o.kind, unittest.equals('foo')); |
| 115 } | 115 } |
| 116 buildCounterDeleteAccountResponse--; | 116 buildCounterDeleteAccountResponse--; |
| 117 } | 117 } |
| 118 | 118 |
| 119 buildUnnamed2432() { | 119 buildUnnamed2786() { |
| 120 var o = new core.List<api.UserInfo>(); | 120 var o = new core.List<api.UserInfo>(); |
| 121 o.add(buildUserInfo()); | 121 o.add(buildUserInfo()); |
| 122 o.add(buildUserInfo()); | 122 o.add(buildUserInfo()); |
| 123 return o; | 123 return o; |
| 124 } | 124 } |
| 125 | 125 |
| 126 checkUnnamed2432(core.List<api.UserInfo> o) { | 126 checkUnnamed2786(core.List<api.UserInfo> o) { |
| 127 unittest.expect(o, unittest.hasLength(2)); | 127 unittest.expect(o, unittest.hasLength(2)); |
| 128 checkUserInfo(o[0]); | 128 checkUserInfo(o[0]); |
| 129 checkUserInfo(o[1]); | 129 checkUserInfo(o[1]); |
| 130 } | 130 } |
| 131 | 131 |
| 132 core.int buildCounterDownloadAccountResponse = 0; | 132 core.int buildCounterDownloadAccountResponse = 0; |
| 133 buildDownloadAccountResponse() { | 133 buildDownloadAccountResponse() { |
| 134 var o = new api.DownloadAccountResponse(); | 134 var o = new api.DownloadAccountResponse(); |
| 135 buildCounterDownloadAccountResponse++; | 135 buildCounterDownloadAccountResponse++; |
| 136 if (buildCounterDownloadAccountResponse < 3) { | 136 if (buildCounterDownloadAccountResponse < 3) { |
| 137 o.kind = "foo"; | 137 o.kind = "foo"; |
| 138 o.nextPageToken = "foo"; | 138 o.nextPageToken = "foo"; |
| 139 o.users = buildUnnamed2432(); | 139 o.users = buildUnnamed2786(); |
| 140 } | 140 } |
| 141 buildCounterDownloadAccountResponse--; | 141 buildCounterDownloadAccountResponse--; |
| 142 return o; | 142 return o; |
| 143 } | 143 } |
| 144 | 144 |
| 145 checkDownloadAccountResponse(api.DownloadAccountResponse o) { | 145 checkDownloadAccountResponse(api.DownloadAccountResponse o) { |
| 146 buildCounterDownloadAccountResponse++; | 146 buildCounterDownloadAccountResponse++; |
| 147 if (buildCounterDownloadAccountResponse < 3) { | 147 if (buildCounterDownloadAccountResponse < 3) { |
| 148 unittest.expect(o.kind, unittest.equals('foo')); | 148 unittest.expect(o.kind, unittest.equals('foo')); |
| 149 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 149 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 150 checkUnnamed2432(o.users); | 150 checkUnnamed2786(o.users); |
| 151 } | 151 } |
| 152 buildCounterDownloadAccountResponse--; | 152 buildCounterDownloadAccountResponse--; |
| 153 } | 153 } |
| 154 | 154 |
| 155 core.int buildCounterEmailTemplate = 0; | 155 core.int buildCounterEmailTemplate = 0; |
| 156 buildEmailTemplate() { | 156 buildEmailTemplate() { |
| 157 var o = new api.EmailTemplate(); | 157 var o = new api.EmailTemplate(); |
| 158 buildCounterEmailTemplate++; | 158 buildCounterEmailTemplate++; |
| 159 if (buildCounterEmailTemplate < 3) { | 159 if (buildCounterEmailTemplate < 3) { |
| 160 o.body = "foo"; | 160 o.body = "foo"; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 174 unittest.expect(o.body, unittest.equals('foo')); | 174 unittest.expect(o.body, unittest.equals('foo')); |
| 175 unittest.expect(o.format, unittest.equals('foo')); | 175 unittest.expect(o.format, unittest.equals('foo')); |
| 176 unittest.expect(o.from, unittest.equals('foo')); | 176 unittest.expect(o.from, unittest.equals('foo')); |
| 177 unittest.expect(o.fromDisplayName, unittest.equals('foo')); | 177 unittest.expect(o.fromDisplayName, unittest.equals('foo')); |
| 178 unittest.expect(o.replyTo, unittest.equals('foo')); | 178 unittest.expect(o.replyTo, unittest.equals('foo')); |
| 179 unittest.expect(o.subject, unittest.equals('foo')); | 179 unittest.expect(o.subject, unittest.equals('foo')); |
| 180 } | 180 } |
| 181 buildCounterEmailTemplate--; | 181 buildCounterEmailTemplate--; |
| 182 } | 182 } |
| 183 | 183 |
| 184 buildUnnamed2433() { | 184 buildUnnamed2787() { |
| 185 var o = new core.List<api.UserInfo>(); | 185 var o = new core.List<api.UserInfo>(); |
| 186 o.add(buildUserInfo()); | 186 o.add(buildUserInfo()); |
| 187 o.add(buildUserInfo()); | 187 o.add(buildUserInfo()); |
| 188 return o; | 188 return o; |
| 189 } | 189 } |
| 190 | 190 |
| 191 checkUnnamed2433(core.List<api.UserInfo> o) { | 191 checkUnnamed2787(core.List<api.UserInfo> o) { |
| 192 unittest.expect(o, unittest.hasLength(2)); | 192 unittest.expect(o, unittest.hasLength(2)); |
| 193 checkUserInfo(o[0]); | 193 checkUserInfo(o[0]); |
| 194 checkUserInfo(o[1]); | 194 checkUserInfo(o[1]); |
| 195 } | 195 } |
| 196 | 196 |
| 197 core.int buildCounterGetAccountInfoResponse = 0; | 197 core.int buildCounterGetAccountInfoResponse = 0; |
| 198 buildGetAccountInfoResponse() { | 198 buildGetAccountInfoResponse() { |
| 199 var o = new api.GetAccountInfoResponse(); | 199 var o = new api.GetAccountInfoResponse(); |
| 200 buildCounterGetAccountInfoResponse++; | 200 buildCounterGetAccountInfoResponse++; |
| 201 if (buildCounterGetAccountInfoResponse < 3) { | 201 if (buildCounterGetAccountInfoResponse < 3) { |
| 202 o.kind = "foo"; | 202 o.kind = "foo"; |
| 203 o.users = buildUnnamed2433(); | 203 o.users = buildUnnamed2787(); |
| 204 } | 204 } |
| 205 buildCounterGetAccountInfoResponse--; | 205 buildCounterGetAccountInfoResponse--; |
| 206 return o; | 206 return o; |
| 207 } | 207 } |
| 208 | 208 |
| 209 checkGetAccountInfoResponse(api.GetAccountInfoResponse o) { | 209 checkGetAccountInfoResponse(api.GetAccountInfoResponse o) { |
| 210 buildCounterGetAccountInfoResponse++; | 210 buildCounterGetAccountInfoResponse++; |
| 211 if (buildCounterGetAccountInfoResponse < 3) { | 211 if (buildCounterGetAccountInfoResponse < 3) { |
| 212 unittest.expect(o.kind, unittest.equals('foo')); | 212 unittest.expect(o.kind, unittest.equals('foo')); |
| 213 checkUnnamed2433(o.users); | 213 checkUnnamed2787(o.users); |
| 214 } | 214 } |
| 215 buildCounterGetAccountInfoResponse--; | 215 buildCounterGetAccountInfoResponse--; |
| 216 } | 216 } |
| 217 | 217 |
| 218 core.int buildCounterGetOobConfirmationCodeResponse = 0; | 218 core.int buildCounterGetOobConfirmationCodeResponse = 0; |
| 219 buildGetOobConfirmationCodeResponse() { | 219 buildGetOobConfirmationCodeResponse() { |
| 220 var o = new api.GetOobConfirmationCodeResponse(); | 220 var o = new api.GetOobConfirmationCodeResponse(); |
| 221 buildCounterGetOobConfirmationCodeResponse++; | 221 buildCounterGetOobConfirmationCodeResponse++; |
| 222 if (buildCounterGetOobConfirmationCodeResponse < 3) { | 222 if (buildCounterGetOobConfirmationCodeResponse < 3) { |
| 223 o.email = "foo"; | 223 o.email = "foo"; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 263 |
| 264 core.int buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest = 0; | 264 core.int buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest = 0; |
| 265 buildIdentitytoolkitRelyingpartyCreateAuthUriRequest() { | 265 buildIdentitytoolkitRelyingpartyCreateAuthUriRequest() { |
| 266 var o = new api.IdentitytoolkitRelyingpartyCreateAuthUriRequest(); | 266 var o = new api.IdentitytoolkitRelyingpartyCreateAuthUriRequest(); |
| 267 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++; | 267 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++; |
| 268 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) { | 268 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) { |
| 269 o.appId = "foo"; | 269 o.appId = "foo"; |
| 270 o.clientId = "foo"; | 270 o.clientId = "foo"; |
| 271 o.context = "foo"; | 271 o.context = "foo"; |
| 272 o.continueUri = "foo"; | 272 o.continueUri = "foo"; |
| 273 o.hostedDomain = "foo"; |
| 273 o.identifier = "foo"; | 274 o.identifier = "foo"; |
| 274 o.oauthConsumerKey = "foo"; | 275 o.oauthConsumerKey = "foo"; |
| 275 o.oauthScope = "foo"; | 276 o.oauthScope = "foo"; |
| 276 o.openidRealm = "foo"; | 277 o.openidRealm = "foo"; |
| 277 o.otaApp = "foo"; | 278 o.otaApp = "foo"; |
| 278 o.providerId = "foo"; | 279 o.providerId = "foo"; |
| 279 } | 280 } |
| 280 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; | 281 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; |
| 281 return o; | 282 return o; |
| 282 } | 283 } |
| 283 | 284 |
| 284 checkIdentitytoolkitRelyingpartyCreateAuthUriRequest(api.IdentitytoolkitRelyingp
artyCreateAuthUriRequest o) { | 285 checkIdentitytoolkitRelyingpartyCreateAuthUriRequest(api.IdentitytoolkitRelyingp
artyCreateAuthUriRequest o) { |
| 285 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++; | 286 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++; |
| 286 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) { | 287 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) { |
| 287 unittest.expect(o.appId, unittest.equals('foo')); | 288 unittest.expect(o.appId, unittest.equals('foo')); |
| 288 unittest.expect(o.clientId, unittest.equals('foo')); | 289 unittest.expect(o.clientId, unittest.equals('foo')); |
| 289 unittest.expect(o.context, unittest.equals('foo')); | 290 unittest.expect(o.context, unittest.equals('foo')); |
| 290 unittest.expect(o.continueUri, unittest.equals('foo')); | 291 unittest.expect(o.continueUri, unittest.equals('foo')); |
| 292 unittest.expect(o.hostedDomain, unittest.equals('foo')); |
| 291 unittest.expect(o.identifier, unittest.equals('foo')); | 293 unittest.expect(o.identifier, unittest.equals('foo')); |
| 292 unittest.expect(o.oauthConsumerKey, unittest.equals('foo')); | 294 unittest.expect(o.oauthConsumerKey, unittest.equals('foo')); |
| 293 unittest.expect(o.oauthScope, unittest.equals('foo')); | 295 unittest.expect(o.oauthScope, unittest.equals('foo')); |
| 294 unittest.expect(o.openidRealm, unittest.equals('foo')); | 296 unittest.expect(o.openidRealm, unittest.equals('foo')); |
| 295 unittest.expect(o.otaApp, unittest.equals('foo')); | 297 unittest.expect(o.otaApp, unittest.equals('foo')); |
| 296 unittest.expect(o.providerId, unittest.equals('foo')); | 298 unittest.expect(o.providerId, unittest.equals('foo')); |
| 297 } | 299 } |
| 298 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; | 300 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; |
| 299 } | 301 } |
| 300 | 302 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 checkIdentitytoolkitRelyingpartyDownloadAccountRequest(api.IdentitytoolkitRelyin
gpartyDownloadAccountRequest o) { | 339 checkIdentitytoolkitRelyingpartyDownloadAccountRequest(api.IdentitytoolkitRelyin
gpartyDownloadAccountRequest o) { |
| 338 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest++; | 340 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest++; |
| 339 if (buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest < 3) { | 341 if (buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest < 3) { |
| 340 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 342 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 341 unittest.expect(o.maxResults, unittest.equals(42)); | 343 unittest.expect(o.maxResults, unittest.equals(42)); |
| 342 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 344 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 343 } | 345 } |
| 344 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest--; | 346 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest--; |
| 345 } | 347 } |
| 346 | 348 |
| 347 buildUnnamed2434() { | 349 buildUnnamed2788() { |
| 348 var o = new core.List<core.String>(); | 350 var o = new core.List<core.String>(); |
| 349 o.add("foo"); | 351 o.add("foo"); |
| 350 o.add("foo"); | 352 o.add("foo"); |
| 351 return o; | 353 return o; |
| 352 } | 354 } |
| 353 | 355 |
| 354 checkUnnamed2434(core.List<core.String> o) { | 356 checkUnnamed2788(core.List<core.String> o) { |
| 355 unittest.expect(o, unittest.hasLength(2)); | 357 unittest.expect(o, unittest.hasLength(2)); |
| 356 unittest.expect(o[0], unittest.equals('foo')); | 358 unittest.expect(o[0], unittest.equals('foo')); |
| 357 unittest.expect(o[1], unittest.equals('foo')); | 359 unittest.expect(o[1], unittest.equals('foo')); |
| 358 } | 360 } |
| 359 | 361 |
| 360 buildUnnamed2435() { | 362 buildUnnamed2789() { |
| 361 var o = new core.List<core.String>(); | 363 var o = new core.List<core.String>(); |
| 362 o.add("foo"); | 364 o.add("foo"); |
| 363 o.add("foo"); | 365 o.add("foo"); |
| 364 return o; | 366 return o; |
| 365 } | 367 } |
| 366 | 368 |
| 367 checkUnnamed2435(core.List<core.String> o) { | 369 checkUnnamed2789(core.List<core.String> o) { |
| 368 unittest.expect(o, unittest.hasLength(2)); | 370 unittest.expect(o, unittest.hasLength(2)); |
| 369 unittest.expect(o[0], unittest.equals('foo')); | 371 unittest.expect(o[0], unittest.equals('foo')); |
| 370 unittest.expect(o[1], unittest.equals('foo')); | 372 unittest.expect(o[1], unittest.equals('foo')); |
| 371 } | 373 } |
| 372 | 374 |
| 373 core.int buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest = 0; | 375 core.int buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest = 0; |
| 374 buildIdentitytoolkitRelyingpartyGetAccountInfoRequest() { | 376 buildIdentitytoolkitRelyingpartyGetAccountInfoRequest() { |
| 375 var o = new api.IdentitytoolkitRelyingpartyGetAccountInfoRequest(); | 377 var o = new api.IdentitytoolkitRelyingpartyGetAccountInfoRequest(); |
| 376 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; | 378 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; |
| 377 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { | 379 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { |
| 378 o.delegatedProjectNumber = "foo"; | 380 o.delegatedProjectNumber = "foo"; |
| 379 o.email = buildUnnamed2434(); | 381 o.email = buildUnnamed2788(); |
| 380 o.idToken = "foo"; | 382 o.idToken = "foo"; |
| 381 o.localId = buildUnnamed2435(); | 383 o.localId = buildUnnamed2789(); |
| 382 } | 384 } |
| 383 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; | 385 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; |
| 384 return o; | 386 return o; |
| 385 } | 387 } |
| 386 | 388 |
| 387 checkIdentitytoolkitRelyingpartyGetAccountInfoRequest(api.IdentitytoolkitRelying
partyGetAccountInfoRequest o) { | 389 checkIdentitytoolkitRelyingpartyGetAccountInfoRequest(api.IdentitytoolkitRelying
partyGetAccountInfoRequest o) { |
| 388 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; | 390 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; |
| 389 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { | 391 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { |
| 390 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 392 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 391 checkUnnamed2434(o.email); | 393 checkUnnamed2788(o.email); |
| 392 unittest.expect(o.idToken, unittest.equals('foo')); | 394 unittest.expect(o.idToken, unittest.equals('foo')); |
| 393 checkUnnamed2435(o.localId); | 395 checkUnnamed2789(o.localId); |
| 394 } | 396 } |
| 395 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; | 397 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; |
| 396 } | 398 } |
| 397 | 399 |
| 398 buildUnnamed2436() { | 400 buildUnnamed2790() { |
| 399 var o = new core.List<core.String>(); | 401 var o = new core.List<core.String>(); |
| 400 o.add("foo"); | 402 o.add("foo"); |
| 401 o.add("foo"); | 403 o.add("foo"); |
| 402 return o; | 404 return o; |
| 403 } | 405 } |
| 404 | 406 |
| 405 checkUnnamed2436(core.List<core.String> o) { | 407 checkUnnamed2790(core.List<core.String> o) { |
| 406 unittest.expect(o, unittest.hasLength(2)); | 408 unittest.expect(o, unittest.hasLength(2)); |
| 407 unittest.expect(o[0], unittest.equals('foo')); | 409 unittest.expect(o[0], unittest.equals('foo')); |
| 408 unittest.expect(o[1], unittest.equals('foo')); | 410 unittest.expect(o[1], unittest.equals('foo')); |
| 409 } | 411 } |
| 410 | 412 |
| 411 buildUnnamed2437() { | 413 buildUnnamed2791() { |
| 412 var o = new core.List<api.IdpConfig>(); | 414 var o = new core.List<api.IdpConfig>(); |
| 413 o.add(buildIdpConfig()); | 415 o.add(buildIdpConfig()); |
| 414 o.add(buildIdpConfig()); | 416 o.add(buildIdpConfig()); |
| 415 return o; | 417 return o; |
| 416 } | 418 } |
| 417 | 419 |
| 418 checkUnnamed2437(core.List<api.IdpConfig> o) { | 420 checkUnnamed2791(core.List<api.IdpConfig> o) { |
| 419 unittest.expect(o, unittest.hasLength(2)); | 421 unittest.expect(o, unittest.hasLength(2)); |
| 420 checkIdpConfig(o[0]); | 422 checkIdpConfig(o[0]); |
| 421 checkIdpConfig(o[1]); | 423 checkIdpConfig(o[1]); |
| 422 } | 424 } |
| 423 | 425 |
| 424 core.int buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse = 0; | 426 core.int buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse = 0; |
| 425 buildIdentitytoolkitRelyingpartyGetProjectConfigResponse() { | 427 buildIdentitytoolkitRelyingpartyGetProjectConfigResponse() { |
| 426 var o = new api.IdentitytoolkitRelyingpartyGetProjectConfigResponse(); | 428 var o = new api.IdentitytoolkitRelyingpartyGetProjectConfigResponse(); |
| 427 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; | 429 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; |
| 428 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { | 430 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { |
| 429 o.allowPasswordUser = true; | 431 o.allowPasswordUser = true; |
| 430 o.apiKey = "foo"; | 432 o.apiKey = "foo"; |
| 431 o.authorizedDomains = buildUnnamed2436(); | 433 o.authorizedDomains = buildUnnamed2790(); |
| 432 o.changeEmailTemplate = buildEmailTemplate(); | 434 o.changeEmailTemplate = buildEmailTemplate(); |
| 433 o.enableAnonymousUser = true; | 435 o.enableAnonymousUser = true; |
| 434 o.idpConfig = buildUnnamed2437(); | 436 o.idpConfig = buildUnnamed2791(); |
| 435 o.legacyResetPasswordTemplate = buildEmailTemplate(); | 437 o.legacyResetPasswordTemplate = buildEmailTemplate(); |
| 436 o.projectId = "foo"; | 438 o.projectId = "foo"; |
| 437 o.resetPasswordTemplate = buildEmailTemplate(); | 439 o.resetPasswordTemplate = buildEmailTemplate(); |
| 438 o.useEmailSending = true; | 440 o.useEmailSending = true; |
| 439 o.verifyEmailTemplate = buildEmailTemplate(); | 441 o.verifyEmailTemplate = buildEmailTemplate(); |
| 440 } | 442 } |
| 441 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; | 443 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; |
| 442 return o; | 444 return o; |
| 443 } | 445 } |
| 444 | 446 |
| 445 checkIdentitytoolkitRelyingpartyGetProjectConfigResponse(api.IdentitytoolkitRely
ingpartyGetProjectConfigResponse o) { | 447 checkIdentitytoolkitRelyingpartyGetProjectConfigResponse(api.IdentitytoolkitRely
ingpartyGetProjectConfigResponse o) { |
| 446 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; | 448 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; |
| 447 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { | 449 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { |
| 448 unittest.expect(o.allowPasswordUser, unittest.isTrue); | 450 unittest.expect(o.allowPasswordUser, unittest.isTrue); |
| 449 unittest.expect(o.apiKey, unittest.equals('foo')); | 451 unittest.expect(o.apiKey, unittest.equals('foo')); |
| 450 checkUnnamed2436(o.authorizedDomains); | 452 checkUnnamed2790(o.authorizedDomains); |
| 451 checkEmailTemplate(o.changeEmailTemplate); | 453 checkEmailTemplate(o.changeEmailTemplate); |
| 452 unittest.expect(o.enableAnonymousUser, unittest.isTrue); | 454 unittest.expect(o.enableAnonymousUser, unittest.isTrue); |
| 453 checkUnnamed2437(o.idpConfig); | 455 checkUnnamed2791(o.idpConfig); |
| 454 checkEmailTemplate(o.legacyResetPasswordTemplate); | 456 checkEmailTemplate(o.legacyResetPasswordTemplate); |
| 455 unittest.expect(o.projectId, unittest.equals('foo')); | 457 unittest.expect(o.projectId, unittest.equals('foo')); |
| 456 checkEmailTemplate(o.resetPasswordTemplate); | 458 checkEmailTemplate(o.resetPasswordTemplate); |
| 457 unittest.expect(o.useEmailSending, unittest.isTrue); | 459 unittest.expect(o.useEmailSending, unittest.isTrue); |
| 458 checkEmailTemplate(o.verifyEmailTemplate); | 460 checkEmailTemplate(o.verifyEmailTemplate); |
| 459 } | 461 } |
| 460 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; | 462 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; |
| 461 } | 463 } |
| 462 | 464 |
| 463 buildIdentitytoolkitRelyingpartyGetPublicKeysResponse() { | 465 buildIdentitytoolkitRelyingpartyGetPublicKeysResponse() { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 491 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest++; | 493 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest++; |
| 492 if (buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest < 3) { | 494 if (buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest < 3) { |
| 493 unittest.expect(o.email, unittest.equals('foo')); | 495 unittest.expect(o.email, unittest.equals('foo')); |
| 494 unittest.expect(o.newPassword, unittest.equals('foo')); | 496 unittest.expect(o.newPassword, unittest.equals('foo')); |
| 495 unittest.expect(o.oldPassword, unittest.equals('foo')); | 497 unittest.expect(o.oldPassword, unittest.equals('foo')); |
| 496 unittest.expect(o.oobCode, unittest.equals('foo')); | 498 unittest.expect(o.oobCode, unittest.equals('foo')); |
| 497 } | 499 } |
| 498 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest--; | 500 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest--; |
| 499 } | 501 } |
| 500 | 502 |
| 501 buildUnnamed2438() { | 503 buildUnnamed2792() { |
| 502 var o = new core.List<core.String>(); | 504 var o = new core.List<core.String>(); |
| 503 o.add("foo"); | 505 o.add("foo"); |
| 504 o.add("foo"); | 506 o.add("foo"); |
| 505 return o; | 507 return o; |
| 506 } | 508 } |
| 507 | 509 |
| 508 checkUnnamed2438(core.List<core.String> o) { | 510 checkUnnamed2792(core.List<core.String> o) { |
| 509 unittest.expect(o, unittest.hasLength(2)); | 511 unittest.expect(o, unittest.hasLength(2)); |
| 510 unittest.expect(o[0], unittest.equals('foo')); | 512 unittest.expect(o[0], unittest.equals('foo')); |
| 511 unittest.expect(o[1], unittest.equals('foo')); | 513 unittest.expect(o[1], unittest.equals('foo')); |
| 512 } | 514 } |
| 513 | 515 |
| 514 buildUnnamed2439() { | 516 buildUnnamed2793() { |
| 515 var o = new core.List<core.String>(); | 517 var o = new core.List<core.String>(); |
| 516 o.add("foo"); | 518 o.add("foo"); |
| 517 o.add("foo"); | 519 o.add("foo"); |
| 518 return o; | 520 return o; |
| 519 } | 521 } |
| 520 | 522 |
| 521 checkUnnamed2439(core.List<core.String> o) { | 523 checkUnnamed2793(core.List<core.String> o) { |
| 522 unittest.expect(o, unittest.hasLength(2)); | 524 unittest.expect(o, unittest.hasLength(2)); |
| 523 unittest.expect(o[0], unittest.equals('foo')); | 525 unittest.expect(o[0], unittest.equals('foo')); |
| 524 unittest.expect(o[1], unittest.equals('foo')); | 526 unittest.expect(o[1], unittest.equals('foo')); |
| 525 } | 527 } |
| 526 | 528 |
| 527 buildUnnamed2440() { | 529 buildUnnamed2794() { |
| 528 var o = new core.List<core.String>(); | 530 var o = new core.List<core.String>(); |
| 529 o.add("foo"); | 531 o.add("foo"); |
| 530 o.add("foo"); | 532 o.add("foo"); |
| 531 return o; | 533 return o; |
| 532 } | 534 } |
| 533 | 535 |
| 534 checkUnnamed2440(core.List<core.String> o) { | 536 checkUnnamed2794(core.List<core.String> o) { |
| 535 unittest.expect(o, unittest.hasLength(2)); | 537 unittest.expect(o, unittest.hasLength(2)); |
| 536 unittest.expect(o[0], unittest.equals('foo')); | 538 unittest.expect(o[0], unittest.equals('foo')); |
| 537 unittest.expect(o[1], unittest.equals('foo')); | 539 unittest.expect(o[1], unittest.equals('foo')); |
| 538 } | 540 } |
| 539 | 541 |
| 540 core.int buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest = 0; | 542 core.int buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest = 0; |
| 541 buildIdentitytoolkitRelyingpartySetAccountInfoRequest() { | 543 buildIdentitytoolkitRelyingpartySetAccountInfoRequest() { |
| 542 var o = new api.IdentitytoolkitRelyingpartySetAccountInfoRequest(); | 544 var o = new api.IdentitytoolkitRelyingpartySetAccountInfoRequest(); |
| 543 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; | 545 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; |
| 544 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { | 546 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { |
| 545 o.captchaChallenge = "foo"; | 547 o.captchaChallenge = "foo"; |
| 546 o.captchaResponse = "foo"; | 548 o.captchaResponse = "foo"; |
| 547 o.createdAt = "foo"; | 549 o.createdAt = "foo"; |
| 548 o.delegatedProjectNumber = "foo"; | 550 o.delegatedProjectNumber = "foo"; |
| 549 o.deleteAttribute = buildUnnamed2438(); | 551 o.deleteAttribute = buildUnnamed2792(); |
| 550 o.deleteProvider = buildUnnamed2439(); | 552 o.deleteProvider = buildUnnamed2793(); |
| 551 o.disableUser = true; | 553 o.disableUser = true; |
| 552 o.displayName = "foo"; | 554 o.displayName = "foo"; |
| 553 o.email = "foo"; | 555 o.email = "foo"; |
| 554 o.emailVerified = true; | 556 o.emailVerified = true; |
| 555 o.idToken = "foo"; | 557 o.idToken = "foo"; |
| 556 o.instanceId = "foo"; | 558 o.instanceId = "foo"; |
| 557 o.lastLoginAt = "foo"; | 559 o.lastLoginAt = "foo"; |
| 558 o.localId = "foo"; | 560 o.localId = "foo"; |
| 559 o.oobCode = "foo"; | 561 o.oobCode = "foo"; |
| 560 o.password = "foo"; | 562 o.password = "foo"; |
| 561 o.photoUrl = "foo"; | 563 o.photoUrl = "foo"; |
| 562 o.provider = buildUnnamed2440(); | 564 o.provider = buildUnnamed2794(); |
| 563 o.returnSecureToken = true; | 565 o.returnSecureToken = true; |
| 564 o.upgradeToFederatedLogin = true; | 566 o.upgradeToFederatedLogin = true; |
| 565 o.validSince = "foo"; | 567 o.validSince = "foo"; |
| 566 } | 568 } |
| 567 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; | 569 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; |
| 568 return o; | 570 return o; |
| 569 } | 571 } |
| 570 | 572 |
| 571 checkIdentitytoolkitRelyingpartySetAccountInfoRequest(api.IdentitytoolkitRelying
partySetAccountInfoRequest o) { | 573 checkIdentitytoolkitRelyingpartySetAccountInfoRequest(api.IdentitytoolkitRelying
partySetAccountInfoRequest o) { |
| 572 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; | 574 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; |
| 573 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { | 575 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { |
| 574 unittest.expect(o.captchaChallenge, unittest.equals('foo')); | 576 unittest.expect(o.captchaChallenge, unittest.equals('foo')); |
| 575 unittest.expect(o.captchaResponse, unittest.equals('foo')); | 577 unittest.expect(o.captchaResponse, unittest.equals('foo')); |
| 576 unittest.expect(o.createdAt, unittest.equals('foo')); | 578 unittest.expect(o.createdAt, unittest.equals('foo')); |
| 577 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 579 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 578 checkUnnamed2438(o.deleteAttribute); | 580 checkUnnamed2792(o.deleteAttribute); |
| 579 checkUnnamed2439(o.deleteProvider); | 581 checkUnnamed2793(o.deleteProvider); |
| 580 unittest.expect(o.disableUser, unittest.isTrue); | 582 unittest.expect(o.disableUser, unittest.isTrue); |
| 581 unittest.expect(o.displayName, unittest.equals('foo')); | 583 unittest.expect(o.displayName, unittest.equals('foo')); |
| 582 unittest.expect(o.email, unittest.equals('foo')); | 584 unittest.expect(o.email, unittest.equals('foo')); |
| 583 unittest.expect(o.emailVerified, unittest.isTrue); | 585 unittest.expect(o.emailVerified, unittest.isTrue); |
| 584 unittest.expect(o.idToken, unittest.equals('foo')); | 586 unittest.expect(o.idToken, unittest.equals('foo')); |
| 585 unittest.expect(o.instanceId, unittest.equals('foo')); | 587 unittest.expect(o.instanceId, unittest.equals('foo')); |
| 586 unittest.expect(o.lastLoginAt, unittest.equals('foo')); | 588 unittest.expect(o.lastLoginAt, unittest.equals('foo')); |
| 587 unittest.expect(o.localId, unittest.equals('foo')); | 589 unittest.expect(o.localId, unittest.equals('foo')); |
| 588 unittest.expect(o.oobCode, unittest.equals('foo')); | 590 unittest.expect(o.oobCode, unittest.equals('foo')); |
| 589 unittest.expect(o.password, unittest.equals('foo')); | 591 unittest.expect(o.password, unittest.equals('foo')); |
| 590 unittest.expect(o.photoUrl, unittest.equals('foo')); | 592 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 591 checkUnnamed2440(o.provider); | 593 checkUnnamed2794(o.provider); |
| 592 unittest.expect(o.returnSecureToken, unittest.isTrue); | 594 unittest.expect(o.returnSecureToken, unittest.isTrue); |
| 593 unittest.expect(o.upgradeToFederatedLogin, unittest.isTrue); | 595 unittest.expect(o.upgradeToFederatedLogin, unittest.isTrue); |
| 594 unittest.expect(o.validSince, unittest.equals('foo')); | 596 unittest.expect(o.validSince, unittest.equals('foo')); |
| 595 } | 597 } |
| 596 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; | 598 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; |
| 597 } | 599 } |
| 598 | 600 |
| 599 buildUnnamed2441() { | 601 buildUnnamed2795() { |
| 600 var o = new core.List<core.String>(); | 602 var o = new core.List<core.String>(); |
| 601 o.add("foo"); | 603 o.add("foo"); |
| 602 o.add("foo"); | 604 o.add("foo"); |
| 603 return o; | 605 return o; |
| 604 } | 606 } |
| 605 | 607 |
| 606 checkUnnamed2441(core.List<core.String> o) { | 608 checkUnnamed2795(core.List<core.String> o) { |
| 607 unittest.expect(o, unittest.hasLength(2)); | 609 unittest.expect(o, unittest.hasLength(2)); |
| 608 unittest.expect(o[0], unittest.equals('foo')); | 610 unittest.expect(o[0], unittest.equals('foo')); |
| 609 unittest.expect(o[1], unittest.equals('foo')); | 611 unittest.expect(o[1], unittest.equals('foo')); |
| 610 } | 612 } |
| 611 | 613 |
| 612 buildUnnamed2442() { | 614 buildUnnamed2796() { |
| 613 var o = new core.List<api.IdpConfig>(); | 615 var o = new core.List<api.IdpConfig>(); |
| 614 o.add(buildIdpConfig()); | 616 o.add(buildIdpConfig()); |
| 615 o.add(buildIdpConfig()); | 617 o.add(buildIdpConfig()); |
| 616 return o; | 618 return o; |
| 617 } | 619 } |
| 618 | 620 |
| 619 checkUnnamed2442(core.List<api.IdpConfig> o) { | 621 checkUnnamed2796(core.List<api.IdpConfig> o) { |
| 620 unittest.expect(o, unittest.hasLength(2)); | 622 unittest.expect(o, unittest.hasLength(2)); |
| 621 checkIdpConfig(o[0]); | 623 checkIdpConfig(o[0]); |
| 622 checkIdpConfig(o[1]); | 624 checkIdpConfig(o[1]); |
| 623 } | 625 } |
| 624 | 626 |
| 625 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest = 0; | 627 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest = 0; |
| 626 buildIdentitytoolkitRelyingpartySetProjectConfigRequest() { | 628 buildIdentitytoolkitRelyingpartySetProjectConfigRequest() { |
| 627 var o = new api.IdentitytoolkitRelyingpartySetProjectConfigRequest(); | 629 var o = new api.IdentitytoolkitRelyingpartySetProjectConfigRequest(); |
| 628 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; | 630 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; |
| 629 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { | 631 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { |
| 630 o.allowPasswordUser = true; | 632 o.allowPasswordUser = true; |
| 631 o.apiKey = "foo"; | 633 o.apiKey = "foo"; |
| 632 o.authorizedDomains = buildUnnamed2441(); | 634 o.authorizedDomains = buildUnnamed2795(); |
| 633 o.changeEmailTemplate = buildEmailTemplate(); | 635 o.changeEmailTemplate = buildEmailTemplate(); |
| 634 o.delegatedProjectNumber = "foo"; | 636 o.delegatedProjectNumber = "foo"; |
| 635 o.enableAnonymousUser = true; | 637 o.enableAnonymousUser = true; |
| 636 o.idpConfig = buildUnnamed2442(); | 638 o.idpConfig = buildUnnamed2796(); |
| 637 o.legacyResetPasswordTemplate = buildEmailTemplate(); | 639 o.legacyResetPasswordTemplate = buildEmailTemplate(); |
| 638 o.resetPasswordTemplate = buildEmailTemplate(); | 640 o.resetPasswordTemplate = buildEmailTemplate(); |
| 639 o.useEmailSending = true; | 641 o.useEmailSending = true; |
| 640 o.verifyEmailTemplate = buildEmailTemplate(); | 642 o.verifyEmailTemplate = buildEmailTemplate(); |
| 641 } | 643 } |
| 642 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; | 644 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; |
| 643 return o; | 645 return o; |
| 644 } | 646 } |
| 645 | 647 |
| 646 checkIdentitytoolkitRelyingpartySetProjectConfigRequest(api.IdentitytoolkitRelyi
ngpartySetProjectConfigRequest o) { | 648 checkIdentitytoolkitRelyingpartySetProjectConfigRequest(api.IdentitytoolkitRelyi
ngpartySetProjectConfigRequest o) { |
| 647 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; | 649 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; |
| 648 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { | 650 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { |
| 649 unittest.expect(o.allowPasswordUser, unittest.isTrue); | 651 unittest.expect(o.allowPasswordUser, unittest.isTrue); |
| 650 unittest.expect(o.apiKey, unittest.equals('foo')); | 652 unittest.expect(o.apiKey, unittest.equals('foo')); |
| 651 checkUnnamed2441(o.authorizedDomains); | 653 checkUnnamed2795(o.authorizedDomains); |
| 652 checkEmailTemplate(o.changeEmailTemplate); | 654 checkEmailTemplate(o.changeEmailTemplate); |
| 653 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 655 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 654 unittest.expect(o.enableAnonymousUser, unittest.isTrue); | 656 unittest.expect(o.enableAnonymousUser, unittest.isTrue); |
| 655 checkUnnamed2442(o.idpConfig); | 657 checkUnnamed2796(o.idpConfig); |
| 656 checkEmailTemplate(o.legacyResetPasswordTemplate); | 658 checkEmailTemplate(o.legacyResetPasswordTemplate); |
| 657 checkEmailTemplate(o.resetPasswordTemplate); | 659 checkEmailTemplate(o.resetPasswordTemplate); |
| 658 unittest.expect(o.useEmailSending, unittest.isTrue); | 660 unittest.expect(o.useEmailSending, unittest.isTrue); |
| 659 checkEmailTemplate(o.verifyEmailTemplate); | 661 checkEmailTemplate(o.verifyEmailTemplate); |
| 660 } | 662 } |
| 661 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; | 663 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; |
| 662 } | 664 } |
| 663 | 665 |
| 664 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigResponse = 0; | 666 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigResponse = 0; |
| 665 buildIdentitytoolkitRelyingpartySetProjectConfigResponse() { | 667 buildIdentitytoolkitRelyingpartySetProjectConfigResponse() { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 unittest.expect(o.captchaResponse, unittest.equals('foo')); | 746 unittest.expect(o.captchaResponse, unittest.equals('foo')); |
| 745 unittest.expect(o.displayName, unittest.equals('foo')); | 747 unittest.expect(o.displayName, unittest.equals('foo')); |
| 746 unittest.expect(o.email, unittest.equals('foo')); | 748 unittest.expect(o.email, unittest.equals('foo')); |
| 747 unittest.expect(o.idToken, unittest.equals('foo')); | 749 unittest.expect(o.idToken, unittest.equals('foo')); |
| 748 unittest.expect(o.instanceId, unittest.equals('foo')); | 750 unittest.expect(o.instanceId, unittest.equals('foo')); |
| 749 unittest.expect(o.password, unittest.equals('foo')); | 751 unittest.expect(o.password, unittest.equals('foo')); |
| 750 } | 752 } |
| 751 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest--; | 753 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest--; |
| 752 } | 754 } |
| 753 | 755 |
| 754 buildUnnamed2443() { | 756 buildUnnamed2797() { |
| 755 var o = new core.List<api.UserInfo>(); | 757 var o = new core.List<api.UserInfo>(); |
| 756 o.add(buildUserInfo()); | 758 o.add(buildUserInfo()); |
| 757 o.add(buildUserInfo()); | 759 o.add(buildUserInfo()); |
| 758 return o; | 760 return o; |
| 759 } | 761 } |
| 760 | 762 |
| 761 checkUnnamed2443(core.List<api.UserInfo> o) { | 763 checkUnnamed2797(core.List<api.UserInfo> o) { |
| 762 unittest.expect(o, unittest.hasLength(2)); | 764 unittest.expect(o, unittest.hasLength(2)); |
| 763 checkUserInfo(o[0]); | 765 checkUserInfo(o[0]); |
| 764 checkUserInfo(o[1]); | 766 checkUserInfo(o[1]); |
| 765 } | 767 } |
| 766 | 768 |
| 767 core.int buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest = 0; | 769 core.int buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest = 0; |
| 768 buildIdentitytoolkitRelyingpartyUploadAccountRequest() { | 770 buildIdentitytoolkitRelyingpartyUploadAccountRequest() { |
| 769 var o = new api.IdentitytoolkitRelyingpartyUploadAccountRequest(); | 771 var o = new api.IdentitytoolkitRelyingpartyUploadAccountRequest(); |
| 770 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; | 772 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; |
| 771 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { | 773 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { |
| 772 o.delegatedProjectNumber = "foo"; | 774 o.delegatedProjectNumber = "foo"; |
| 773 o.hashAlgorithm = "foo"; | 775 o.hashAlgorithm = "foo"; |
| 774 o.memoryCost = 42; | 776 o.memoryCost = 42; |
| 775 o.rounds = 42; | 777 o.rounds = 42; |
| 776 o.saltSeparator = "foo"; | 778 o.saltSeparator = "foo"; |
| 777 o.signerKey = "foo"; | 779 o.signerKey = "foo"; |
| 778 o.users = buildUnnamed2443(); | 780 o.users = buildUnnamed2797(); |
| 779 } | 781 } |
| 780 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; | 782 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; |
| 781 return o; | 783 return o; |
| 782 } | 784 } |
| 783 | 785 |
| 784 checkIdentitytoolkitRelyingpartyUploadAccountRequest(api.IdentitytoolkitRelyingp
artyUploadAccountRequest o) { | 786 checkIdentitytoolkitRelyingpartyUploadAccountRequest(api.IdentitytoolkitRelyingp
artyUploadAccountRequest o) { |
| 785 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; | 787 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; |
| 786 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { | 788 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { |
| 787 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 789 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 788 unittest.expect(o.hashAlgorithm, unittest.equals('foo')); | 790 unittest.expect(o.hashAlgorithm, unittest.equals('foo')); |
| 789 unittest.expect(o.memoryCost, unittest.equals(42)); | 791 unittest.expect(o.memoryCost, unittest.equals(42)); |
| 790 unittest.expect(o.rounds, unittest.equals(42)); | 792 unittest.expect(o.rounds, unittest.equals(42)); |
| 791 unittest.expect(o.saltSeparator, unittest.equals('foo')); | 793 unittest.expect(o.saltSeparator, unittest.equals('foo')); |
| 792 unittest.expect(o.signerKey, unittest.equals('foo')); | 794 unittest.expect(o.signerKey, unittest.equals('foo')); |
| 793 checkUnnamed2443(o.users); | 795 checkUnnamed2797(o.users); |
| 794 } | 796 } |
| 795 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; | 797 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; |
| 796 } | 798 } |
| 797 | 799 |
| 798 core.int buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest = 0; | 800 core.int buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest = 0; |
| 799 buildIdentitytoolkitRelyingpartyVerifyAssertionRequest() { | 801 buildIdentitytoolkitRelyingpartyVerifyAssertionRequest() { |
| 800 var o = new api.IdentitytoolkitRelyingpartyVerifyAssertionRequest(); | 802 var o = new api.IdentitytoolkitRelyingpartyVerifyAssertionRequest(); |
| 801 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest++; | 803 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest++; |
| 802 if (buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest < 3) { | 804 if (buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest < 3) { |
| 803 o.delegatedProjectNumber = "foo"; | 805 o.delegatedProjectNumber = "foo"; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 unittest.expect(o.email, unittest.equals('foo')); | 885 unittest.expect(o.email, unittest.equals('foo')); |
| 884 unittest.expect(o.idToken, unittest.equals('foo')); | 886 unittest.expect(o.idToken, unittest.equals('foo')); |
| 885 unittest.expect(o.instanceId, unittest.equals('foo')); | 887 unittest.expect(o.instanceId, unittest.equals('foo')); |
| 886 unittest.expect(o.password, unittest.equals('foo')); | 888 unittest.expect(o.password, unittest.equals('foo')); |
| 887 unittest.expect(o.pendingIdToken, unittest.equals('foo')); | 889 unittest.expect(o.pendingIdToken, unittest.equals('foo')); |
| 888 unittest.expect(o.returnSecureToken, unittest.isTrue); | 890 unittest.expect(o.returnSecureToken, unittest.isTrue); |
| 889 } | 891 } |
| 890 buildCounterIdentitytoolkitRelyingpartyVerifyPasswordRequest--; | 892 buildCounterIdentitytoolkitRelyingpartyVerifyPasswordRequest--; |
| 891 } | 893 } |
| 892 | 894 |
| 893 buildUnnamed2444() { | 895 buildUnnamed2798() { |
| 894 var o = new core.List<core.String>(); | 896 var o = new core.List<core.String>(); |
| 895 o.add("foo"); | 897 o.add("foo"); |
| 896 o.add("foo"); | 898 o.add("foo"); |
| 897 return o; | 899 return o; |
| 898 } | 900 } |
| 899 | 901 |
| 900 checkUnnamed2444(core.List<core.String> o) { | 902 checkUnnamed2798(core.List<core.String> o) { |
| 901 unittest.expect(o, unittest.hasLength(2)); | 903 unittest.expect(o, unittest.hasLength(2)); |
| 902 unittest.expect(o[0], unittest.equals('foo')); | 904 unittest.expect(o[0], unittest.equals('foo')); |
| 903 unittest.expect(o[1], unittest.equals('foo')); | 905 unittest.expect(o[1], unittest.equals('foo')); |
| 904 } | 906 } |
| 905 | 907 |
| 906 core.int buildCounterIdpConfig = 0; | 908 core.int buildCounterIdpConfig = 0; |
| 907 buildIdpConfig() { | 909 buildIdpConfig() { |
| 908 var o = new api.IdpConfig(); | 910 var o = new api.IdpConfig(); |
| 909 buildCounterIdpConfig++; | 911 buildCounterIdpConfig++; |
| 910 if (buildCounterIdpConfig < 3) { | 912 if (buildCounterIdpConfig < 3) { |
| 911 o.clientId = "foo"; | 913 o.clientId = "foo"; |
| 912 o.enabled = true; | 914 o.enabled = true; |
| 913 o.experimentPercent = 42; | 915 o.experimentPercent = 42; |
| 914 o.provider = "foo"; | 916 o.provider = "foo"; |
| 915 o.secret = "foo"; | 917 o.secret = "foo"; |
| 916 o.whitelistedAudiences = buildUnnamed2444(); | 918 o.whitelistedAudiences = buildUnnamed2798(); |
| 917 } | 919 } |
| 918 buildCounterIdpConfig--; | 920 buildCounterIdpConfig--; |
| 919 return o; | 921 return o; |
| 920 } | 922 } |
| 921 | 923 |
| 922 checkIdpConfig(api.IdpConfig o) { | 924 checkIdpConfig(api.IdpConfig o) { |
| 923 buildCounterIdpConfig++; | 925 buildCounterIdpConfig++; |
| 924 if (buildCounterIdpConfig < 3) { | 926 if (buildCounterIdpConfig < 3) { |
| 925 unittest.expect(o.clientId, unittest.equals('foo')); | 927 unittest.expect(o.clientId, unittest.equals('foo')); |
| 926 unittest.expect(o.enabled, unittest.isTrue); | 928 unittest.expect(o.enabled, unittest.isTrue); |
| 927 unittest.expect(o.experimentPercent, unittest.equals(42)); | 929 unittest.expect(o.experimentPercent, unittest.equals(42)); |
| 928 unittest.expect(o.provider, unittest.equals('foo')); | 930 unittest.expect(o.provider, unittest.equals('foo')); |
| 929 unittest.expect(o.secret, unittest.equals('foo')); | 931 unittest.expect(o.secret, unittest.equals('foo')); |
| 930 checkUnnamed2444(o.whitelistedAudiences); | 932 checkUnnamed2798(o.whitelistedAudiences); |
| 931 } | 933 } |
| 932 buildCounterIdpConfig--; | 934 buildCounterIdpConfig--; |
| 933 } | 935 } |
| 934 | 936 |
| 935 core.int buildCounterRelyingparty = 0; | 937 core.int buildCounterRelyingparty = 0; |
| 936 buildRelyingparty() { | 938 buildRelyingparty() { |
| 937 var o = new api.Relyingparty(); | 939 var o = new api.Relyingparty(); |
| 938 buildCounterRelyingparty++; | 940 buildCounterRelyingparty++; |
| 939 if (buildCounterRelyingparty < 3) { | 941 if (buildCounterRelyingparty < 3) { |
| 940 o.captchaResp = "foo"; | 942 o.captchaResp = "foo"; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1004 buildCounterSetAccountInfoResponseProviderUserInfo++; | 1006 buildCounterSetAccountInfoResponseProviderUserInfo++; |
| 1005 if (buildCounterSetAccountInfoResponseProviderUserInfo < 3) { | 1007 if (buildCounterSetAccountInfoResponseProviderUserInfo < 3) { |
| 1006 unittest.expect(o.displayName, unittest.equals('foo')); | 1008 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1007 unittest.expect(o.federatedId, unittest.equals('foo')); | 1009 unittest.expect(o.federatedId, unittest.equals('foo')); |
| 1008 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1010 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1009 unittest.expect(o.providerId, unittest.equals('foo')); | 1011 unittest.expect(o.providerId, unittest.equals('foo')); |
| 1010 } | 1012 } |
| 1011 buildCounterSetAccountInfoResponseProviderUserInfo--; | 1013 buildCounterSetAccountInfoResponseProviderUserInfo--; |
| 1012 } | 1014 } |
| 1013 | 1015 |
| 1014 buildUnnamed2445() { | 1016 buildUnnamed2799() { |
| 1015 var o = new core.List<api.SetAccountInfoResponseProviderUserInfo>(); | 1017 var o = new core.List<api.SetAccountInfoResponseProviderUserInfo>(); |
| 1016 o.add(buildSetAccountInfoResponseProviderUserInfo()); | 1018 o.add(buildSetAccountInfoResponseProviderUserInfo()); |
| 1017 o.add(buildSetAccountInfoResponseProviderUserInfo()); | 1019 o.add(buildSetAccountInfoResponseProviderUserInfo()); |
| 1018 return o; | 1020 return o; |
| 1019 } | 1021 } |
| 1020 | 1022 |
| 1021 checkUnnamed2445(core.List<api.SetAccountInfoResponseProviderUserInfo> o) { | 1023 checkUnnamed2799(core.List<api.SetAccountInfoResponseProviderUserInfo> o) { |
| 1022 unittest.expect(o, unittest.hasLength(2)); | 1024 unittest.expect(o, unittest.hasLength(2)); |
| 1023 checkSetAccountInfoResponseProviderUserInfo(o[0]); | 1025 checkSetAccountInfoResponseProviderUserInfo(o[0]); |
| 1024 checkSetAccountInfoResponseProviderUserInfo(o[1]); | 1026 checkSetAccountInfoResponseProviderUserInfo(o[1]); |
| 1025 } | 1027 } |
| 1026 | 1028 |
| 1027 core.int buildCounterSetAccountInfoResponse = 0; | 1029 core.int buildCounterSetAccountInfoResponse = 0; |
| 1028 buildSetAccountInfoResponse() { | 1030 buildSetAccountInfoResponse() { |
| 1029 var o = new api.SetAccountInfoResponse(); | 1031 var o = new api.SetAccountInfoResponse(); |
| 1030 buildCounterSetAccountInfoResponse++; | 1032 buildCounterSetAccountInfoResponse++; |
| 1031 if (buildCounterSetAccountInfoResponse < 3) { | 1033 if (buildCounterSetAccountInfoResponse < 3) { |
| 1032 o.displayName = "foo"; | 1034 o.displayName = "foo"; |
| 1033 o.email = "foo"; | 1035 o.email = "foo"; |
| 1034 o.expiresIn = "foo"; | 1036 o.expiresIn = "foo"; |
| 1035 o.idToken = "foo"; | 1037 o.idToken = "foo"; |
| 1036 o.kind = "foo"; | 1038 o.kind = "foo"; |
| 1037 o.localId = "foo"; | 1039 o.localId = "foo"; |
| 1038 o.newEmail = "foo"; | 1040 o.newEmail = "foo"; |
| 1039 o.passwordHash = "foo"; | 1041 o.passwordHash = "foo"; |
| 1040 o.photoUrl = "foo"; | 1042 o.photoUrl = "foo"; |
| 1041 o.providerUserInfo = buildUnnamed2445(); | 1043 o.providerUserInfo = buildUnnamed2799(); |
| 1042 o.refreshToken = "foo"; | 1044 o.refreshToken = "foo"; |
| 1043 } | 1045 } |
| 1044 buildCounterSetAccountInfoResponse--; | 1046 buildCounterSetAccountInfoResponse--; |
| 1045 return o; | 1047 return o; |
| 1046 } | 1048 } |
| 1047 | 1049 |
| 1048 checkSetAccountInfoResponse(api.SetAccountInfoResponse o) { | 1050 checkSetAccountInfoResponse(api.SetAccountInfoResponse o) { |
| 1049 buildCounterSetAccountInfoResponse++; | 1051 buildCounterSetAccountInfoResponse++; |
| 1050 if (buildCounterSetAccountInfoResponse < 3) { | 1052 if (buildCounterSetAccountInfoResponse < 3) { |
| 1051 unittest.expect(o.displayName, unittest.equals('foo')); | 1053 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1052 unittest.expect(o.email, unittest.equals('foo')); | 1054 unittest.expect(o.email, unittest.equals('foo')); |
| 1053 unittest.expect(o.expiresIn, unittest.equals('foo')); | 1055 unittest.expect(o.expiresIn, unittest.equals('foo')); |
| 1054 unittest.expect(o.idToken, unittest.equals('foo')); | 1056 unittest.expect(o.idToken, unittest.equals('foo')); |
| 1055 unittest.expect(o.kind, unittest.equals('foo')); | 1057 unittest.expect(o.kind, unittest.equals('foo')); |
| 1056 unittest.expect(o.localId, unittest.equals('foo')); | 1058 unittest.expect(o.localId, unittest.equals('foo')); |
| 1057 unittest.expect(o.newEmail, unittest.equals('foo')); | 1059 unittest.expect(o.newEmail, unittest.equals('foo')); |
| 1058 unittest.expect(o.passwordHash, unittest.equals('foo')); | 1060 unittest.expect(o.passwordHash, unittest.equals('foo')); |
| 1059 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1061 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1060 checkUnnamed2445(o.providerUserInfo); | 1062 checkUnnamed2799(o.providerUserInfo); |
| 1061 unittest.expect(o.refreshToken, unittest.equals('foo')); | 1063 unittest.expect(o.refreshToken, unittest.equals('foo')); |
| 1062 } | 1064 } |
| 1063 buildCounterSetAccountInfoResponse--; | 1065 buildCounterSetAccountInfoResponse--; |
| 1064 } | 1066 } |
| 1065 | 1067 |
| 1066 core.int buildCounterSignupNewUserResponse = 0; | 1068 core.int buildCounterSignupNewUserResponse = 0; |
| 1067 buildSignupNewUserResponse() { | 1069 buildSignupNewUserResponse() { |
| 1068 var o = new api.SignupNewUserResponse(); | 1070 var o = new api.SignupNewUserResponse(); |
| 1069 buildCounterSignupNewUserResponse++; | 1071 buildCounterSignupNewUserResponse++; |
| 1070 if (buildCounterSignupNewUserResponse < 3) { | 1072 if (buildCounterSignupNewUserResponse < 3) { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1108 | 1110 |
| 1109 checkUploadAccountResponseError(api.UploadAccountResponseError o) { | 1111 checkUploadAccountResponseError(api.UploadAccountResponseError o) { |
| 1110 buildCounterUploadAccountResponseError++; | 1112 buildCounterUploadAccountResponseError++; |
| 1111 if (buildCounterUploadAccountResponseError < 3) { | 1113 if (buildCounterUploadAccountResponseError < 3) { |
| 1112 unittest.expect(o.index, unittest.equals(42)); | 1114 unittest.expect(o.index, unittest.equals(42)); |
| 1113 unittest.expect(o.message, unittest.equals('foo')); | 1115 unittest.expect(o.message, unittest.equals('foo')); |
| 1114 } | 1116 } |
| 1115 buildCounterUploadAccountResponseError--; | 1117 buildCounterUploadAccountResponseError--; |
| 1116 } | 1118 } |
| 1117 | 1119 |
| 1118 buildUnnamed2446() { | 1120 buildUnnamed2800() { |
| 1119 var o = new core.List<api.UploadAccountResponseError>(); | 1121 var o = new core.List<api.UploadAccountResponseError>(); |
| 1120 o.add(buildUploadAccountResponseError()); | 1122 o.add(buildUploadAccountResponseError()); |
| 1121 o.add(buildUploadAccountResponseError()); | 1123 o.add(buildUploadAccountResponseError()); |
| 1122 return o; | 1124 return o; |
| 1123 } | 1125 } |
| 1124 | 1126 |
| 1125 checkUnnamed2446(core.List<api.UploadAccountResponseError> o) { | 1127 checkUnnamed2800(core.List<api.UploadAccountResponseError> o) { |
| 1126 unittest.expect(o, unittest.hasLength(2)); | 1128 unittest.expect(o, unittest.hasLength(2)); |
| 1127 checkUploadAccountResponseError(o[0]); | 1129 checkUploadAccountResponseError(o[0]); |
| 1128 checkUploadAccountResponseError(o[1]); | 1130 checkUploadAccountResponseError(o[1]); |
| 1129 } | 1131 } |
| 1130 | 1132 |
| 1131 core.int buildCounterUploadAccountResponse = 0; | 1133 core.int buildCounterUploadAccountResponse = 0; |
| 1132 buildUploadAccountResponse() { | 1134 buildUploadAccountResponse() { |
| 1133 var o = new api.UploadAccountResponse(); | 1135 var o = new api.UploadAccountResponse(); |
| 1134 buildCounterUploadAccountResponse++; | 1136 buildCounterUploadAccountResponse++; |
| 1135 if (buildCounterUploadAccountResponse < 3) { | 1137 if (buildCounterUploadAccountResponse < 3) { |
| 1136 o.error = buildUnnamed2446(); | 1138 o.error = buildUnnamed2800(); |
| 1137 o.kind = "foo"; | 1139 o.kind = "foo"; |
| 1138 } | 1140 } |
| 1139 buildCounterUploadAccountResponse--; | 1141 buildCounterUploadAccountResponse--; |
| 1140 return o; | 1142 return o; |
| 1141 } | 1143 } |
| 1142 | 1144 |
| 1143 checkUploadAccountResponse(api.UploadAccountResponse o) { | 1145 checkUploadAccountResponse(api.UploadAccountResponse o) { |
| 1144 buildCounterUploadAccountResponse++; | 1146 buildCounterUploadAccountResponse++; |
| 1145 if (buildCounterUploadAccountResponse < 3) { | 1147 if (buildCounterUploadAccountResponse < 3) { |
| 1146 checkUnnamed2446(o.error); | 1148 checkUnnamed2800(o.error); |
| 1147 unittest.expect(o.kind, unittest.equals('foo')); | 1149 unittest.expect(o.kind, unittest.equals('foo')); |
| 1148 } | 1150 } |
| 1149 buildCounterUploadAccountResponse--; | 1151 buildCounterUploadAccountResponse--; |
| 1150 } | 1152 } |
| 1151 | 1153 |
| 1152 core.int buildCounterUserInfoProviderUserInfo = 0; | 1154 core.int buildCounterUserInfoProviderUserInfo = 0; |
| 1153 buildUserInfoProviderUserInfo() { | 1155 buildUserInfoProviderUserInfo() { |
| 1154 var o = new api.UserInfoProviderUserInfo(); | 1156 var o = new api.UserInfoProviderUserInfo(); |
| 1155 buildCounterUserInfoProviderUserInfo++; | 1157 buildCounterUserInfoProviderUserInfo++; |
| 1156 if (buildCounterUserInfoProviderUserInfo < 3) { | 1158 if (buildCounterUserInfoProviderUserInfo < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1171 unittest.expect(o.displayName, unittest.equals('foo')); | 1173 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1172 unittest.expect(o.email, unittest.equals('foo')); | 1174 unittest.expect(o.email, unittest.equals('foo')); |
| 1173 unittest.expect(o.federatedId, unittest.equals('foo')); | 1175 unittest.expect(o.federatedId, unittest.equals('foo')); |
| 1174 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1176 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1175 unittest.expect(o.providerId, unittest.equals('foo')); | 1177 unittest.expect(o.providerId, unittest.equals('foo')); |
| 1176 unittest.expect(o.rawId, unittest.equals('foo')); | 1178 unittest.expect(o.rawId, unittest.equals('foo')); |
| 1177 } | 1179 } |
| 1178 buildCounterUserInfoProviderUserInfo--; | 1180 buildCounterUserInfoProviderUserInfo--; |
| 1179 } | 1181 } |
| 1180 | 1182 |
| 1181 buildUnnamed2447() { | 1183 buildUnnamed2801() { |
| 1182 var o = new core.List<api.UserInfoProviderUserInfo>(); | 1184 var o = new core.List<api.UserInfoProviderUserInfo>(); |
| 1183 o.add(buildUserInfoProviderUserInfo()); | 1185 o.add(buildUserInfoProviderUserInfo()); |
| 1184 o.add(buildUserInfoProviderUserInfo()); | 1186 o.add(buildUserInfoProviderUserInfo()); |
| 1185 return o; | 1187 return o; |
| 1186 } | 1188 } |
| 1187 | 1189 |
| 1188 checkUnnamed2447(core.List<api.UserInfoProviderUserInfo> o) { | 1190 checkUnnamed2801(core.List<api.UserInfoProviderUserInfo> o) { |
| 1189 unittest.expect(o, unittest.hasLength(2)); | 1191 unittest.expect(o, unittest.hasLength(2)); |
| 1190 checkUserInfoProviderUserInfo(o[0]); | 1192 checkUserInfoProviderUserInfo(o[0]); |
| 1191 checkUserInfoProviderUserInfo(o[1]); | 1193 checkUserInfoProviderUserInfo(o[1]); |
| 1192 } | 1194 } |
| 1193 | 1195 |
| 1194 core.int buildCounterUserInfo = 0; | 1196 core.int buildCounterUserInfo = 0; |
| 1195 buildUserInfo() { | 1197 buildUserInfo() { |
| 1196 var o = new api.UserInfo(); | 1198 var o = new api.UserInfo(); |
| 1197 buildCounterUserInfo++; | 1199 buildCounterUserInfo++; |
| 1198 if (buildCounterUserInfo < 3) { | 1200 if (buildCounterUserInfo < 3) { |
| 1199 o.createdAt = "foo"; | 1201 o.createdAt = "foo"; |
| 1200 o.disabled = true; | 1202 o.disabled = true; |
| 1201 o.displayName = "foo"; | 1203 o.displayName = "foo"; |
| 1202 o.email = "foo"; | 1204 o.email = "foo"; |
| 1203 o.emailVerified = true; | 1205 o.emailVerified = true; |
| 1204 o.lastLoginAt = "foo"; | 1206 o.lastLoginAt = "foo"; |
| 1205 o.localId = "foo"; | 1207 o.localId = "foo"; |
| 1206 o.passwordHash = "foo"; | 1208 o.passwordHash = "foo"; |
| 1207 o.passwordUpdatedAt = 42.0; | 1209 o.passwordUpdatedAt = 42.0; |
| 1208 o.photoUrl = "foo"; | 1210 o.photoUrl = "foo"; |
| 1209 o.providerUserInfo = buildUnnamed2447(); | 1211 o.providerUserInfo = buildUnnamed2801(); |
| 1210 o.salt = "foo"; | 1212 o.salt = "foo"; |
| 1211 o.validSince = "foo"; | 1213 o.validSince = "foo"; |
| 1212 o.version = 42; | 1214 o.version = 42; |
| 1213 } | 1215 } |
| 1214 buildCounterUserInfo--; | 1216 buildCounterUserInfo--; |
| 1215 return o; | 1217 return o; |
| 1216 } | 1218 } |
| 1217 | 1219 |
| 1218 checkUserInfo(api.UserInfo o) { | 1220 checkUserInfo(api.UserInfo o) { |
| 1219 buildCounterUserInfo++; | 1221 buildCounterUserInfo++; |
| 1220 if (buildCounterUserInfo < 3) { | 1222 if (buildCounterUserInfo < 3) { |
| 1221 unittest.expect(o.createdAt, unittest.equals('foo')); | 1223 unittest.expect(o.createdAt, unittest.equals('foo')); |
| 1222 unittest.expect(o.disabled, unittest.isTrue); | 1224 unittest.expect(o.disabled, unittest.isTrue); |
| 1223 unittest.expect(o.displayName, unittest.equals('foo')); | 1225 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1224 unittest.expect(o.email, unittest.equals('foo')); | 1226 unittest.expect(o.email, unittest.equals('foo')); |
| 1225 unittest.expect(o.emailVerified, unittest.isTrue); | 1227 unittest.expect(o.emailVerified, unittest.isTrue); |
| 1226 unittest.expect(o.lastLoginAt, unittest.equals('foo')); | 1228 unittest.expect(o.lastLoginAt, unittest.equals('foo')); |
| 1227 unittest.expect(o.localId, unittest.equals('foo')); | 1229 unittest.expect(o.localId, unittest.equals('foo')); |
| 1228 unittest.expect(o.passwordHash, unittest.equals('foo')); | 1230 unittest.expect(o.passwordHash, unittest.equals('foo')); |
| 1229 unittest.expect(o.passwordUpdatedAt, unittest.equals(42.0)); | 1231 unittest.expect(o.passwordUpdatedAt, unittest.equals(42.0)); |
| 1230 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1232 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1231 checkUnnamed2447(o.providerUserInfo); | 1233 checkUnnamed2801(o.providerUserInfo); |
| 1232 unittest.expect(o.salt, unittest.equals('foo')); | 1234 unittest.expect(o.salt, unittest.equals('foo')); |
| 1233 unittest.expect(o.validSince, unittest.equals('foo')); | 1235 unittest.expect(o.validSince, unittest.equals('foo')); |
| 1234 unittest.expect(o.version, unittest.equals(42)); | 1236 unittest.expect(o.version, unittest.equals(42)); |
| 1235 } | 1237 } |
| 1236 buildCounterUserInfo--; | 1238 buildCounterUserInfo--; |
| 1237 } | 1239 } |
| 1238 | 1240 |
| 1239 buildUnnamed2448() { | 1241 buildUnnamed2802() { |
| 1240 var o = new core.List<core.String>(); | 1242 var o = new core.List<core.String>(); |
| 1241 o.add("foo"); | 1243 o.add("foo"); |
| 1242 o.add("foo"); | 1244 o.add("foo"); |
| 1243 return o; | 1245 return o; |
| 1244 } | 1246 } |
| 1245 | 1247 |
| 1246 checkUnnamed2448(core.List<core.String> o) { | 1248 checkUnnamed2802(core.List<core.String> o) { |
| 1247 unittest.expect(o, unittest.hasLength(2)); | 1249 unittest.expect(o, unittest.hasLength(2)); |
| 1248 unittest.expect(o[0], unittest.equals('foo')); | 1250 unittest.expect(o[0], unittest.equals('foo')); |
| 1249 unittest.expect(o[1], unittest.equals('foo')); | 1251 unittest.expect(o[1], unittest.equals('foo')); |
| 1250 } | 1252 } |
| 1251 | 1253 |
| 1252 core.int buildCounterVerifyAssertionResponse = 0; | 1254 core.int buildCounterVerifyAssertionResponse = 0; |
| 1253 buildVerifyAssertionResponse() { | 1255 buildVerifyAssertionResponse() { |
| 1254 var o = new api.VerifyAssertionResponse(); | 1256 var o = new api.VerifyAssertionResponse(); |
| 1255 buildCounterVerifyAssertionResponse++; | 1257 buildCounterVerifyAssertionResponse++; |
| 1256 if (buildCounterVerifyAssertionResponse < 3) { | 1258 if (buildCounterVerifyAssertionResponse < 3) { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 1280 o.oauthAuthorizationCode = "foo"; | 1282 o.oauthAuthorizationCode = "foo"; |
| 1281 o.oauthExpireIn = 42; | 1283 o.oauthExpireIn = 42; |
| 1282 o.oauthIdToken = "foo"; | 1284 o.oauthIdToken = "foo"; |
| 1283 o.oauthRequestToken = "foo"; | 1285 o.oauthRequestToken = "foo"; |
| 1284 o.oauthScope = "foo"; | 1286 o.oauthScope = "foo"; |
| 1285 o.oauthTokenSecret = "foo"; | 1287 o.oauthTokenSecret = "foo"; |
| 1286 o.originalEmail = "foo"; | 1288 o.originalEmail = "foo"; |
| 1287 o.photoUrl = "foo"; | 1289 o.photoUrl = "foo"; |
| 1288 o.providerId = "foo"; | 1290 o.providerId = "foo"; |
| 1289 o.refreshToken = "foo"; | 1291 o.refreshToken = "foo"; |
| 1292 o.screenName = "foo"; |
| 1290 o.timeZone = "foo"; | 1293 o.timeZone = "foo"; |
| 1291 o.verifiedProvider = buildUnnamed2448(); | 1294 o.verifiedProvider = buildUnnamed2802(); |
| 1292 } | 1295 } |
| 1293 buildCounterVerifyAssertionResponse--; | 1296 buildCounterVerifyAssertionResponse--; |
| 1294 return o; | 1297 return o; |
| 1295 } | 1298 } |
| 1296 | 1299 |
| 1297 checkVerifyAssertionResponse(api.VerifyAssertionResponse o) { | 1300 checkVerifyAssertionResponse(api.VerifyAssertionResponse o) { |
| 1298 buildCounterVerifyAssertionResponse++; | 1301 buildCounterVerifyAssertionResponse++; |
| 1299 if (buildCounterVerifyAssertionResponse < 3) { | 1302 if (buildCounterVerifyAssertionResponse < 3) { |
| 1300 unittest.expect(o.action, unittest.equals('foo')); | 1303 unittest.expect(o.action, unittest.equals('foo')); |
| 1301 unittest.expect(o.appInstallationUrl, unittest.equals('foo')); | 1304 unittest.expect(o.appInstallationUrl, unittest.equals('foo')); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 1323 unittest.expect(o.oauthAuthorizationCode, unittest.equals('foo')); | 1326 unittest.expect(o.oauthAuthorizationCode, unittest.equals('foo')); |
| 1324 unittest.expect(o.oauthExpireIn, unittest.equals(42)); | 1327 unittest.expect(o.oauthExpireIn, unittest.equals(42)); |
| 1325 unittest.expect(o.oauthIdToken, unittest.equals('foo')); | 1328 unittest.expect(o.oauthIdToken, unittest.equals('foo')); |
| 1326 unittest.expect(o.oauthRequestToken, unittest.equals('foo')); | 1329 unittest.expect(o.oauthRequestToken, unittest.equals('foo')); |
| 1327 unittest.expect(o.oauthScope, unittest.equals('foo')); | 1330 unittest.expect(o.oauthScope, unittest.equals('foo')); |
| 1328 unittest.expect(o.oauthTokenSecret, unittest.equals('foo')); | 1331 unittest.expect(o.oauthTokenSecret, unittest.equals('foo')); |
| 1329 unittest.expect(o.originalEmail, unittest.equals('foo')); | 1332 unittest.expect(o.originalEmail, unittest.equals('foo')); |
| 1330 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1333 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1331 unittest.expect(o.providerId, unittest.equals('foo')); | 1334 unittest.expect(o.providerId, unittest.equals('foo')); |
| 1332 unittest.expect(o.refreshToken, unittest.equals('foo')); | 1335 unittest.expect(o.refreshToken, unittest.equals('foo')); |
| 1336 unittest.expect(o.screenName, unittest.equals('foo')); |
| 1333 unittest.expect(o.timeZone, unittest.equals('foo')); | 1337 unittest.expect(o.timeZone, unittest.equals('foo')); |
| 1334 checkUnnamed2448(o.verifiedProvider); | 1338 checkUnnamed2802(o.verifiedProvider); |
| 1335 } | 1339 } |
| 1336 buildCounterVerifyAssertionResponse--; | 1340 buildCounterVerifyAssertionResponse--; |
| 1337 } | 1341 } |
| 1338 | 1342 |
| 1339 core.int buildCounterVerifyCustomTokenResponse = 0; | 1343 core.int buildCounterVerifyCustomTokenResponse = 0; |
| 1340 buildVerifyCustomTokenResponse() { | 1344 buildVerifyCustomTokenResponse() { |
| 1341 var o = new api.VerifyCustomTokenResponse(); | 1345 var o = new api.VerifyCustomTokenResponse(); |
| 1342 buildCounterVerifyCustomTokenResponse++; | 1346 buildCounterVerifyCustomTokenResponse++; |
| 1343 if (buildCounterVerifyCustomTokenResponse < 3) { | 1347 if (buildCounterVerifyCustomTokenResponse < 3) { |
| 1344 o.expiresIn = "foo"; | 1348 o.expiresIn = "foo"; |
| (...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2561 res.verifyPassword(arg_request).then(unittest.expectAsync(((api.VerifyPass
wordResponse response) { | 2565 res.verifyPassword(arg_request).then(unittest.expectAsync(((api.VerifyPass
wordResponse response) { |
| 2562 checkVerifyPasswordResponse(response); | 2566 checkVerifyPasswordResponse(response); |
| 2563 }))); | 2567 }))); |
| 2564 }); | 2568 }); |
| 2565 | 2569 |
| 2566 }); | 2570 }); |
| 2567 | 2571 |
| 2568 | 2572 |
| 2569 } | 2573 } |
| 2570 | 2574 |
| OLD | NEW |