-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGetUsageTest.php
65 lines (53 loc) · 1.78 KB
/
GetUsageTest.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
<?php
namespace Philcross\GetAddress\Tests;
use DateTime;
use PHPUnit\Framework\TestCase;
use Philcross\GetAddress\Client;
use Philcross\GetAddress\Responses\Usage;
class GetUsageTest extends TestCase
{
use ClientMockerTrait;
public function test_i_can_make_a_request_to_retrieve_my_current_usage()
{
$http = $this->mockGuzzle(
'get',
'https://api.getAddress.io/v2/usage?api-key=78910',
$this->mockResponse([
'count' => 10,
'limit1' => 20,
'limit2' => 30,
])
);
$client = new Client('123456', '78910', $http);
$this->assertInstanceOf(Usage::class, $client->usage());
}
public function test_i_can_make_a_request_to_retrieve_my_current_usage_using_a_specified_day()
{
$http = $this->mockGuzzle(
'get',
'https://api.getAddress.io/v2/usage/01/02/2017?api-key=78910',
$this->mockResponse([
'count' => 10,
'limit1' => 20,
'limit2' => 30,
])
);
$client = new Client('123456', '78910', $http);
$this->assertInstanceOf(Usage::class, $client->usage(01, 02, 2017));
}
public function test_i_can_make_a_request_to_retrieve_my_current_usage_using_a_datetime_object()
{
$http = $this->mockGuzzle(
'get',
'https://api.getAddress.io/v2/usage/01/02/2017?api-key=78910',
$this->mockResponse([
'count' => 10,
'limit1' => 20,
'limit2' => 30,
])
);
$client = new Client('123456', '78910', $http);
$date = new DateTime('2017-02-01');
$this->assertInstanceOf(Usage::class, $client->usage($date));
}
}