-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFindAddressTest.php
52 lines (43 loc) · 1.77 KB
/
FindAddressTest.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
<?php
namespace Philcross\GetAddress\Tests;
use PHPUnit\Framework\TestCase;
use Philcross\GetAddress\Client;
use Philcross\GetAddress\Responses\Address;
use Philcross\GetAddress\Responses\AddressResponse;
class FindAddressTest extends TestCase
{
use ClientMockerTrait;
public function test_i_can_make_a_request_to_find_all_addresses_with_only_a_postcode()
{
$http = $this->mockGuzzle(
'get',
'https://api.getAddress.io/find/AB12BD?sort=1&api-key=123456',
$this->mockResponse([
'latitude' => 10.12345678910111,
'longitude' => -0.12345678910111,
'addresses' => [
'Sample Line 1,Sample Line 2,Sample Line 3,Sample Line 4,Sample Locality,Sample City,Sample County',
],
])
);
$client = new Client('123456', '78910', $http);
$this->assertInstanceOf(AddressResponse::class, $client->find('AB12BD'));
$this->assertContainsOnlyInstancesOf(Address::class, $client->find('AB12BD')->getAddresses());
}
public function test_i_can_make_a_request_to_find_all_addresses_with_a_postcode_and_property_number()
{
$http = $this->mockGuzzle(
'get',
'https://api.getAddress.io/find/AB12BD/1?sort=1&api-key=123456',
$this->mockResponse([
'latitude' => 10.12345678910111,
'longitude' => -0.12345678910111,
'addresses' => [
'Sample Line 1,Sample Line 2,Sample Line 3,Sample Line 4,Sample Locality,Sample City,Sample County',
],
])
);
$client = new Client('123456', '78910', $http);
$this->assertInstanceOf(AddressResponse::class, $client->find('AB12BD', 1));
}
}