-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtest-mailchimp-contact-methods.php
635 lines (590 loc) · 15.2 KB
/
test-mailchimp-contact-methods.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
* Class Newsletters Test Mailchimp Contact Methods
*
* @package Newspack_Newsletters
*/
use Newspack\Newsletters\Subscription_Lists;
use Newspack\Newsletters\Subscription_List;
/**
* Test Mailchimp Contact Methods
*/
class MailchimpContactMethodsTest extends WP_UnitTestCase {
/**
* Subscription Lists objects used in tests
*
* @var array
*/
public static $subscription_lists = [];
/**
* Set up before class
*/
public static function set_up_before_class() {
Newspack_Newsletters::set_service_provider( 'mailchimp' );
update_option( 'newspack_mailchimp_api_key', 'test-us1' );
}
/**
* Create lists for testing
*/
private static function create_lists() {
self::$subscription_lists = [
'audience_1' => Subscription_Lists::get_or_create_remote_list(
[
'id' => 'list1',
'title' => 'List 1',
]
),
'group1_in_audience_1' => Subscription_Lists::get_or_create_remote_list(
[
'id' => Subscription_List::mailchimp_generate_public_id( 'group1', 'list1' ),
'title' => 'Group 1',
]
),
'group2_in_audience_1' => Subscription_Lists::get_or_create_remote_list(
[
'id' => Subscription_List::mailchimp_generate_public_id( 'group2', 'list1' ),
'title' => 'Group 2',
]
),
'tag1_in_audience_1' => Subscription_Lists::get_or_create_remote_list(
[
'id' => Subscription_List::mailchimp_generate_public_id( 'tag1', 'list1', 'tag' ),
'title' => 'Tag 1',
]
),
'tag2_in_audience_1' => Subscription_Lists::get_or_create_remote_list(
[
'id' => Subscription_List::mailchimp_generate_public_id( 'tag2', 'list1', 'tag' ),
'title' => 'Tag 2',
]
),
'local_list_in_audience_1' => self::create_local_list( 'local', 'list1' ),
'audience_2' => Subscription_Lists::get_or_create_remote_list(
[
'id' => 'list2',
'title' => 'List 2',
]
),
'group_in_audience_2' => Subscription_Lists::get_or_create_remote_list(
[
'id' => Subscription_List::mailchimp_generate_public_id( 'group', 'list2' ),
'title' => 'Group',
]
),
'local_list_in_audience_2' => self::create_local_list( 'local', 'list2' ),
];
}
/**
* Tear down class
*/
private static function delete_lists() {
global $wpdb;
$wpdb->query( $wpdb->prepare( "DELETE FROM $wpdb->posts WHERE post_type = %s" , Subscription_Lists::CPT ) ); // phpcs:ignore
}
/**
* Tear down class
*/
public static function tear_down_after_class() {
delete_option( 'newspack_mailchimp_api_key' );
}
/**
* Helper to create local lists for testing
*
* @param string $list_id The ID of the group to create.
* @param string $audience_id The ID of the audience to create the group in.
* @return Subscription_List
*/
private static function create_local_list( $list_id, $audience_id ) {
$post = wp_insert_post(
[
'post_title' => $list_id,
'post_type' => Subscription_Lists::CPT,
'post_status' => 'publish',
]
);
$subscription_list = new Subscription_List( $post );
$subscription_list->set_type( 'local' );
$subscription_list->update_current_provider_settings( $audience_id, $list_id, $list_id );
return $subscription_list;
}
/**
* Get a reflection of a private method from the class for testing.
*
* @param string $name Method name.
* @return ReflectionMethod
*/
protected static function get_private_method( $name ) {
$method = new ReflectionMethod( 'Newspack_Newsletters_Mailchimp', $name );
$method->setAccessible( true );
return $method;
}
/**
* Data provider for test_get_status_for_payload
*
* @return array
*/
public function get_status_payload_data() {
return [
'empty' => [
[],
null,
[ 'status' => 'subscribed' ],
],
'empty_metadata' => [
[
'metadata' => [],
],
null,
[ 'status' => 'subscribed' ],
],
'empty_status' => [
[
'metadata' => [
'status' => '',
],
],
null,
[ 'status' => 'subscribed' ],
],
'only_status' => [
[
'metadata' => [
'status' => 'transactional',
],
],
null,
[
'status' => 'transactional',
],
],
'only status if new' => [
[
'metadata' => [
'status_if_new' => 'transactional',
],
],
null,
[
'status_if_new' => 'transactional',
],
],
'both' => [
[
'metadata' => [
'status_if_new' => 'transactional',
'status' => 'subscribed',
],
],
null,
[
'status_if_new' => 'transactional',
'status' => 'subscribed',
],
],
'status_if_unsubscribed' => [
[
'existing_contact_data' => [
'lists' => [
'list1' => [
'status' => 'unsubscribed',
],
],
],
],
'list1',
[ 'status' => 'pending' ],
],
];
}
/**
* Test get_status_for_payload
*
* @param array $arg1 Input data.
* @param string|null $arg2 Input data.
* @param array $expected Expected output.
* @dataProvider get_status_payload_data
*/
public function test_get_status_for_payload( $arg1, $arg2, $expected ) {
$method = self::get_private_method( 'get_status_for_payload' );
$service = Newspack_Newsletters_Mailchimp::instance();
$this->assertSame( $expected, $method->invoke( $service, $arg1, $arg2 ) );
}
/**
* Data provider for test_prepare_lists_to_add_contact
*
* @return array
*/
public function prepare_lists_to_add_contact_data() {
return [
[
[
'audience_1',
],
[
'list1' => [
'tags' => [],
'interests' => [],
],
],
],
[
[
'audience_1',
'audience_2',
],
[
'list1' => [
'tags' => [],
'interests' => [],
],
'list2' => [
'tags' => [],
'interests' => [],
],
],
],
[
[
'audience_1',
'audience_2',
'group1_in_audience_1',
'local_list_in_audience_2',
'tag2_in_audience_1',
],
[
'list1' => [
'tags' => [
'tag2_in_audience_1',
],
'interests' => [
'group1_in_audience_1',
],
],
'list2' => [
'tags' => [],
'interests' => [
'local_list_in_audience_2',
],
],
],
],
[
[
'audience_1',
'group1_in_audience_1',
'group2_in_audience_1',
'tag1_in_audience_1',
'tag2_in_audience_1',
'local_list_in_audience_1',
'audience_2',
'group_in_audience_2',
'local_list_in_audience_2',
],
[
'list1' => [
'tags' => [
'tag1_in_audience_1',
'tag2_in_audience_1',
],
'interests' => [
'group1_in_audience_1',
'group2_in_audience_1',
'local_list_in_audience_1',
],
],
'list2' => [
'tags' => [],
'interests' => [
'group_in_audience_2',
'local_list_in_audience_2',
],
],
],
],
];
}
/**
* Undocumented function
*
* @param Subscription_List[] $lists List of Subscription Lists objects.
* @param array $expected Expected return of the function.
* @dataProvider prepare_lists_to_add_contact_data
* @return void
*/
public function test_prepare_lists_to_add_contact( $lists, $expected ) {
self::create_lists();
$lists_to_pass = [];
foreach ( $lists as $list ) {
$lists_to_pass[] = self::$subscription_lists[ $list ];
}
foreach ( $expected as $audience_id => $expected_list ) {
$tag_real_values = [];
foreach ( $expected_list['tags'] as $tag ) {
$tag_real_values[] = self::$subscription_lists[ $tag ]->get_remote_name();
}
$interests_real_values = [];
foreach ( $expected_list['interests'] as $interest ) {
$interests_real_values[ self::$subscription_lists[ $interest ]->mailchimp_get_sublist_id() ] = true;
}
$expected[ $audience_id ] = [
'tags' => $tag_real_values,
'interests' => $interests_real_values,
];
}
$method = self::get_private_method( 'prepare_lists_to_add_contact' );
$service = Newspack_Newsletters_Mailchimp::instance();
$result = $method->invoke( $service, $lists_to_pass );
$this->assertEquals( $expected, $result );
self::delete_lists();
}
/**
* Mock responses for get_contact_data and get_contact_lists tests
*
* @param array $response The api response.
* @param string $endpoint The endpoint being called.
* @param array $args The arguments passed to the endpoint.
* @return array
*/
public static function get_contact_mock_response( $response, $endpoint, $args = [] ) {
$expected_request = false;
$base_member_response = [
'full_name' => 'Sample User',
'list_id' => 'list1',
'email_address' => $args['query'] ?? '',
'id' => '123',
'contact_id' => 'aaa',
'status' => 'subscribed',
];
$base_success_response = [
'exact_matches' => [
'members' => [],
],
// We always return something in the full_search key to make sure it is ignored.
'full_search' => [
'members' => [
[
'full_name' => 'Ignored User',
'list_id' => 'ignoredlist1',
'email_address' => '[email protected]',
'id' => '1234',
'contact_id' => 'aaaa',
'status' => 'subscribed',
],
],
],
];
$response = false;
if ( 'search-members' === $endpoint ) {
if ( '[email protected]' === $args['query'] ) {
$response = $base_success_response;
$response['exact_matches']['members'][] = $base_member_response;
$response['exact_matches']['members'][] = $base_member_response;
$response['exact_matches']['members'][0]['tags'] = [
[
'id' => 'tag-1',
'name' => 'tag-1',
],
];
$response['exact_matches']['members'][1]['list_id'] = 'list2';
$response['exact_matches']['members'][1]['tags'] = [
[
'id' => 'tag-2',
'name' => 'tag-2',
],
];
$response['exact_matches']['members'][1]['id'] = '456';
$response['exact_matches']['members'][1]['contact_id'] = 'bbb';
} elseif ( '[email protected]' === $args['query'] ) {
$response = $base_success_response;
$response['exact_matches']['members'][] = $base_member_response;
$response['exact_matches']['members'][0]['tags'] = [
[
'id' => 'tag-1',
'name' => 'tag-1',
],
];
$response['exact_matches']['members'][0]['interests'] = [
'interest-1' => true,
'interest-2' => false,
];
// some noise to make sure it doesn't change anything.
$response['exact_matches']['members'][0]['noise'] = 'noise';
} elseif ( '[email protected]' === $args['query'] ) {
// Simulates a response of a contact with zero lists.
$response = $base_success_response;
$response['exact_matches']['members'][] = $base_member_response;
$response['exact_matches']['members'][0]['status'] = 'unsubscribed';
} elseif ( '[email protected]' === $args['query'] ) {
// Simulates a response of a contact not found.
$response = $base_success_response;
} elseif ( '[email protected]' === $args['query'] ) {
// Simulates an error response from the API.
$response = [
'type' => 'https://mailchimp.com/developer/marketing/docs/errors/',
'title' => 'Resource Not Found',
'status' => 404,
'detail' => 'The requested resource could not be found.',
'instance' => '995c5cb0-3280-4a6e-808b-3b096d0bb219',
];
}
}
return $response;
}
/**
* Data provider for test_get_contact_data
*
* @return array
*/
public function get_contact_data_data_provider() {
return [
[
[
'full_name' => 'Sample User',
'email_address' => '[email protected]',
'id' => '123',
'interests' => [],
'tags' => [
'list1' => [
[
'id' => 'tag-1',
'name' => 'tag-1',
],
],
'list2' => [
[
'id' => 'tag-2',
'name' => 'tag-2',
],
],
],
'lists' => [
'list1' => [
'id' => '123',
'contact_id' => 'aaa',
'status' => 'subscribed',
],
'list2' => [
'id' => '456',
'contact_id' => 'bbb',
'status' => 'subscribed',
],
],
],
],
[
[
'full_name' => 'Sample User',
'email_address' => '[email protected]',
'id' => '123',
'interests' => [
'list1' => [
'interest-1' => true,
'interest-2' => false,
],
],
'tags' => [
'list1' => [
[
'id' => 'tag-1',
'name' => 'tag-1',
],
],
],
'lists' => [
'list1' => [
'id' => '123',
'contact_id' => 'aaa',
'status' => 'subscribed',
],
],
],
],
[
false,
],
[
false,
],
];
}
/**
* Tests the get_contact_data method
*
* @param string $email The email to search for.
* @param false|array $expected The expected contact data or false if an error is expected.
* @dataProvider get_contact_data_data_provider
* @return void
*/
public function test_get_contact_data( $email, $expected ) {
$provider = Newspack_Newsletters::get_service_provider();
add_filter( 'mailchimp_mock_get', [ __CLASS__, 'get_contact_mock_response' ], 10, 3 );
$contact_data = $provider->get_contact_data( $email );
if ( false !== $expected ) {
$this->assertEquals( $expected, $contact_data );
} else {
$this->assertTrue( is_wp_error( $contact_data ) );
}
remove_filter( 'mailchimp_mock_get', [ __CLASS__, 'get_contact_mock_response' ] );
}
/**
* Data provider for test_get_contact_lists
*
* @return array
*/
public function get_contact_lists_data_provider() {
return [
[
[
'list1',
'list2',
'tag-tag-1-list1',
'tag-tag-2-list2',
],
],
[
[
'list1',
'group-interest-1-list1',
'tag-tag-1-list1',
],
],
[
[],
],
[
[],
],
[
[],
],
];
}
/**
* Tests the get_contact_lists method
*
* @param string $email The email to search for.
* @param false|array $expected The expected contact lists or false if an error is expected.
* @dataProvider get_contact_lists_data_provider
* @return void
*/
public function test_get_contact_lists_lists( $email, $expected ) {
$provider = Newspack_Newsletters::get_service_provider();
add_filter( 'mailchimp_mock_get', [ __CLASS__, 'get_contact_mock_response' ], 10, 3 );
$contact_lists = $provider->get_contact_lists( $email );
if ( false !== $expected ) {
$this->assertEquals( $expected, $contact_lists );
} else {
$this->assertTrue( is_wp_error( $contact_lists ) );
}
remove_filter( 'mailchimp_mock_get', [ __CLASS__, 'get_contact_mock_response' ] );
}
}