@@ -289,137 +289,6 @@ public function testCanListPersons()
289
289
static ::compatAssertIsArray ($ resources ->data );
290
290
}
291
291
292
- // TODO (MAJOR): Remove legal_entity/additional_owners logic.
293
- public function testSerializeNewAdditionalOwners ()
294
- {
295
- /** @var Account $obj */
296
- $ obj = Util \Util::convertToStripeObject ([
297
- 'object ' => 'account ' ,
298
- 'legal_entity ' => StripeObject::constructFrom ([]),
299
- ], null );
300
- $ obj ['legal_entity ' ]->additional_owners = [
301
- ['first_name ' => 'Joe ' ],
302
- ['first_name ' => 'Jane ' ],
303
- ];
304
-
305
- $ expected = [
306
- 'legal_entity ' => [
307
- 'additional_owners ' => [
308
- 0 => ['first_name ' => 'Joe ' ],
309
- 1 => ['first_name ' => 'Jane ' ],
310
- ],
311
- ],
312
- ];
313
- static ::assertSame ($ expected , $ obj ->serializeParameters ());
314
- }
315
-
316
- public function testSerializeAddAdditionalOwners ()
317
- {
318
- $ obj = Util \Util::convertToStripeObject ([
319
- 'object ' => 'account ' ,
320
- 'legal_entity ' => [
321
- 'additional_owners ' => [
322
- StripeObject::constructFrom (['first_name ' => 'Joe ' ]),
323
- StripeObject::constructFrom (['first_name ' => 'Jane ' ]),
324
- ],
325
- ],
326
- ], null );
327
- $ obj ['legal_entity ' ]->additional_owners [2 ] = ['first_name ' => 'Andrew ' ];
328
-
329
- $ expected = [
330
- 'legal_entity ' => [
331
- 'additional_owners ' => [
332
- 2 => ['first_name ' => 'Andrew ' ],
333
- ],
334
- ],
335
- ];
336
- static ::assertSame ($ expected , $ obj ->serializeParameters ());
337
- }
338
-
339
- public function testSerializePartiallyChangedAdditionalOwners ()
340
- {
341
- $ obj = Util \Util::convertToStripeObject ([
342
- 'object ' => 'account ' ,
343
- 'legal_entity ' => [
344
- 'additional_owners ' => [
345
- StripeObject::constructFrom (['first_name ' => 'Joe ' ]),
346
- StripeObject::constructFrom (['first_name ' => 'Jane ' ]),
347
- ],
348
- ],
349
- ], null );
350
- $ obj ['legal_entity ' ]->additional_owners [1 ]->first_name = 'Stripe ' ;
351
-
352
- $ expected = [
353
- 'legal_entity ' => [
354
- 'additional_owners ' => [
355
- 1 => ['first_name ' => 'Stripe ' ],
356
- ],
357
- ],
358
- ];
359
- static ::assertSame ($ expected , $ obj ->serializeParameters ());
360
- }
361
-
362
- public function testSerializeUnchangedAdditionalOwners ()
363
- {
364
- $ obj = Util \Util::convertToStripeObject ([
365
- 'object ' => 'account ' ,
366
- 'legal_entity ' => [
367
- 'additional_owners ' => [
368
- StripeObject::constructFrom (['first_name ' => 'Joe ' ]),
369
- StripeObject::constructFrom (['first_name ' => 'Jane ' ]),
370
- ],
371
- ],
372
- ], null );
373
-
374
- $ expected = [
375
- 'legal_entity ' => [
376
- 'additional_owners ' => [],
377
- ],
378
- ];
379
- static ::assertSame ($ expected , $ obj ->serializeParameters ());
380
- }
381
-
382
- public function testSerializeUnsetAdditionalOwners ()
383
- {
384
- $ obj = Util \Util::convertToStripeObject ([
385
- 'object ' => 'account ' ,
386
- 'legal_entity ' => [
387
- 'additional_owners ' => [
388
- StripeObject::constructFrom (['first_name ' => 'Joe ' ]),
389
- StripeObject::constructFrom (['first_name ' => 'Jane ' ]),
390
- ],
391
- ],
392
- ], null );
393
- $ obj ['legal_entity ' ]->additional_owners = null ;
394
-
395
- // Note that the empty string that we send for this one has a special
396
- // meaning for the server, which interprets it as an array unset.
397
- $ expected = [
398
- 'legal_entity ' => [
399
- 'additional_owners ' => '' ,
400
- ],
401
- ];
402
- static ::assertSame ($ expected , $ obj ->serializeParameters ());
403
- }
404
-
405
- public function testSerializeAdditionalOwnersDeletedItem ()
406
- {
407
- $ this ->expectException (\InvalidArgumentException::class);
408
-
409
- $ obj = Util \Util::convertToStripeObject ([
410
- 'object ' => 'account ' ,
411
- 'legal_entity ' => [
412
- 'additional_owners ' => [
413
- StripeObject::constructFrom (['first_name ' => 'Joe ' ]),
414
- StripeObject::constructFrom (['first_name ' => 'Jane ' ]),
415
- ],
416
- ],
417
- ], null );
418
- unset($ obj ['legal_entity ' ]->additional_owners [0 ]);
419
-
420
- $ obj ->serializeParameters ();
421
- }
422
-
423
292
public function testSerializeExternalAccountString ()
424
293
{
425
294
$ obj = Util \Util::convertToStripeObject ([
0 commit comments