This repository was archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGeoCoderTest.php
53 lines (42 loc) · 1.7 KB
/
GeoCoderTest.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
<?php
namespace tests;
use dosamigos\leaflet\plugins\geocoder\GeoCoder;
use dosamigos\leaflet\plugins\geocoder\ServiceBing;
use dosamigos\leaflet\plugins\geocoder\ServiceMapQuest;
use dosamigos\leaflet\plugins\geocoder\ServiceNominatim;
class GeoCoderTest extends TestCase
{
public function testNominatim() {
$nominatim = new ServiceNominatim();
$geocoder = new GeoCoder([
'name' => 'testName',
'service' => $nominatim
]);
$this->assertEquals($nominatim, $geocoder->getService());
$content = $geocoder->encode();
$this->assertEquals('plugin:geocoder', $geocoder->getPluginName());
$this->assertEquals(file_get_contents(__DIR__ . '/data/service.nominatim.bin'), $content);
}
public function testBing() {
$bing = new ServiceBing(['key' => 'bogus-key']);
$geocoder = new GeoCoder([
'service' => $bing
]);
$this->assertEquals($bing, $geocoder->getService());
$content = $geocoder->encode();
$this->assertEquals(file_get_contents(__DIR__ . '/data/service.bing.bin'), $content);
$this->setExpectedException('yii\base\InvalidConfigException');
$quest = new ServiceBing();
}
public function testMapQuest() {
$quest = new ServiceMapQuest(['key' => 'bogus-key']);
$geocoder = new GeoCoder([
'service' => $quest
]);
$this->assertEquals($quest, $geocoder->getService());
$content = $geocoder->encode();
$this->assertEquals(file_get_contents(__DIR__ . '/data/service.mapquest.bin'), $content);
$this->setExpectedException('yii\base\InvalidConfigException');
$quest = new ServiceMapQuest();
}
}