|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
use Ktp\Parsers\NikResultPageParser; |
|
4
|
|
|
use Psr\Http\Message\ResponseInterface; |
|
5
|
|
|
use Symfony\Component\DomCrawler\Crawler; |
|
6
|
|
|
|
|
7
|
|
|
class NikResultPageParserTest extends PHPUnit_Framework_TestCase { |
|
|
|
|
|
|
8
|
|
|
/** @test */ |
|
9
|
|
|
function nik_page_parser_can_retrieve_page_content() |
|
|
|
|
|
|
10
|
|
|
{ |
|
11
|
|
|
$pageParser = $this->getMockForAbstractClass(NikResultPageParser::class, ['foo']); |
|
12
|
|
|
|
|
13
|
|
|
$this->assertEquals('foo', $pageParser->page()); |
|
14
|
|
|
} |
|
15
|
|
|
|
|
16
|
|
|
/** @test */ |
|
17
|
|
|
function nik_page_parser_can_instantiate_crawler() |
|
18
|
|
|
{ |
|
19
|
|
|
$pageParser = $this->getMockForAbstractClass(NikResultPageParser::class, ['foo']); |
|
20
|
|
|
|
|
21
|
|
|
$this->assertInstanceOf(Crawler::class, $pageParser->crawler()); |
|
22
|
|
|
} |
|
23
|
|
|
|
|
24
|
|
|
/** @test */ |
|
25
|
|
|
function nik_page_parser_can_be_instantiated_from_response() |
|
26
|
|
|
{ |
|
27
|
|
|
$response = $this->getMockForAbstractClass(ResponseInterface::class); |
|
28
|
|
|
|
|
29
|
|
|
$response->expects($this->once()) |
|
30
|
|
|
->method('getBody') |
|
31
|
|
|
->will($this->returnValue('foo')); |
|
32
|
|
|
|
|
33
|
|
|
$this->assertInstanceOf(NikResultPageParser::class, NikResultPageParser::fromResponse($response)); |
|
34
|
|
|
} |
|
35
|
|
|
|
|
36
|
|
|
/** @test */ |
|
37
|
|
|
function nik_page_parser_parse_should_return_null_when_nik_is_not_found() |
|
38
|
|
|
{ |
|
39
|
|
|
$pageParser = $this->getMockForAbstractClass(NikResultPageParser::class, ['foo']); |
|
40
|
|
|
|
|
41
|
|
|
$this->assertNull($pageParser->parse()); |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
/** @test */ |
|
45
|
|
|
function nik_page_parser_can_parse_result_page() |
|
46
|
|
|
{ |
|
47
|
|
|
$html = <<<EOD |
|
48
|
|
|
<span class="field">123</span> |
|
49
|
|
|
<span class="field">JOHN DOE</span> |
|
50
|
|
|
<span class="field">LAKI-LAKI</span> |
|
51
|
|
|
<span class="field">FOO</span> |
|
52
|
|
|
<span class="field">BAR</span> |
|
53
|
|
|
<span class="field">BAZ</span> |
|
54
|
|
|
<span class="field">QUX</span> |
|
55
|
|
|
EOD; |
|
56
|
|
|
|
|
57
|
|
|
$pageParser = $this->getMockForAbstractClass(NikResultPageParser::class, [$html]); |
|
58
|
|
|
|
|
59
|
|
|
$parsed = $pageParser->parse(); |
|
60
|
|
|
|
|
61
|
|
|
$this->assertCount(7, $parsed); |
|
62
|
|
|
|
|
63
|
|
|
$this->assertEquals([ |
|
64
|
|
|
'nik' => 123, |
|
65
|
|
|
'name' => 'JOHN DOE', |
|
66
|
|
|
'jenis_kelamin' => 'LAKI-LAKI', |
|
67
|
|
|
'kelurahan' => 'FOO', |
|
68
|
|
|
'kecamatan' => 'BAR', |
|
69
|
|
|
'kabupaten_kota' => 'BAZ', |
|
70
|
|
|
'provinsi' => 'QUX', |
|
71
|
|
|
], $parsed); |
|
72
|
|
|
} |
|
73
|
|
|
} |
|
74
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.