-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathWebhookTest.php
85 lines (69 loc) · 2.76 KB
/
WebhookTest.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
<?php
namespace Philcross\GetAddress\Tests;
use PHPUnit\Framework\TestCase;
use Philcross\GetAddress\Client;
use Philcross\GetAddress\Responses\Webhook;
use Philcross\GetAddress\Responses\WebhookResponse;
class WebhookTest extends TestCase
{
use ClientMockerTrait;
public function test_i_can_make_a_request_to_add_a_new_webhook()
{
$http = $this->mockGuzzle(
'post',
'https://api.getAddress.io/webhook/first-limit-reached?api-key=78910',
$this->mockResponse([
'message' => 'Webhook has been created',
'id' => 'abc',
]),
[
'url' => 'http://phil-cross.co.uk/',
]
);
$client = new Client('123456', '78910', $http);
$response = $client->addWebhook('http://phil-cross.co.uk/');
$this->assertInstanceOf(WebhookResponse::class, $response);
$this->assertContainsOnlyInstancesOf(Webhook::class, $response->getHooks());
$this->assertEquals('Webhook has been created', $response->getMessage());
}
public function test_i_can_make_a_request_to_delete_an_existing_webhook()
{
$http = $this->mockGuzzle(
'delete',
'https://api.getAddress.io/webhook/first-limit-reached/abc?api-key=78910',
$this->mockResponse([
'message' => 'Webhook has been removed.',
])
);
$client = new Client('123456', '78910', $http);
$this->assertInstanceOf(WebhookResponse::class, $client->deleteWebhook('abc'));
}
public function test_i_can_retrieve_a_list_of_webhooks()
{
$http = $this->mockGuzzle(
'get',
'https://api.getAddress.io/webhook/first-limit-reached?api-key=78910',
$this->mockResponse([
['id' => 'abc', 'url' => 'getAddress.io'],
['id' => 'def', 'url' => 'phil-cross.co.uk'],
])
);
$client = new Client('123456', '78910', $http);
$this->assertInstanceOf(WebhookResponse::class, $client->getWebhooks());
$this->assertContainsOnlyInstancesOf(Webhook::class, $client->getWebhooks()->getHooks());
}
public function test_i_can_retrieve_a_known_webhook()
{
$http = $this->mockGuzzle(
'get',
'https://api.getAddress.io/webhook/first-limit-reached/abc?api-key=78910',
$this->mockResponse([
'id' => 'abc',
'url' => 'http://phil-cross.co.uk/',
])
);
$client = new Client('123456', '78910', $http);
$this->assertInstanceOf(WebhookResponse::class, $client->getWebhook('abc'));
$this->assertContainsOnlyInstancesOf(Webhook::class, $client->getWebhook('abc')->getHooks());
}
}