| 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 buildUnnamed2785() { | 54 buildUnnamed2584() { |
| 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 checkUnnamed2785(core.List<core.String> o) { | 61 checkUnnamed2584(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 = buildUnnamed2785(); | 72 o.allProviders = buildUnnamed2584(); |
| 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 checkUnnamed2785(o.allProviders); | 88 checkUnnamed2584(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 buildUnnamed2786() { | 119 buildUnnamed2585() { |
| 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 checkUnnamed2786(core.List<api.UserInfo> o) { | 126 checkUnnamed2585(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 = buildUnnamed2786(); | 139 o.users = buildUnnamed2585(); |
| 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 checkUnnamed2786(o.users); | 150 checkUnnamed2585(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 buildUnnamed2787() { | 184 buildUnnamed2586() { |
| 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 checkUnnamed2787(core.List<api.UserInfo> o) { | 191 checkUnnamed2586(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 = buildUnnamed2787(); | 203 o.users = buildUnnamed2586(); |
| 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 checkUnnamed2787(o.users); | 213 checkUnnamed2586(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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 } | 260 } |
| 261 buildCounterGetRecaptchaParamResponse--; | 261 buildCounterGetRecaptchaParamResponse--; |
| 262 } | 262 } |
| 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.authFlowType = "foo"; |
| 270 o.clientId = "foo"; | 271 o.clientId = "foo"; |
| 271 o.context = "foo"; | 272 o.context = "foo"; |
| 272 o.continueUri = "foo"; | 273 o.continueUri = "foo"; |
| 273 o.hostedDomain = "foo"; | 274 o.hostedDomain = "foo"; |
| 274 o.identifier = "foo"; | 275 o.identifier = "foo"; |
| 275 o.oauthConsumerKey = "foo"; | 276 o.oauthConsumerKey = "foo"; |
| 276 o.oauthScope = "foo"; | 277 o.oauthScope = "foo"; |
| 277 o.openidRealm = "foo"; | 278 o.openidRealm = "foo"; |
| 278 o.otaApp = "foo"; | 279 o.otaApp = "foo"; |
| 279 o.providerId = "foo"; | 280 o.providerId = "foo"; |
| 281 o.sessionId = "foo"; |
| 280 } | 282 } |
| 281 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; | 283 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; |
| 282 return o; | 284 return o; |
| 283 } | 285 } |
| 284 | 286 |
| 285 checkIdentitytoolkitRelyingpartyCreateAuthUriRequest(api.IdentitytoolkitRelyingp
artyCreateAuthUriRequest o) { | 287 checkIdentitytoolkitRelyingpartyCreateAuthUriRequest(api.IdentitytoolkitRelyingp
artyCreateAuthUriRequest o) { |
| 286 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++; | 288 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++; |
| 287 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) { | 289 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) { |
| 288 unittest.expect(o.appId, unittest.equals('foo')); | 290 unittest.expect(o.appId, unittest.equals('foo')); |
| 291 unittest.expect(o.authFlowType, unittest.equals('foo')); |
| 289 unittest.expect(o.clientId, unittest.equals('foo')); | 292 unittest.expect(o.clientId, unittest.equals('foo')); |
| 290 unittest.expect(o.context, unittest.equals('foo')); | 293 unittest.expect(o.context, unittest.equals('foo')); |
| 291 unittest.expect(o.continueUri, unittest.equals('foo')); | 294 unittest.expect(o.continueUri, unittest.equals('foo')); |
| 292 unittest.expect(o.hostedDomain, unittest.equals('foo')); | 295 unittest.expect(o.hostedDomain, unittest.equals('foo')); |
| 293 unittest.expect(o.identifier, unittest.equals('foo')); | 296 unittest.expect(o.identifier, unittest.equals('foo')); |
| 294 unittest.expect(o.oauthConsumerKey, unittest.equals('foo')); | 297 unittest.expect(o.oauthConsumerKey, unittest.equals('foo')); |
| 295 unittest.expect(o.oauthScope, unittest.equals('foo')); | 298 unittest.expect(o.oauthScope, unittest.equals('foo')); |
| 296 unittest.expect(o.openidRealm, unittest.equals('foo')); | 299 unittest.expect(o.openidRealm, unittest.equals('foo')); |
| 297 unittest.expect(o.otaApp, unittest.equals('foo')); | 300 unittest.expect(o.otaApp, unittest.equals('foo')); |
| 298 unittest.expect(o.providerId, unittest.equals('foo')); | 301 unittest.expect(o.providerId, unittest.equals('foo')); |
| 302 unittest.expect(o.sessionId, unittest.equals('foo')); |
| 299 } | 303 } |
| 300 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; | 304 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; |
| 301 } | 305 } |
| 302 | 306 |
| 303 core.int buildCounterIdentitytoolkitRelyingpartyDeleteAccountRequest = 0; | 307 core.int buildCounterIdentitytoolkitRelyingpartyDeleteAccountRequest = 0; |
| 304 buildIdentitytoolkitRelyingpartyDeleteAccountRequest() { | 308 buildIdentitytoolkitRelyingpartyDeleteAccountRequest() { |
| 305 var o = new api.IdentitytoolkitRelyingpartyDeleteAccountRequest(); | 309 var o = new api.IdentitytoolkitRelyingpartyDeleteAccountRequest(); |
| 306 buildCounterIdentitytoolkitRelyingpartyDeleteAccountRequest++; | 310 buildCounterIdentitytoolkitRelyingpartyDeleteAccountRequest++; |
| 307 if (buildCounterIdentitytoolkitRelyingpartyDeleteAccountRequest < 3) { | 311 if (buildCounterIdentitytoolkitRelyingpartyDeleteAccountRequest < 3) { |
| 308 o.delegatedProjectNumber = "foo"; | 312 o.delegatedProjectNumber = "foo"; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 339 checkIdentitytoolkitRelyingpartyDownloadAccountRequest(api.IdentitytoolkitRelyin
gpartyDownloadAccountRequest o) { | 343 checkIdentitytoolkitRelyingpartyDownloadAccountRequest(api.IdentitytoolkitRelyin
gpartyDownloadAccountRequest o) { |
| 340 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest++; | 344 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest++; |
| 341 if (buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest < 3) { | 345 if (buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest < 3) { |
| 342 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 346 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 343 unittest.expect(o.maxResults, unittest.equals(42)); | 347 unittest.expect(o.maxResults, unittest.equals(42)); |
| 344 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 348 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 345 } | 349 } |
| 346 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest--; | 350 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest--; |
| 347 } | 351 } |
| 348 | 352 |
| 349 buildUnnamed2788() { | 353 buildUnnamed2587() { |
| 350 var o = new core.List<core.String>(); | 354 var o = new core.List<core.String>(); |
| 351 o.add("foo"); | 355 o.add("foo"); |
| 352 o.add("foo"); | 356 o.add("foo"); |
| 353 return o; | 357 return o; |
| 354 } | 358 } |
| 355 | 359 |
| 356 checkUnnamed2788(core.List<core.String> o) { | 360 checkUnnamed2587(core.List<core.String> o) { |
| 357 unittest.expect(o, unittest.hasLength(2)); | 361 unittest.expect(o, unittest.hasLength(2)); |
| 358 unittest.expect(o[0], unittest.equals('foo')); | 362 unittest.expect(o[0], unittest.equals('foo')); |
| 359 unittest.expect(o[1], unittest.equals('foo')); | 363 unittest.expect(o[1], unittest.equals('foo')); |
| 360 } | 364 } |
| 361 | 365 |
| 362 buildUnnamed2789() { | 366 buildUnnamed2588() { |
| 363 var o = new core.List<core.String>(); | 367 var o = new core.List<core.String>(); |
| 364 o.add("foo"); | 368 o.add("foo"); |
| 365 o.add("foo"); | 369 o.add("foo"); |
| 366 return o; | 370 return o; |
| 367 } | 371 } |
| 368 | 372 |
| 369 checkUnnamed2789(core.List<core.String> o) { | 373 checkUnnamed2588(core.List<core.String> o) { |
| 370 unittest.expect(o, unittest.hasLength(2)); | 374 unittest.expect(o, unittest.hasLength(2)); |
| 371 unittest.expect(o[0], unittest.equals('foo')); | 375 unittest.expect(o[0], unittest.equals('foo')); |
| 372 unittest.expect(o[1], unittest.equals('foo')); | 376 unittest.expect(o[1], unittest.equals('foo')); |
| 373 } | 377 } |
| 374 | 378 |
| 375 core.int buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest = 0; | 379 core.int buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest = 0; |
| 376 buildIdentitytoolkitRelyingpartyGetAccountInfoRequest() { | 380 buildIdentitytoolkitRelyingpartyGetAccountInfoRequest() { |
| 377 var o = new api.IdentitytoolkitRelyingpartyGetAccountInfoRequest(); | 381 var o = new api.IdentitytoolkitRelyingpartyGetAccountInfoRequest(); |
| 378 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; | 382 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; |
| 379 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { | 383 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { |
| 380 o.delegatedProjectNumber = "foo"; | 384 o.delegatedProjectNumber = "foo"; |
| 381 o.email = buildUnnamed2788(); | 385 o.email = buildUnnamed2587(); |
| 382 o.idToken = "foo"; | 386 o.idToken = "foo"; |
| 383 o.localId = buildUnnamed2789(); | 387 o.localId = buildUnnamed2588(); |
| 384 } | 388 } |
| 385 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; | 389 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; |
| 386 return o; | 390 return o; |
| 387 } | 391 } |
| 388 | 392 |
| 389 checkIdentitytoolkitRelyingpartyGetAccountInfoRequest(api.IdentitytoolkitRelying
partyGetAccountInfoRequest o) { | 393 checkIdentitytoolkitRelyingpartyGetAccountInfoRequest(api.IdentitytoolkitRelying
partyGetAccountInfoRequest o) { |
| 390 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; | 394 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; |
| 391 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { | 395 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { |
| 392 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 396 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 393 checkUnnamed2788(o.email); | 397 checkUnnamed2587(o.email); |
| 394 unittest.expect(o.idToken, unittest.equals('foo')); | 398 unittest.expect(o.idToken, unittest.equals('foo')); |
| 395 checkUnnamed2789(o.localId); | 399 checkUnnamed2588(o.localId); |
| 396 } | 400 } |
| 397 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; | 401 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; |
| 398 } | 402 } |
| 399 | 403 |
| 400 buildUnnamed2790() { | 404 buildUnnamed2589() { |
| 401 var o = new core.List<core.String>(); | 405 var o = new core.List<core.String>(); |
| 402 o.add("foo"); | 406 o.add("foo"); |
| 403 o.add("foo"); | 407 o.add("foo"); |
| 404 return o; | 408 return o; |
| 405 } | 409 } |
| 406 | 410 |
| 407 checkUnnamed2790(core.List<core.String> o) { | 411 checkUnnamed2589(core.List<core.String> o) { |
| 408 unittest.expect(o, unittest.hasLength(2)); | 412 unittest.expect(o, unittest.hasLength(2)); |
| 409 unittest.expect(o[0], unittest.equals('foo')); | 413 unittest.expect(o[0], unittest.equals('foo')); |
| 410 unittest.expect(o[1], unittest.equals('foo')); | 414 unittest.expect(o[1], unittest.equals('foo')); |
| 411 } | 415 } |
| 412 | 416 |
| 413 buildUnnamed2791() { | 417 buildUnnamed2590() { |
| 414 var o = new core.List<api.IdpConfig>(); | 418 var o = new core.List<api.IdpConfig>(); |
| 415 o.add(buildIdpConfig()); | 419 o.add(buildIdpConfig()); |
| 416 o.add(buildIdpConfig()); | 420 o.add(buildIdpConfig()); |
| 417 return o; | 421 return o; |
| 418 } | 422 } |
| 419 | 423 |
| 420 checkUnnamed2791(core.List<api.IdpConfig> o) { | 424 checkUnnamed2590(core.List<api.IdpConfig> o) { |
| 421 unittest.expect(o, unittest.hasLength(2)); | 425 unittest.expect(o, unittest.hasLength(2)); |
| 422 checkIdpConfig(o[0]); | 426 checkIdpConfig(o[0]); |
| 423 checkIdpConfig(o[1]); | 427 checkIdpConfig(o[1]); |
| 424 } | 428 } |
| 425 | 429 |
| 426 core.int buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse = 0; | 430 core.int buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse = 0; |
| 427 buildIdentitytoolkitRelyingpartyGetProjectConfigResponse() { | 431 buildIdentitytoolkitRelyingpartyGetProjectConfigResponse() { |
| 428 var o = new api.IdentitytoolkitRelyingpartyGetProjectConfigResponse(); | 432 var o = new api.IdentitytoolkitRelyingpartyGetProjectConfigResponse(); |
| 429 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; | 433 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; |
| 430 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { | 434 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { |
| 431 o.allowPasswordUser = true; | 435 o.allowPasswordUser = true; |
| 432 o.apiKey = "foo"; | 436 o.apiKey = "foo"; |
| 433 o.authorizedDomains = buildUnnamed2790(); | 437 o.authorizedDomains = buildUnnamed2589(); |
| 434 o.changeEmailTemplate = buildEmailTemplate(); | 438 o.changeEmailTemplate = buildEmailTemplate(); |
| 435 o.enableAnonymousUser = true; | 439 o.enableAnonymousUser = true; |
| 436 o.idpConfig = buildUnnamed2791(); | 440 o.idpConfig = buildUnnamed2590(); |
| 437 o.legacyResetPasswordTemplate = buildEmailTemplate(); | 441 o.legacyResetPasswordTemplate = buildEmailTemplate(); |
| 438 o.projectId = "foo"; | 442 o.projectId = "foo"; |
| 439 o.resetPasswordTemplate = buildEmailTemplate(); | 443 o.resetPasswordTemplate = buildEmailTemplate(); |
| 440 o.useEmailSending = true; | 444 o.useEmailSending = true; |
| 441 o.verifyEmailTemplate = buildEmailTemplate(); | 445 o.verifyEmailTemplate = buildEmailTemplate(); |
| 442 } | 446 } |
| 443 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; | 447 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; |
| 444 return o; | 448 return o; |
| 445 } | 449 } |
| 446 | 450 |
| 447 checkIdentitytoolkitRelyingpartyGetProjectConfigResponse(api.IdentitytoolkitRely
ingpartyGetProjectConfigResponse o) { | 451 checkIdentitytoolkitRelyingpartyGetProjectConfigResponse(api.IdentitytoolkitRely
ingpartyGetProjectConfigResponse o) { |
| 448 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; | 452 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; |
| 449 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { | 453 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { |
| 450 unittest.expect(o.allowPasswordUser, unittest.isTrue); | 454 unittest.expect(o.allowPasswordUser, unittest.isTrue); |
| 451 unittest.expect(o.apiKey, unittest.equals('foo')); | 455 unittest.expect(o.apiKey, unittest.equals('foo')); |
| 452 checkUnnamed2790(o.authorizedDomains); | 456 checkUnnamed2589(o.authorizedDomains); |
| 453 checkEmailTemplate(o.changeEmailTemplate); | 457 checkEmailTemplate(o.changeEmailTemplate); |
| 454 unittest.expect(o.enableAnonymousUser, unittest.isTrue); | 458 unittest.expect(o.enableAnonymousUser, unittest.isTrue); |
| 455 checkUnnamed2791(o.idpConfig); | 459 checkUnnamed2590(o.idpConfig); |
| 456 checkEmailTemplate(o.legacyResetPasswordTemplate); | 460 checkEmailTemplate(o.legacyResetPasswordTemplate); |
| 457 unittest.expect(o.projectId, unittest.equals('foo')); | 461 unittest.expect(o.projectId, unittest.equals('foo')); |
| 458 checkEmailTemplate(o.resetPasswordTemplate); | 462 checkEmailTemplate(o.resetPasswordTemplate); |
| 459 unittest.expect(o.useEmailSending, unittest.isTrue); | 463 unittest.expect(o.useEmailSending, unittest.isTrue); |
| 460 checkEmailTemplate(o.verifyEmailTemplate); | 464 checkEmailTemplate(o.verifyEmailTemplate); |
| 461 } | 465 } |
| 462 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; | 466 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; |
| 463 } | 467 } |
| 464 | 468 |
| 465 buildIdentitytoolkitRelyingpartyGetPublicKeysResponse() { | 469 buildIdentitytoolkitRelyingpartyGetPublicKeysResponse() { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 493 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest++; | 497 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest++; |
| 494 if (buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest < 3) { | 498 if (buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest < 3) { |
| 495 unittest.expect(o.email, unittest.equals('foo')); | 499 unittest.expect(o.email, unittest.equals('foo')); |
| 496 unittest.expect(o.newPassword, unittest.equals('foo')); | 500 unittest.expect(o.newPassword, unittest.equals('foo')); |
| 497 unittest.expect(o.oldPassword, unittest.equals('foo')); | 501 unittest.expect(o.oldPassword, unittest.equals('foo')); |
| 498 unittest.expect(o.oobCode, unittest.equals('foo')); | 502 unittest.expect(o.oobCode, unittest.equals('foo')); |
| 499 } | 503 } |
| 500 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest--; | 504 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest--; |
| 501 } | 505 } |
| 502 | 506 |
| 503 buildUnnamed2792() { | 507 buildUnnamed2591() { |
| 504 var o = new core.List<core.String>(); | 508 var o = new core.List<core.String>(); |
| 505 o.add("foo"); | 509 o.add("foo"); |
| 506 o.add("foo"); | 510 o.add("foo"); |
| 507 return o; | 511 return o; |
| 508 } | 512 } |
| 509 | 513 |
| 510 checkUnnamed2792(core.List<core.String> o) { | 514 checkUnnamed2591(core.List<core.String> o) { |
| 511 unittest.expect(o, unittest.hasLength(2)); | 515 unittest.expect(o, unittest.hasLength(2)); |
| 512 unittest.expect(o[0], unittest.equals('foo')); | 516 unittest.expect(o[0], unittest.equals('foo')); |
| 513 unittest.expect(o[1], unittest.equals('foo')); | 517 unittest.expect(o[1], unittest.equals('foo')); |
| 514 } | 518 } |
| 515 | 519 |
| 516 buildUnnamed2793() { | 520 buildUnnamed2592() { |
| 517 var o = new core.List<core.String>(); | 521 var o = new core.List<core.String>(); |
| 518 o.add("foo"); | 522 o.add("foo"); |
| 519 o.add("foo"); | 523 o.add("foo"); |
| 520 return o; | 524 return o; |
| 521 } | 525 } |
| 522 | 526 |
| 523 checkUnnamed2793(core.List<core.String> o) { | 527 checkUnnamed2592(core.List<core.String> o) { |
| 524 unittest.expect(o, unittest.hasLength(2)); | 528 unittest.expect(o, unittest.hasLength(2)); |
| 525 unittest.expect(o[0], unittest.equals('foo')); | 529 unittest.expect(o[0], unittest.equals('foo')); |
| 526 unittest.expect(o[1], unittest.equals('foo')); | 530 unittest.expect(o[1], unittest.equals('foo')); |
| 527 } | 531 } |
| 528 | 532 |
| 529 buildUnnamed2794() { | 533 buildUnnamed2593() { |
| 530 var o = new core.List<core.String>(); | 534 var o = new core.List<core.String>(); |
| 531 o.add("foo"); | 535 o.add("foo"); |
| 532 o.add("foo"); | 536 o.add("foo"); |
| 533 return o; | 537 return o; |
| 534 } | 538 } |
| 535 | 539 |
| 536 checkUnnamed2794(core.List<core.String> o) { | 540 checkUnnamed2593(core.List<core.String> o) { |
| 537 unittest.expect(o, unittest.hasLength(2)); | 541 unittest.expect(o, unittest.hasLength(2)); |
| 538 unittest.expect(o[0], unittest.equals('foo')); | 542 unittest.expect(o[0], unittest.equals('foo')); |
| 539 unittest.expect(o[1], unittest.equals('foo')); | 543 unittest.expect(o[1], unittest.equals('foo')); |
| 540 } | 544 } |
| 541 | 545 |
| 542 core.int buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest = 0; | 546 core.int buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest = 0; |
| 543 buildIdentitytoolkitRelyingpartySetAccountInfoRequest() { | 547 buildIdentitytoolkitRelyingpartySetAccountInfoRequest() { |
| 544 var o = new api.IdentitytoolkitRelyingpartySetAccountInfoRequest(); | 548 var o = new api.IdentitytoolkitRelyingpartySetAccountInfoRequest(); |
| 545 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; | 549 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; |
| 546 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { | 550 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { |
| 547 o.captchaChallenge = "foo"; | 551 o.captchaChallenge = "foo"; |
| 548 o.captchaResponse = "foo"; | 552 o.captchaResponse = "foo"; |
| 549 o.createdAt = "foo"; | 553 o.createdAt = "foo"; |
| 550 o.delegatedProjectNumber = "foo"; | 554 o.delegatedProjectNumber = "foo"; |
| 551 o.deleteAttribute = buildUnnamed2792(); | 555 o.deleteAttribute = buildUnnamed2591(); |
| 552 o.deleteProvider = buildUnnamed2793(); | 556 o.deleteProvider = buildUnnamed2592(); |
| 553 o.disableUser = true; | 557 o.disableUser = true; |
| 554 o.displayName = "foo"; | 558 o.displayName = "foo"; |
| 555 o.email = "foo"; | 559 o.email = "foo"; |
| 556 o.emailVerified = true; | 560 o.emailVerified = true; |
| 557 o.idToken = "foo"; | 561 o.idToken = "foo"; |
| 558 o.instanceId = "foo"; | 562 o.instanceId = "foo"; |
| 559 o.lastLoginAt = "foo"; | 563 o.lastLoginAt = "foo"; |
| 560 o.localId = "foo"; | 564 o.localId = "foo"; |
| 561 o.oobCode = "foo"; | 565 o.oobCode = "foo"; |
| 562 o.password = "foo"; | 566 o.password = "foo"; |
| 563 o.photoUrl = "foo"; | 567 o.photoUrl = "foo"; |
| 564 o.provider = buildUnnamed2794(); | 568 o.provider = buildUnnamed2593(); |
| 565 o.returnSecureToken = true; | 569 o.returnSecureToken = true; |
| 566 o.upgradeToFederatedLogin = true; | 570 o.upgradeToFederatedLogin = true; |
| 567 o.validSince = "foo"; | 571 o.validSince = "foo"; |
| 568 } | 572 } |
| 569 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; | 573 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; |
| 570 return o; | 574 return o; |
| 571 } | 575 } |
| 572 | 576 |
| 573 checkIdentitytoolkitRelyingpartySetAccountInfoRequest(api.IdentitytoolkitRelying
partySetAccountInfoRequest o) { | 577 checkIdentitytoolkitRelyingpartySetAccountInfoRequest(api.IdentitytoolkitRelying
partySetAccountInfoRequest o) { |
| 574 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; | 578 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; |
| 575 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { | 579 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { |
| 576 unittest.expect(o.captchaChallenge, unittest.equals('foo')); | 580 unittest.expect(o.captchaChallenge, unittest.equals('foo')); |
| 577 unittest.expect(o.captchaResponse, unittest.equals('foo')); | 581 unittest.expect(o.captchaResponse, unittest.equals('foo')); |
| 578 unittest.expect(o.createdAt, unittest.equals('foo')); | 582 unittest.expect(o.createdAt, unittest.equals('foo')); |
| 579 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 583 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 580 checkUnnamed2792(o.deleteAttribute); | 584 checkUnnamed2591(o.deleteAttribute); |
| 581 checkUnnamed2793(o.deleteProvider); | 585 checkUnnamed2592(o.deleteProvider); |
| 582 unittest.expect(o.disableUser, unittest.isTrue); | 586 unittest.expect(o.disableUser, unittest.isTrue); |
| 583 unittest.expect(o.displayName, unittest.equals('foo')); | 587 unittest.expect(o.displayName, unittest.equals('foo')); |
| 584 unittest.expect(o.email, unittest.equals('foo')); | 588 unittest.expect(o.email, unittest.equals('foo')); |
| 585 unittest.expect(o.emailVerified, unittest.isTrue); | 589 unittest.expect(o.emailVerified, unittest.isTrue); |
| 586 unittest.expect(o.idToken, unittest.equals('foo')); | 590 unittest.expect(o.idToken, unittest.equals('foo')); |
| 587 unittest.expect(o.instanceId, unittest.equals('foo')); | 591 unittest.expect(o.instanceId, unittest.equals('foo')); |
| 588 unittest.expect(o.lastLoginAt, unittest.equals('foo')); | 592 unittest.expect(o.lastLoginAt, unittest.equals('foo')); |
| 589 unittest.expect(o.localId, unittest.equals('foo')); | 593 unittest.expect(o.localId, unittest.equals('foo')); |
| 590 unittest.expect(o.oobCode, unittest.equals('foo')); | 594 unittest.expect(o.oobCode, unittest.equals('foo')); |
| 591 unittest.expect(o.password, unittest.equals('foo')); | 595 unittest.expect(o.password, unittest.equals('foo')); |
| 592 unittest.expect(o.photoUrl, unittest.equals('foo')); | 596 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 593 checkUnnamed2794(o.provider); | 597 checkUnnamed2593(o.provider); |
| 594 unittest.expect(o.returnSecureToken, unittest.isTrue); | 598 unittest.expect(o.returnSecureToken, unittest.isTrue); |
| 595 unittest.expect(o.upgradeToFederatedLogin, unittest.isTrue); | 599 unittest.expect(o.upgradeToFederatedLogin, unittest.isTrue); |
| 596 unittest.expect(o.validSince, unittest.equals('foo')); | 600 unittest.expect(o.validSince, unittest.equals('foo')); |
| 597 } | 601 } |
| 598 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; | 602 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; |
| 599 } | 603 } |
| 600 | 604 |
| 601 buildUnnamed2795() { | 605 buildUnnamed2594() { |
| 602 var o = new core.List<core.String>(); | 606 var o = new core.List<core.String>(); |
| 603 o.add("foo"); | 607 o.add("foo"); |
| 604 o.add("foo"); | 608 o.add("foo"); |
| 605 return o; | 609 return o; |
| 606 } | 610 } |
| 607 | 611 |
| 608 checkUnnamed2795(core.List<core.String> o) { | 612 checkUnnamed2594(core.List<core.String> o) { |
| 609 unittest.expect(o, unittest.hasLength(2)); | 613 unittest.expect(o, unittest.hasLength(2)); |
| 610 unittest.expect(o[0], unittest.equals('foo')); | 614 unittest.expect(o[0], unittest.equals('foo')); |
| 611 unittest.expect(o[1], unittest.equals('foo')); | 615 unittest.expect(o[1], unittest.equals('foo')); |
| 612 } | 616 } |
| 613 | 617 |
| 614 buildUnnamed2796() { | 618 buildUnnamed2595() { |
| 615 var o = new core.List<api.IdpConfig>(); | 619 var o = new core.List<api.IdpConfig>(); |
| 616 o.add(buildIdpConfig()); | 620 o.add(buildIdpConfig()); |
| 617 o.add(buildIdpConfig()); | 621 o.add(buildIdpConfig()); |
| 618 return o; | 622 return o; |
| 619 } | 623 } |
| 620 | 624 |
| 621 checkUnnamed2796(core.List<api.IdpConfig> o) { | 625 checkUnnamed2595(core.List<api.IdpConfig> o) { |
| 622 unittest.expect(o, unittest.hasLength(2)); | 626 unittest.expect(o, unittest.hasLength(2)); |
| 623 checkIdpConfig(o[0]); | 627 checkIdpConfig(o[0]); |
| 624 checkIdpConfig(o[1]); | 628 checkIdpConfig(o[1]); |
| 625 } | 629 } |
| 626 | 630 |
| 627 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest = 0; | 631 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest = 0; |
| 628 buildIdentitytoolkitRelyingpartySetProjectConfigRequest() { | 632 buildIdentitytoolkitRelyingpartySetProjectConfigRequest() { |
| 629 var o = new api.IdentitytoolkitRelyingpartySetProjectConfigRequest(); | 633 var o = new api.IdentitytoolkitRelyingpartySetProjectConfigRequest(); |
| 630 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; | 634 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; |
| 631 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { | 635 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { |
| 632 o.allowPasswordUser = true; | 636 o.allowPasswordUser = true; |
| 633 o.apiKey = "foo"; | 637 o.apiKey = "foo"; |
| 634 o.authorizedDomains = buildUnnamed2795(); | 638 o.authorizedDomains = buildUnnamed2594(); |
| 635 o.changeEmailTemplate = buildEmailTemplate(); | 639 o.changeEmailTemplate = buildEmailTemplate(); |
| 636 o.delegatedProjectNumber = "foo"; | 640 o.delegatedProjectNumber = "foo"; |
| 637 o.enableAnonymousUser = true; | 641 o.enableAnonymousUser = true; |
| 638 o.idpConfig = buildUnnamed2796(); | 642 o.idpConfig = buildUnnamed2595(); |
| 639 o.legacyResetPasswordTemplate = buildEmailTemplate(); | 643 o.legacyResetPasswordTemplate = buildEmailTemplate(); |
| 640 o.resetPasswordTemplate = buildEmailTemplate(); | 644 o.resetPasswordTemplate = buildEmailTemplate(); |
| 641 o.useEmailSending = true; | 645 o.useEmailSending = true; |
| 642 o.verifyEmailTemplate = buildEmailTemplate(); | 646 o.verifyEmailTemplate = buildEmailTemplate(); |
| 643 } | 647 } |
| 644 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; | 648 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; |
| 645 return o; | 649 return o; |
| 646 } | 650 } |
| 647 | 651 |
| 648 checkIdentitytoolkitRelyingpartySetProjectConfigRequest(api.IdentitytoolkitRelyi
ngpartySetProjectConfigRequest o) { | 652 checkIdentitytoolkitRelyingpartySetProjectConfigRequest(api.IdentitytoolkitRelyi
ngpartySetProjectConfigRequest o) { |
| 649 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; | 653 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; |
| 650 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { | 654 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { |
| 651 unittest.expect(o.allowPasswordUser, unittest.isTrue); | 655 unittest.expect(o.allowPasswordUser, unittest.isTrue); |
| 652 unittest.expect(o.apiKey, unittest.equals('foo')); | 656 unittest.expect(o.apiKey, unittest.equals('foo')); |
| 653 checkUnnamed2795(o.authorizedDomains); | 657 checkUnnamed2594(o.authorizedDomains); |
| 654 checkEmailTemplate(o.changeEmailTemplate); | 658 checkEmailTemplate(o.changeEmailTemplate); |
| 655 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 659 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 656 unittest.expect(o.enableAnonymousUser, unittest.isTrue); | 660 unittest.expect(o.enableAnonymousUser, unittest.isTrue); |
| 657 checkUnnamed2796(o.idpConfig); | 661 checkUnnamed2595(o.idpConfig); |
| 658 checkEmailTemplate(o.legacyResetPasswordTemplate); | 662 checkEmailTemplate(o.legacyResetPasswordTemplate); |
| 659 checkEmailTemplate(o.resetPasswordTemplate); | 663 checkEmailTemplate(o.resetPasswordTemplate); |
| 660 unittest.expect(o.useEmailSending, unittest.isTrue); | 664 unittest.expect(o.useEmailSending, unittest.isTrue); |
| 661 checkEmailTemplate(o.verifyEmailTemplate); | 665 checkEmailTemplate(o.verifyEmailTemplate); |
| 662 } | 666 } |
| 663 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; | 667 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; |
| 664 } | 668 } |
| 665 | 669 |
| 666 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigResponse = 0; | 670 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigResponse = 0; |
| 667 buildIdentitytoolkitRelyingpartySetProjectConfigResponse() { | 671 buildIdentitytoolkitRelyingpartySetProjectConfigResponse() { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 unittest.expect(o.captchaResponse, unittest.equals('foo')); | 750 unittest.expect(o.captchaResponse, unittest.equals('foo')); |
| 747 unittest.expect(o.displayName, unittest.equals('foo')); | 751 unittest.expect(o.displayName, unittest.equals('foo')); |
| 748 unittest.expect(o.email, unittest.equals('foo')); | 752 unittest.expect(o.email, unittest.equals('foo')); |
| 749 unittest.expect(o.idToken, unittest.equals('foo')); | 753 unittest.expect(o.idToken, unittest.equals('foo')); |
| 750 unittest.expect(o.instanceId, unittest.equals('foo')); | 754 unittest.expect(o.instanceId, unittest.equals('foo')); |
| 751 unittest.expect(o.password, unittest.equals('foo')); | 755 unittest.expect(o.password, unittest.equals('foo')); |
| 752 } | 756 } |
| 753 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest--; | 757 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest--; |
| 754 } | 758 } |
| 755 | 759 |
| 756 buildUnnamed2797() { | 760 buildUnnamed2596() { |
| 757 var o = new core.List<api.UserInfo>(); | 761 var o = new core.List<api.UserInfo>(); |
| 758 o.add(buildUserInfo()); | 762 o.add(buildUserInfo()); |
| 759 o.add(buildUserInfo()); | 763 o.add(buildUserInfo()); |
| 760 return o; | 764 return o; |
| 761 } | 765 } |
| 762 | 766 |
| 763 checkUnnamed2797(core.List<api.UserInfo> o) { | 767 checkUnnamed2596(core.List<api.UserInfo> o) { |
| 764 unittest.expect(o, unittest.hasLength(2)); | 768 unittest.expect(o, unittest.hasLength(2)); |
| 765 checkUserInfo(o[0]); | 769 checkUserInfo(o[0]); |
| 766 checkUserInfo(o[1]); | 770 checkUserInfo(o[1]); |
| 767 } | 771 } |
| 768 | 772 |
| 769 core.int buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest = 0; | 773 core.int buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest = 0; |
| 770 buildIdentitytoolkitRelyingpartyUploadAccountRequest() { | 774 buildIdentitytoolkitRelyingpartyUploadAccountRequest() { |
| 771 var o = new api.IdentitytoolkitRelyingpartyUploadAccountRequest(); | 775 var o = new api.IdentitytoolkitRelyingpartyUploadAccountRequest(); |
| 772 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; | 776 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; |
| 773 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { | 777 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { |
| 774 o.delegatedProjectNumber = "foo"; | 778 o.delegatedProjectNumber = "foo"; |
| 775 o.hashAlgorithm = "foo"; | 779 o.hashAlgorithm = "foo"; |
| 776 o.memoryCost = 42; | 780 o.memoryCost = 42; |
| 777 o.rounds = 42; | 781 o.rounds = 42; |
| 778 o.saltSeparator = "foo"; | 782 o.saltSeparator = "foo"; |
| 779 o.signerKey = "foo"; | 783 o.signerKey = "foo"; |
| 780 o.users = buildUnnamed2797(); | 784 o.users = buildUnnamed2596(); |
| 781 } | 785 } |
| 782 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; | 786 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; |
| 783 return o; | 787 return o; |
| 784 } | 788 } |
| 785 | 789 |
| 786 checkIdentitytoolkitRelyingpartyUploadAccountRequest(api.IdentitytoolkitRelyingp
artyUploadAccountRequest o) { | 790 checkIdentitytoolkitRelyingpartyUploadAccountRequest(api.IdentitytoolkitRelyingp
artyUploadAccountRequest o) { |
| 787 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; | 791 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; |
| 788 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { | 792 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { |
| 789 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 793 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 790 unittest.expect(o.hashAlgorithm, unittest.equals('foo')); | 794 unittest.expect(o.hashAlgorithm, unittest.equals('foo')); |
| 791 unittest.expect(o.memoryCost, unittest.equals(42)); | 795 unittest.expect(o.memoryCost, unittest.equals(42)); |
| 792 unittest.expect(o.rounds, unittest.equals(42)); | 796 unittest.expect(o.rounds, unittest.equals(42)); |
| 793 unittest.expect(o.saltSeparator, unittest.equals('foo')); | 797 unittest.expect(o.saltSeparator, unittest.equals('foo')); |
| 794 unittest.expect(o.signerKey, unittest.equals('foo')); | 798 unittest.expect(o.signerKey, unittest.equals('foo')); |
| 795 checkUnnamed2797(o.users); | 799 checkUnnamed2596(o.users); |
| 796 } | 800 } |
| 797 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; | 801 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; |
| 798 } | 802 } |
| 799 | 803 |
| 800 core.int buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest = 0; | 804 core.int buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest = 0; |
| 801 buildIdentitytoolkitRelyingpartyVerifyAssertionRequest() { | 805 buildIdentitytoolkitRelyingpartyVerifyAssertionRequest() { |
| 802 var o = new api.IdentitytoolkitRelyingpartyVerifyAssertionRequest(); | 806 var o = new api.IdentitytoolkitRelyingpartyVerifyAssertionRequest(); |
| 803 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest++; | 807 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest++; |
| 804 if (buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest < 3) { | 808 if (buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest < 3) { |
| 805 o.delegatedProjectNumber = "foo"; | 809 o.delegatedProjectNumber = "foo"; |
| 806 o.idToken = "foo"; | 810 o.idToken = "foo"; |
| 807 o.instanceId = "foo"; | 811 o.instanceId = "foo"; |
| 808 o.pendingIdToken = "foo"; | 812 o.pendingIdToken = "foo"; |
| 809 o.postBody = "foo"; | 813 o.postBody = "foo"; |
| 810 o.requestUri = "foo"; | 814 o.requestUri = "foo"; |
| 815 o.returnIdpCredential = true; |
| 811 o.returnRefreshToken = true; | 816 o.returnRefreshToken = true; |
| 812 o.returnSecureToken = true; | 817 o.returnSecureToken = true; |
| 813 o.sessionId = "foo"; | 818 o.sessionId = "foo"; |
| 814 } | 819 } |
| 815 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest--; | 820 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest--; |
| 816 return o; | 821 return o; |
| 817 } | 822 } |
| 818 | 823 |
| 819 checkIdentitytoolkitRelyingpartyVerifyAssertionRequest(api.IdentitytoolkitRelyin
gpartyVerifyAssertionRequest o) { | 824 checkIdentitytoolkitRelyingpartyVerifyAssertionRequest(api.IdentitytoolkitRelyin
gpartyVerifyAssertionRequest o) { |
| 820 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest++; | 825 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest++; |
| 821 if (buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest < 3) { | 826 if (buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest < 3) { |
| 822 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); | 827 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); |
| 823 unittest.expect(o.idToken, unittest.equals('foo')); | 828 unittest.expect(o.idToken, unittest.equals('foo')); |
| 824 unittest.expect(o.instanceId, unittest.equals('foo')); | 829 unittest.expect(o.instanceId, unittest.equals('foo')); |
| 825 unittest.expect(o.pendingIdToken, unittest.equals('foo')); | 830 unittest.expect(o.pendingIdToken, unittest.equals('foo')); |
| 826 unittest.expect(o.postBody, unittest.equals('foo')); | 831 unittest.expect(o.postBody, unittest.equals('foo')); |
| 827 unittest.expect(o.requestUri, unittest.equals('foo')); | 832 unittest.expect(o.requestUri, unittest.equals('foo')); |
| 833 unittest.expect(o.returnIdpCredential, unittest.isTrue); |
| 828 unittest.expect(o.returnRefreshToken, unittest.isTrue); | 834 unittest.expect(o.returnRefreshToken, unittest.isTrue); |
| 829 unittest.expect(o.returnSecureToken, unittest.isTrue); | 835 unittest.expect(o.returnSecureToken, unittest.isTrue); |
| 830 unittest.expect(o.sessionId, unittest.equals('foo')); | 836 unittest.expect(o.sessionId, unittest.equals('foo')); |
| 831 } | 837 } |
| 832 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest--; | 838 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest--; |
| 833 } | 839 } |
| 834 | 840 |
| 835 core.int buildCounterIdentitytoolkitRelyingpartyVerifyCustomTokenRequest = 0; | 841 core.int buildCounterIdentitytoolkitRelyingpartyVerifyCustomTokenRequest = 0; |
| 836 buildIdentitytoolkitRelyingpartyVerifyCustomTokenRequest() { | 842 buildIdentitytoolkitRelyingpartyVerifyCustomTokenRequest() { |
| 837 var o = new api.IdentitytoolkitRelyingpartyVerifyCustomTokenRequest(); | 843 var o = new api.IdentitytoolkitRelyingpartyVerifyCustomTokenRequest(); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 unittest.expect(o.email, unittest.equals('foo')); | 891 unittest.expect(o.email, unittest.equals('foo')); |
| 886 unittest.expect(o.idToken, unittest.equals('foo')); | 892 unittest.expect(o.idToken, unittest.equals('foo')); |
| 887 unittest.expect(o.instanceId, unittest.equals('foo')); | 893 unittest.expect(o.instanceId, unittest.equals('foo')); |
| 888 unittest.expect(o.password, unittest.equals('foo')); | 894 unittest.expect(o.password, unittest.equals('foo')); |
| 889 unittest.expect(o.pendingIdToken, unittest.equals('foo')); | 895 unittest.expect(o.pendingIdToken, unittest.equals('foo')); |
| 890 unittest.expect(o.returnSecureToken, unittest.isTrue); | 896 unittest.expect(o.returnSecureToken, unittest.isTrue); |
| 891 } | 897 } |
| 892 buildCounterIdentitytoolkitRelyingpartyVerifyPasswordRequest--; | 898 buildCounterIdentitytoolkitRelyingpartyVerifyPasswordRequest--; |
| 893 } | 899 } |
| 894 | 900 |
| 895 buildUnnamed2798() { | 901 buildUnnamed2597() { |
| 896 var o = new core.List<core.String>(); | 902 var o = new core.List<core.String>(); |
| 897 o.add("foo"); | 903 o.add("foo"); |
| 898 o.add("foo"); | 904 o.add("foo"); |
| 899 return o; | 905 return o; |
| 900 } | 906 } |
| 901 | 907 |
| 902 checkUnnamed2798(core.List<core.String> o) { | 908 checkUnnamed2597(core.List<core.String> o) { |
| 903 unittest.expect(o, unittest.hasLength(2)); | 909 unittest.expect(o, unittest.hasLength(2)); |
| 904 unittest.expect(o[0], unittest.equals('foo')); | 910 unittest.expect(o[0], unittest.equals('foo')); |
| 905 unittest.expect(o[1], unittest.equals('foo')); | 911 unittest.expect(o[1], unittest.equals('foo')); |
| 906 } | 912 } |
| 907 | 913 |
| 908 core.int buildCounterIdpConfig = 0; | 914 core.int buildCounterIdpConfig = 0; |
| 909 buildIdpConfig() { | 915 buildIdpConfig() { |
| 910 var o = new api.IdpConfig(); | 916 var o = new api.IdpConfig(); |
| 911 buildCounterIdpConfig++; | 917 buildCounterIdpConfig++; |
| 912 if (buildCounterIdpConfig < 3) { | 918 if (buildCounterIdpConfig < 3) { |
| 913 o.clientId = "foo"; | 919 o.clientId = "foo"; |
| 914 o.enabled = true; | 920 o.enabled = true; |
| 915 o.experimentPercent = 42; | 921 o.experimentPercent = 42; |
| 916 o.provider = "foo"; | 922 o.provider = "foo"; |
| 917 o.secret = "foo"; | 923 o.secret = "foo"; |
| 918 o.whitelistedAudiences = buildUnnamed2798(); | 924 o.whitelistedAudiences = buildUnnamed2597(); |
| 919 } | 925 } |
| 920 buildCounterIdpConfig--; | 926 buildCounterIdpConfig--; |
| 921 return o; | 927 return o; |
| 922 } | 928 } |
| 923 | 929 |
| 924 checkIdpConfig(api.IdpConfig o) { | 930 checkIdpConfig(api.IdpConfig o) { |
| 925 buildCounterIdpConfig++; | 931 buildCounterIdpConfig++; |
| 926 if (buildCounterIdpConfig < 3) { | 932 if (buildCounterIdpConfig < 3) { |
| 927 unittest.expect(o.clientId, unittest.equals('foo')); | 933 unittest.expect(o.clientId, unittest.equals('foo')); |
| 928 unittest.expect(o.enabled, unittest.isTrue); | 934 unittest.expect(o.enabled, unittest.isTrue); |
| 929 unittest.expect(o.experimentPercent, unittest.equals(42)); | 935 unittest.expect(o.experimentPercent, unittest.equals(42)); |
| 930 unittest.expect(o.provider, unittest.equals('foo')); | 936 unittest.expect(o.provider, unittest.equals('foo')); |
| 931 unittest.expect(o.secret, unittest.equals('foo')); | 937 unittest.expect(o.secret, unittest.equals('foo')); |
| 932 checkUnnamed2798(o.whitelistedAudiences); | 938 checkUnnamed2597(o.whitelistedAudiences); |
| 933 } | 939 } |
| 934 buildCounterIdpConfig--; | 940 buildCounterIdpConfig--; |
| 935 } | 941 } |
| 936 | 942 |
| 937 core.int buildCounterRelyingparty = 0; | 943 core.int buildCounterRelyingparty = 0; |
| 938 buildRelyingparty() { | 944 buildRelyingparty() { |
| 939 var o = new api.Relyingparty(); | 945 var o = new api.Relyingparty(); |
| 940 buildCounterRelyingparty++; | 946 buildCounterRelyingparty++; |
| 941 if (buildCounterRelyingparty < 3) { | 947 if (buildCounterRelyingparty < 3) { |
| 942 o.captchaResp = "foo"; | 948 o.captchaResp = "foo"; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 buildCounterSetAccountInfoResponseProviderUserInfo++; | 1012 buildCounterSetAccountInfoResponseProviderUserInfo++; |
| 1007 if (buildCounterSetAccountInfoResponseProviderUserInfo < 3) { | 1013 if (buildCounterSetAccountInfoResponseProviderUserInfo < 3) { |
| 1008 unittest.expect(o.displayName, unittest.equals('foo')); | 1014 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1009 unittest.expect(o.federatedId, unittest.equals('foo')); | 1015 unittest.expect(o.federatedId, unittest.equals('foo')); |
| 1010 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1016 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1011 unittest.expect(o.providerId, unittest.equals('foo')); | 1017 unittest.expect(o.providerId, unittest.equals('foo')); |
| 1012 } | 1018 } |
| 1013 buildCounterSetAccountInfoResponseProviderUserInfo--; | 1019 buildCounterSetAccountInfoResponseProviderUserInfo--; |
| 1014 } | 1020 } |
| 1015 | 1021 |
| 1016 buildUnnamed2799() { | 1022 buildUnnamed2598() { |
| 1017 var o = new core.List<api.SetAccountInfoResponseProviderUserInfo>(); | 1023 var o = new core.List<api.SetAccountInfoResponseProviderUserInfo>(); |
| 1018 o.add(buildSetAccountInfoResponseProviderUserInfo()); | 1024 o.add(buildSetAccountInfoResponseProviderUserInfo()); |
| 1019 o.add(buildSetAccountInfoResponseProviderUserInfo()); | 1025 o.add(buildSetAccountInfoResponseProviderUserInfo()); |
| 1020 return o; | 1026 return o; |
| 1021 } | 1027 } |
| 1022 | 1028 |
| 1023 checkUnnamed2799(core.List<api.SetAccountInfoResponseProviderUserInfo> o) { | 1029 checkUnnamed2598(core.List<api.SetAccountInfoResponseProviderUserInfo> o) { |
| 1024 unittest.expect(o, unittest.hasLength(2)); | 1030 unittest.expect(o, unittest.hasLength(2)); |
| 1025 checkSetAccountInfoResponseProviderUserInfo(o[0]); | 1031 checkSetAccountInfoResponseProviderUserInfo(o[0]); |
| 1026 checkSetAccountInfoResponseProviderUserInfo(o[1]); | 1032 checkSetAccountInfoResponseProviderUserInfo(o[1]); |
| 1027 } | 1033 } |
| 1028 | 1034 |
| 1029 core.int buildCounterSetAccountInfoResponse = 0; | 1035 core.int buildCounterSetAccountInfoResponse = 0; |
| 1030 buildSetAccountInfoResponse() { | 1036 buildSetAccountInfoResponse() { |
| 1031 var o = new api.SetAccountInfoResponse(); | 1037 var o = new api.SetAccountInfoResponse(); |
| 1032 buildCounterSetAccountInfoResponse++; | 1038 buildCounterSetAccountInfoResponse++; |
| 1033 if (buildCounterSetAccountInfoResponse < 3) { | 1039 if (buildCounterSetAccountInfoResponse < 3) { |
| 1034 o.displayName = "foo"; | 1040 o.displayName = "foo"; |
| 1035 o.email = "foo"; | 1041 o.email = "foo"; |
| 1036 o.expiresIn = "foo"; | 1042 o.expiresIn = "foo"; |
| 1037 o.idToken = "foo"; | 1043 o.idToken = "foo"; |
| 1038 o.kind = "foo"; | 1044 o.kind = "foo"; |
| 1039 o.localId = "foo"; | 1045 o.localId = "foo"; |
| 1040 o.newEmail = "foo"; | 1046 o.newEmail = "foo"; |
| 1041 o.passwordHash = "foo"; | 1047 o.passwordHash = "foo"; |
| 1042 o.photoUrl = "foo"; | 1048 o.photoUrl = "foo"; |
| 1043 o.providerUserInfo = buildUnnamed2799(); | 1049 o.providerUserInfo = buildUnnamed2598(); |
| 1044 o.refreshToken = "foo"; | 1050 o.refreshToken = "foo"; |
| 1045 } | 1051 } |
| 1046 buildCounterSetAccountInfoResponse--; | 1052 buildCounterSetAccountInfoResponse--; |
| 1047 return o; | 1053 return o; |
| 1048 } | 1054 } |
| 1049 | 1055 |
| 1050 checkSetAccountInfoResponse(api.SetAccountInfoResponse o) { | 1056 checkSetAccountInfoResponse(api.SetAccountInfoResponse o) { |
| 1051 buildCounterSetAccountInfoResponse++; | 1057 buildCounterSetAccountInfoResponse++; |
| 1052 if (buildCounterSetAccountInfoResponse < 3) { | 1058 if (buildCounterSetAccountInfoResponse < 3) { |
| 1053 unittest.expect(o.displayName, unittest.equals('foo')); | 1059 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1054 unittest.expect(o.email, unittest.equals('foo')); | 1060 unittest.expect(o.email, unittest.equals('foo')); |
| 1055 unittest.expect(o.expiresIn, unittest.equals('foo')); | 1061 unittest.expect(o.expiresIn, unittest.equals('foo')); |
| 1056 unittest.expect(o.idToken, unittest.equals('foo')); | 1062 unittest.expect(o.idToken, unittest.equals('foo')); |
| 1057 unittest.expect(o.kind, unittest.equals('foo')); | 1063 unittest.expect(o.kind, unittest.equals('foo')); |
| 1058 unittest.expect(o.localId, unittest.equals('foo')); | 1064 unittest.expect(o.localId, unittest.equals('foo')); |
| 1059 unittest.expect(o.newEmail, unittest.equals('foo')); | 1065 unittest.expect(o.newEmail, unittest.equals('foo')); |
| 1060 unittest.expect(o.passwordHash, unittest.equals('foo')); | 1066 unittest.expect(o.passwordHash, unittest.equals('foo')); |
| 1061 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1067 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1062 checkUnnamed2799(o.providerUserInfo); | 1068 checkUnnamed2598(o.providerUserInfo); |
| 1063 unittest.expect(o.refreshToken, unittest.equals('foo')); | 1069 unittest.expect(o.refreshToken, unittest.equals('foo')); |
| 1064 } | 1070 } |
| 1065 buildCounterSetAccountInfoResponse--; | 1071 buildCounterSetAccountInfoResponse--; |
| 1066 } | 1072 } |
| 1067 | 1073 |
| 1068 core.int buildCounterSignupNewUserResponse = 0; | 1074 core.int buildCounterSignupNewUserResponse = 0; |
| 1069 buildSignupNewUserResponse() { | 1075 buildSignupNewUserResponse() { |
| 1070 var o = new api.SignupNewUserResponse(); | 1076 var o = new api.SignupNewUserResponse(); |
| 1071 buildCounterSignupNewUserResponse++; | 1077 buildCounterSignupNewUserResponse++; |
| 1072 if (buildCounterSignupNewUserResponse < 3) { | 1078 if (buildCounterSignupNewUserResponse < 3) { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1110 | 1116 |
| 1111 checkUploadAccountResponseError(api.UploadAccountResponseError o) { | 1117 checkUploadAccountResponseError(api.UploadAccountResponseError o) { |
| 1112 buildCounterUploadAccountResponseError++; | 1118 buildCounterUploadAccountResponseError++; |
| 1113 if (buildCounterUploadAccountResponseError < 3) { | 1119 if (buildCounterUploadAccountResponseError < 3) { |
| 1114 unittest.expect(o.index, unittest.equals(42)); | 1120 unittest.expect(o.index, unittest.equals(42)); |
| 1115 unittest.expect(o.message, unittest.equals('foo')); | 1121 unittest.expect(o.message, unittest.equals('foo')); |
| 1116 } | 1122 } |
| 1117 buildCounterUploadAccountResponseError--; | 1123 buildCounterUploadAccountResponseError--; |
| 1118 } | 1124 } |
| 1119 | 1125 |
| 1120 buildUnnamed2800() { | 1126 buildUnnamed2599() { |
| 1121 var o = new core.List<api.UploadAccountResponseError>(); | 1127 var o = new core.List<api.UploadAccountResponseError>(); |
| 1122 o.add(buildUploadAccountResponseError()); | 1128 o.add(buildUploadAccountResponseError()); |
| 1123 o.add(buildUploadAccountResponseError()); | 1129 o.add(buildUploadAccountResponseError()); |
| 1124 return o; | 1130 return o; |
| 1125 } | 1131 } |
| 1126 | 1132 |
| 1127 checkUnnamed2800(core.List<api.UploadAccountResponseError> o) { | 1133 checkUnnamed2599(core.List<api.UploadAccountResponseError> o) { |
| 1128 unittest.expect(o, unittest.hasLength(2)); | 1134 unittest.expect(o, unittest.hasLength(2)); |
| 1129 checkUploadAccountResponseError(o[0]); | 1135 checkUploadAccountResponseError(o[0]); |
| 1130 checkUploadAccountResponseError(o[1]); | 1136 checkUploadAccountResponseError(o[1]); |
| 1131 } | 1137 } |
| 1132 | 1138 |
| 1133 core.int buildCounterUploadAccountResponse = 0; | 1139 core.int buildCounterUploadAccountResponse = 0; |
| 1134 buildUploadAccountResponse() { | 1140 buildUploadAccountResponse() { |
| 1135 var o = new api.UploadAccountResponse(); | 1141 var o = new api.UploadAccountResponse(); |
| 1136 buildCounterUploadAccountResponse++; | 1142 buildCounterUploadAccountResponse++; |
| 1137 if (buildCounterUploadAccountResponse < 3) { | 1143 if (buildCounterUploadAccountResponse < 3) { |
| 1138 o.error = buildUnnamed2800(); | 1144 o.error = buildUnnamed2599(); |
| 1139 o.kind = "foo"; | 1145 o.kind = "foo"; |
| 1140 } | 1146 } |
| 1141 buildCounterUploadAccountResponse--; | 1147 buildCounterUploadAccountResponse--; |
| 1142 return o; | 1148 return o; |
| 1143 } | 1149 } |
| 1144 | 1150 |
| 1145 checkUploadAccountResponse(api.UploadAccountResponse o) { | 1151 checkUploadAccountResponse(api.UploadAccountResponse o) { |
| 1146 buildCounterUploadAccountResponse++; | 1152 buildCounterUploadAccountResponse++; |
| 1147 if (buildCounterUploadAccountResponse < 3) { | 1153 if (buildCounterUploadAccountResponse < 3) { |
| 1148 checkUnnamed2800(o.error); | 1154 checkUnnamed2599(o.error); |
| 1149 unittest.expect(o.kind, unittest.equals('foo')); | 1155 unittest.expect(o.kind, unittest.equals('foo')); |
| 1150 } | 1156 } |
| 1151 buildCounterUploadAccountResponse--; | 1157 buildCounterUploadAccountResponse--; |
| 1152 } | 1158 } |
| 1153 | 1159 |
| 1154 core.int buildCounterUserInfoProviderUserInfo = 0; | 1160 core.int buildCounterUserInfoProviderUserInfo = 0; |
| 1155 buildUserInfoProviderUserInfo() { | 1161 buildUserInfoProviderUserInfo() { |
| 1156 var o = new api.UserInfoProviderUserInfo(); | 1162 var o = new api.UserInfoProviderUserInfo(); |
| 1157 buildCounterUserInfoProviderUserInfo++; | 1163 buildCounterUserInfoProviderUserInfo++; |
| 1158 if (buildCounterUserInfoProviderUserInfo < 3) { | 1164 if (buildCounterUserInfoProviderUserInfo < 3) { |
| 1159 o.displayName = "foo"; | 1165 o.displayName = "foo"; |
| 1160 o.email = "foo"; | 1166 o.email = "foo"; |
| 1161 o.federatedId = "foo"; | 1167 o.federatedId = "foo"; |
| 1162 o.photoUrl = "foo"; | 1168 o.photoUrl = "foo"; |
| 1163 o.providerId = "foo"; | 1169 o.providerId = "foo"; |
| 1164 o.rawId = "foo"; | 1170 o.rawId = "foo"; |
| 1171 o.rawUserInfo = "foo"; |
| 1172 o.screenName = "foo"; |
| 1165 } | 1173 } |
| 1166 buildCounterUserInfoProviderUserInfo--; | 1174 buildCounterUserInfoProviderUserInfo--; |
| 1167 return o; | 1175 return o; |
| 1168 } | 1176 } |
| 1169 | 1177 |
| 1170 checkUserInfoProviderUserInfo(api.UserInfoProviderUserInfo o) { | 1178 checkUserInfoProviderUserInfo(api.UserInfoProviderUserInfo o) { |
| 1171 buildCounterUserInfoProviderUserInfo++; | 1179 buildCounterUserInfoProviderUserInfo++; |
| 1172 if (buildCounterUserInfoProviderUserInfo < 3) { | 1180 if (buildCounterUserInfoProviderUserInfo < 3) { |
| 1173 unittest.expect(o.displayName, unittest.equals('foo')); | 1181 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1174 unittest.expect(o.email, unittest.equals('foo')); | 1182 unittest.expect(o.email, unittest.equals('foo')); |
| 1175 unittest.expect(o.federatedId, unittest.equals('foo')); | 1183 unittest.expect(o.federatedId, unittest.equals('foo')); |
| 1176 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1184 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1177 unittest.expect(o.providerId, unittest.equals('foo')); | 1185 unittest.expect(o.providerId, unittest.equals('foo')); |
| 1178 unittest.expect(o.rawId, unittest.equals('foo')); | 1186 unittest.expect(o.rawId, unittest.equals('foo')); |
| 1187 unittest.expect(o.rawUserInfo, unittest.equals('foo')); |
| 1188 unittest.expect(o.screenName, unittest.equals('foo')); |
| 1179 } | 1189 } |
| 1180 buildCounterUserInfoProviderUserInfo--; | 1190 buildCounterUserInfoProviderUserInfo--; |
| 1181 } | 1191 } |
| 1182 | 1192 |
| 1183 buildUnnamed2801() { | 1193 buildUnnamed2600() { |
| 1184 var o = new core.List<api.UserInfoProviderUserInfo>(); | 1194 var o = new core.List<api.UserInfoProviderUserInfo>(); |
| 1185 o.add(buildUserInfoProviderUserInfo()); | 1195 o.add(buildUserInfoProviderUserInfo()); |
| 1186 o.add(buildUserInfoProviderUserInfo()); | 1196 o.add(buildUserInfoProviderUserInfo()); |
| 1187 return o; | 1197 return o; |
| 1188 } | 1198 } |
| 1189 | 1199 |
| 1190 checkUnnamed2801(core.List<api.UserInfoProviderUserInfo> o) { | 1200 checkUnnamed2600(core.List<api.UserInfoProviderUserInfo> o) { |
| 1191 unittest.expect(o, unittest.hasLength(2)); | 1201 unittest.expect(o, unittest.hasLength(2)); |
| 1192 checkUserInfoProviderUserInfo(o[0]); | 1202 checkUserInfoProviderUserInfo(o[0]); |
| 1193 checkUserInfoProviderUserInfo(o[1]); | 1203 checkUserInfoProviderUserInfo(o[1]); |
| 1194 } | 1204 } |
| 1195 | 1205 |
| 1196 core.int buildCounterUserInfo = 0; | 1206 core.int buildCounterUserInfo = 0; |
| 1197 buildUserInfo() { | 1207 buildUserInfo() { |
| 1198 var o = new api.UserInfo(); | 1208 var o = new api.UserInfo(); |
| 1199 buildCounterUserInfo++; | 1209 buildCounterUserInfo++; |
| 1200 if (buildCounterUserInfo < 3) { | 1210 if (buildCounterUserInfo < 3) { |
| 1201 o.createdAt = "foo"; | 1211 o.createdAt = "foo"; |
| 1202 o.disabled = true; | 1212 o.disabled = true; |
| 1203 o.displayName = "foo"; | 1213 o.displayName = "foo"; |
| 1204 o.email = "foo"; | 1214 o.email = "foo"; |
| 1205 o.emailVerified = true; | 1215 o.emailVerified = true; |
| 1206 o.lastLoginAt = "foo"; | 1216 o.lastLoginAt = "foo"; |
| 1207 o.localId = "foo"; | 1217 o.localId = "foo"; |
| 1208 o.passwordHash = "foo"; | 1218 o.passwordHash = "foo"; |
| 1209 o.passwordUpdatedAt = 42.0; | 1219 o.passwordUpdatedAt = 42.0; |
| 1210 o.photoUrl = "foo"; | 1220 o.photoUrl = "foo"; |
| 1211 o.providerUserInfo = buildUnnamed2801(); | 1221 o.providerUserInfo = buildUnnamed2600(); |
| 1212 o.salt = "foo"; | 1222 o.salt = "foo"; |
| 1223 o.screenName = "foo"; |
| 1213 o.validSince = "foo"; | 1224 o.validSince = "foo"; |
| 1214 o.version = 42; | 1225 o.version = 42; |
| 1215 } | 1226 } |
| 1216 buildCounterUserInfo--; | 1227 buildCounterUserInfo--; |
| 1217 return o; | 1228 return o; |
| 1218 } | 1229 } |
| 1219 | 1230 |
| 1220 checkUserInfo(api.UserInfo o) { | 1231 checkUserInfo(api.UserInfo o) { |
| 1221 buildCounterUserInfo++; | 1232 buildCounterUserInfo++; |
| 1222 if (buildCounterUserInfo < 3) { | 1233 if (buildCounterUserInfo < 3) { |
| 1223 unittest.expect(o.createdAt, unittest.equals('foo')); | 1234 unittest.expect(o.createdAt, unittest.equals('foo')); |
| 1224 unittest.expect(o.disabled, unittest.isTrue); | 1235 unittest.expect(o.disabled, unittest.isTrue); |
| 1225 unittest.expect(o.displayName, unittest.equals('foo')); | 1236 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1226 unittest.expect(o.email, unittest.equals('foo')); | 1237 unittest.expect(o.email, unittest.equals('foo')); |
| 1227 unittest.expect(o.emailVerified, unittest.isTrue); | 1238 unittest.expect(o.emailVerified, unittest.isTrue); |
| 1228 unittest.expect(o.lastLoginAt, unittest.equals('foo')); | 1239 unittest.expect(o.lastLoginAt, unittest.equals('foo')); |
| 1229 unittest.expect(o.localId, unittest.equals('foo')); | 1240 unittest.expect(o.localId, unittest.equals('foo')); |
| 1230 unittest.expect(o.passwordHash, unittest.equals('foo')); | 1241 unittest.expect(o.passwordHash, unittest.equals('foo')); |
| 1231 unittest.expect(o.passwordUpdatedAt, unittest.equals(42.0)); | 1242 unittest.expect(o.passwordUpdatedAt, unittest.equals(42.0)); |
| 1232 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1243 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1233 checkUnnamed2801(o.providerUserInfo); | 1244 checkUnnamed2600(o.providerUserInfo); |
| 1234 unittest.expect(o.salt, unittest.equals('foo')); | 1245 unittest.expect(o.salt, unittest.equals('foo')); |
| 1246 unittest.expect(o.screenName, unittest.equals('foo')); |
| 1235 unittest.expect(o.validSince, unittest.equals('foo')); | 1247 unittest.expect(o.validSince, unittest.equals('foo')); |
| 1236 unittest.expect(o.version, unittest.equals(42)); | 1248 unittest.expect(o.version, unittest.equals(42)); |
| 1237 } | 1249 } |
| 1238 buildCounterUserInfo--; | 1250 buildCounterUserInfo--; |
| 1239 } | 1251 } |
| 1240 | 1252 |
| 1241 buildUnnamed2802() { | 1253 buildUnnamed2601() { |
| 1242 var o = new core.List<core.String>(); | 1254 var o = new core.List<core.String>(); |
| 1243 o.add("foo"); | 1255 o.add("foo"); |
| 1244 o.add("foo"); | 1256 o.add("foo"); |
| 1245 return o; | 1257 return o; |
| 1246 } | 1258 } |
| 1247 | 1259 |
| 1248 checkUnnamed2802(core.List<core.String> o) { | 1260 checkUnnamed2601(core.List<core.String> o) { |
| 1249 unittest.expect(o, unittest.hasLength(2)); | 1261 unittest.expect(o, unittest.hasLength(2)); |
| 1250 unittest.expect(o[0], unittest.equals('foo')); | 1262 unittest.expect(o[0], unittest.equals('foo')); |
| 1251 unittest.expect(o[1], unittest.equals('foo')); | 1263 unittest.expect(o[1], unittest.equals('foo')); |
| 1252 } | 1264 } |
| 1253 | 1265 |
| 1254 core.int buildCounterVerifyAssertionResponse = 0; | 1266 core.int buildCounterVerifyAssertionResponse = 0; |
| 1255 buildVerifyAssertionResponse() { | 1267 buildVerifyAssertionResponse() { |
| 1256 var o = new api.VerifyAssertionResponse(); | 1268 var o = new api.VerifyAssertionResponse(); |
| 1257 buildCounterVerifyAssertionResponse++; | 1269 buildCounterVerifyAssertionResponse++; |
| 1258 if (buildCounterVerifyAssertionResponse < 3) { | 1270 if (buildCounterVerifyAssertionResponse < 3) { |
| 1259 o.action = "foo"; | 1271 o.action = "foo"; |
| 1260 o.appInstallationUrl = "foo"; | 1272 o.appInstallationUrl = "foo"; |
| 1261 o.appScheme = "foo"; | 1273 o.appScheme = "foo"; |
| 1262 o.context = "foo"; | 1274 o.context = "foo"; |
| 1263 o.dateOfBirth = "foo"; | 1275 o.dateOfBirth = "foo"; |
| 1264 o.displayName = "foo"; | 1276 o.displayName = "foo"; |
| 1265 o.email = "foo"; | 1277 o.email = "foo"; |
| 1266 o.emailRecycled = true; | 1278 o.emailRecycled = true; |
| 1267 o.emailVerified = true; | 1279 o.emailVerified = true; |
| 1280 o.errorMessage = "foo"; |
| 1268 o.expiresIn = "foo"; | 1281 o.expiresIn = "foo"; |
| 1269 o.federatedId = "foo"; | 1282 o.federatedId = "foo"; |
| 1270 o.firstName = "foo"; | 1283 o.firstName = "foo"; |
| 1271 o.fullName = "foo"; | 1284 o.fullName = "foo"; |
| 1272 o.idToken = "foo"; | 1285 o.idToken = "foo"; |
| 1273 o.inputEmail = "foo"; | 1286 o.inputEmail = "foo"; |
| 1274 o.kind = "foo"; | 1287 o.kind = "foo"; |
| 1275 o.language = "foo"; | 1288 o.language = "foo"; |
| 1276 o.lastName = "foo"; | 1289 o.lastName = "foo"; |
| 1277 o.localId = "foo"; | 1290 o.localId = "foo"; |
| 1278 o.needConfirmation = true; | 1291 o.needConfirmation = true; |
| 1279 o.needEmail = true; | 1292 o.needEmail = true; |
| 1280 o.nickName = "foo"; | 1293 o.nickName = "foo"; |
| 1281 o.oauthAccessToken = "foo"; | 1294 o.oauthAccessToken = "foo"; |
| 1282 o.oauthAuthorizationCode = "foo"; | 1295 o.oauthAuthorizationCode = "foo"; |
| 1283 o.oauthExpireIn = 42; | 1296 o.oauthExpireIn = 42; |
| 1284 o.oauthIdToken = "foo"; | 1297 o.oauthIdToken = "foo"; |
| 1285 o.oauthRequestToken = "foo"; | 1298 o.oauthRequestToken = "foo"; |
| 1286 o.oauthScope = "foo"; | 1299 o.oauthScope = "foo"; |
| 1287 o.oauthTokenSecret = "foo"; | 1300 o.oauthTokenSecret = "foo"; |
| 1288 o.originalEmail = "foo"; | 1301 o.originalEmail = "foo"; |
| 1289 o.photoUrl = "foo"; | 1302 o.photoUrl = "foo"; |
| 1290 o.providerId = "foo"; | 1303 o.providerId = "foo"; |
| 1304 o.rawUserInfo = "foo"; |
| 1291 o.refreshToken = "foo"; | 1305 o.refreshToken = "foo"; |
| 1292 o.screenName = "foo"; | 1306 o.screenName = "foo"; |
| 1293 o.timeZone = "foo"; | 1307 o.timeZone = "foo"; |
| 1294 o.verifiedProvider = buildUnnamed2802(); | 1308 o.verifiedProvider = buildUnnamed2601(); |
| 1295 } | 1309 } |
| 1296 buildCounterVerifyAssertionResponse--; | 1310 buildCounterVerifyAssertionResponse--; |
| 1297 return o; | 1311 return o; |
| 1298 } | 1312 } |
| 1299 | 1313 |
| 1300 checkVerifyAssertionResponse(api.VerifyAssertionResponse o) { | 1314 checkVerifyAssertionResponse(api.VerifyAssertionResponse o) { |
| 1301 buildCounterVerifyAssertionResponse++; | 1315 buildCounterVerifyAssertionResponse++; |
| 1302 if (buildCounterVerifyAssertionResponse < 3) { | 1316 if (buildCounterVerifyAssertionResponse < 3) { |
| 1303 unittest.expect(o.action, unittest.equals('foo')); | 1317 unittest.expect(o.action, unittest.equals('foo')); |
| 1304 unittest.expect(o.appInstallationUrl, unittest.equals('foo')); | 1318 unittest.expect(o.appInstallationUrl, unittest.equals('foo')); |
| 1305 unittest.expect(o.appScheme, unittest.equals('foo')); | 1319 unittest.expect(o.appScheme, unittest.equals('foo')); |
| 1306 unittest.expect(o.context, unittest.equals('foo')); | 1320 unittest.expect(o.context, unittest.equals('foo')); |
| 1307 unittest.expect(o.dateOfBirth, unittest.equals('foo')); | 1321 unittest.expect(o.dateOfBirth, unittest.equals('foo')); |
| 1308 unittest.expect(o.displayName, unittest.equals('foo')); | 1322 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1309 unittest.expect(o.email, unittest.equals('foo')); | 1323 unittest.expect(o.email, unittest.equals('foo')); |
| 1310 unittest.expect(o.emailRecycled, unittest.isTrue); | 1324 unittest.expect(o.emailRecycled, unittest.isTrue); |
| 1311 unittest.expect(o.emailVerified, unittest.isTrue); | 1325 unittest.expect(o.emailVerified, unittest.isTrue); |
| 1326 unittest.expect(o.errorMessage, unittest.equals('foo')); |
| 1312 unittest.expect(o.expiresIn, unittest.equals('foo')); | 1327 unittest.expect(o.expiresIn, unittest.equals('foo')); |
| 1313 unittest.expect(o.federatedId, unittest.equals('foo')); | 1328 unittest.expect(o.federatedId, unittest.equals('foo')); |
| 1314 unittest.expect(o.firstName, unittest.equals('foo')); | 1329 unittest.expect(o.firstName, unittest.equals('foo')); |
| 1315 unittest.expect(o.fullName, unittest.equals('foo')); | 1330 unittest.expect(o.fullName, unittest.equals('foo')); |
| 1316 unittest.expect(o.idToken, unittest.equals('foo')); | 1331 unittest.expect(o.idToken, unittest.equals('foo')); |
| 1317 unittest.expect(o.inputEmail, unittest.equals('foo')); | 1332 unittest.expect(o.inputEmail, unittest.equals('foo')); |
| 1318 unittest.expect(o.kind, unittest.equals('foo')); | 1333 unittest.expect(o.kind, unittest.equals('foo')); |
| 1319 unittest.expect(o.language, unittest.equals('foo')); | 1334 unittest.expect(o.language, unittest.equals('foo')); |
| 1320 unittest.expect(o.lastName, unittest.equals('foo')); | 1335 unittest.expect(o.lastName, unittest.equals('foo')); |
| 1321 unittest.expect(o.localId, unittest.equals('foo')); | 1336 unittest.expect(o.localId, unittest.equals('foo')); |
| 1322 unittest.expect(o.needConfirmation, unittest.isTrue); | 1337 unittest.expect(o.needConfirmation, unittest.isTrue); |
| 1323 unittest.expect(o.needEmail, unittest.isTrue); | 1338 unittest.expect(o.needEmail, unittest.isTrue); |
| 1324 unittest.expect(o.nickName, unittest.equals('foo')); | 1339 unittest.expect(o.nickName, unittest.equals('foo')); |
| 1325 unittest.expect(o.oauthAccessToken, unittest.equals('foo')); | 1340 unittest.expect(o.oauthAccessToken, unittest.equals('foo')); |
| 1326 unittest.expect(o.oauthAuthorizationCode, unittest.equals('foo')); | 1341 unittest.expect(o.oauthAuthorizationCode, unittest.equals('foo')); |
| 1327 unittest.expect(o.oauthExpireIn, unittest.equals(42)); | 1342 unittest.expect(o.oauthExpireIn, unittest.equals(42)); |
| 1328 unittest.expect(o.oauthIdToken, unittest.equals('foo')); | 1343 unittest.expect(o.oauthIdToken, unittest.equals('foo')); |
| 1329 unittest.expect(o.oauthRequestToken, unittest.equals('foo')); | 1344 unittest.expect(o.oauthRequestToken, unittest.equals('foo')); |
| 1330 unittest.expect(o.oauthScope, unittest.equals('foo')); | 1345 unittest.expect(o.oauthScope, unittest.equals('foo')); |
| 1331 unittest.expect(o.oauthTokenSecret, unittest.equals('foo')); | 1346 unittest.expect(o.oauthTokenSecret, unittest.equals('foo')); |
| 1332 unittest.expect(o.originalEmail, unittest.equals('foo')); | 1347 unittest.expect(o.originalEmail, unittest.equals('foo')); |
| 1333 unittest.expect(o.photoUrl, unittest.equals('foo')); | 1348 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 1334 unittest.expect(o.providerId, unittest.equals('foo')); | 1349 unittest.expect(o.providerId, unittest.equals('foo')); |
| 1350 unittest.expect(o.rawUserInfo, unittest.equals('foo')); |
| 1335 unittest.expect(o.refreshToken, unittest.equals('foo')); | 1351 unittest.expect(o.refreshToken, unittest.equals('foo')); |
| 1336 unittest.expect(o.screenName, unittest.equals('foo')); | 1352 unittest.expect(o.screenName, unittest.equals('foo')); |
| 1337 unittest.expect(o.timeZone, unittest.equals('foo')); | 1353 unittest.expect(o.timeZone, unittest.equals('foo')); |
| 1338 checkUnnamed2802(o.verifiedProvider); | 1354 checkUnnamed2601(o.verifiedProvider); |
| 1339 } | 1355 } |
| 1340 buildCounterVerifyAssertionResponse--; | 1356 buildCounterVerifyAssertionResponse--; |
| 1341 } | 1357 } |
| 1342 | 1358 |
| 1343 core.int buildCounterVerifyCustomTokenResponse = 0; | 1359 core.int buildCounterVerifyCustomTokenResponse = 0; |
| 1344 buildVerifyCustomTokenResponse() { | 1360 buildVerifyCustomTokenResponse() { |
| 1345 var o = new api.VerifyCustomTokenResponse(); | 1361 var o = new api.VerifyCustomTokenResponse(); |
| 1346 buildCounterVerifyCustomTokenResponse++; | 1362 buildCounterVerifyCustomTokenResponse++; |
| 1347 if (buildCounterVerifyCustomTokenResponse < 3) { | 1363 if (buildCounterVerifyCustomTokenResponse < 3) { |
| 1348 o.expiresIn = "foo"; | 1364 o.expiresIn = "foo"; |
| (...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2565 res.verifyPassword(arg_request).then(unittest.expectAsync(((api.VerifyPass
wordResponse response) { | 2581 res.verifyPassword(arg_request).then(unittest.expectAsync(((api.VerifyPass
wordResponse response) { |
| 2566 checkVerifyPasswordResponse(response); | 2582 checkVerifyPasswordResponse(response); |
| 2567 }))); | 2583 }))); |
| 2568 }); | 2584 }); |
| 2569 | 2585 |
| 2570 }); | 2586 }); |
| 2571 | 2587 |
| 2572 | 2588 |
| 2573 } | 2589 } |
| 2574 | 2590 |
| OLD | NEW |