]> git.openstreetmap.org Git - nominatim.git/blob - test/php/Nominatim/ClassTypesTest.php
Merge remote-tracking branch 'upstream/master' into collect_os_info.sh
[nominatim.git] / test / php / Nominatim / ClassTypesTest.php
1 <?php
2 /**
3  * SPDX-License-Identifier: GPL-2.0-only
4  *
5  * This file is part of Nominatim. (https://nominatim.org)
6  *
7  * Copyright (C) 2022 by the Nominatim developer community.
8  * For a full list of authors see the git log.
9  */
10
11 namespace Nominatim;
12
13 require_once(CONST_LibDir.'/ClassTypes.php');
14
15 class ClassTypesTest extends \PHPUnit\Framework\TestCase
16 {
17     public function testGetLabelTag()
18     {
19         $aPlace = array('class' => 'boundary', 'type' => 'administrative',
20                    'rank_address' => '4', 'place_type' => 'city');
21         $this->assertEquals('city', ClassTypes\getLabelTag($aPlace));
22
23         $aPlace = array('class' => 'boundary', 'type' => 'administrative',
24                    'rank_address' => '10');
25         $this->assertEquals('state_district', ClassTypes\getLabelTag($aPlace));
26
27         $aPlace = array('class' => 'boundary', 'type' => 'administrative');
28         $this->assertEquals('administrative', ClassTypes\getLabelTag($aPlace));
29
30         $aPlace = array('class' => 'place', 'type' => 'hamlet', 'rank_address' => '20');
31         $this->assertEquals('hamlet', ClassTypes\getLabelTag($aPlace));
32
33         $aPlace = array('class' => 'highway', 'type' => 'residential',
34                    'rank_address' => '26');
35         $this->assertEquals('road', ClassTypes\getLabelTag($aPlace));
36
37         $aPlace = array('class' => 'place', 'type' => 'house_number',
38                    'rank_address' => '30');
39         $this->assertEquals('house_number', ClassTypes\getLabelTag($aPlace));
40
41         $aPlace = array('class' => 'amenity', 'type' => 'prison',
42                    'rank_address' => '30');
43         $this->assertEquals('amenity', ClassTypes\getLabelTag($aPlace));
44     }
45
46     public function testGetLabel()
47     {
48         $aPlace = array('class' => 'boundary', 'type' => 'administrative',
49                    'rank_address' => '4', 'place_type' => 'city');
50         $this->assertEquals('City', ClassTypes\getLabel($aPlace));
51
52         $aPlace = array('class' => 'boundary', 'type' => 'administrative',
53                    'rank_address' => '10');
54         $this->assertEquals('State District', ClassTypes\getLabel($aPlace));
55
56         $aPlace = array('class' => 'boundary', 'type' => 'administrative');
57         $this->assertEquals('Administrative', ClassTypes\getLabel($aPlace));
58
59         $aPlace = array('class' => 'amenity', 'type' => 'prison');
60         $this->assertEquals('Prison', ClassTypes\getLabel($aPlace));
61
62         $aPlace = array('class' => 'amenity', 'type' => 'foobar');
63         $this->assertNull(ClassTypes\getLabel($aPlace));
64     }
65
66     public function testGetBoundaryLabel()
67     {
68         $this->assertEquals('City', ClassTypes\getBoundaryLabel(8, null));
69         $this->assertEquals('Administrative', ClassTypes\getBoundaryLabel(18, null));
70         $this->assertEquals('None', ClassTypes\getBoundaryLabel(18, null, 'None'));
71         $this->assertEquals('State', ClassTypes\getBoundaryLabel(4, 'de', 'None'));
72         $this->assertEquals('County', ClassTypes\getBoundaryLabel(4, 'se', 'None'));
73         $this->assertEquals('Municipality', ClassTypes\getBoundaryLabel(7, 'se', 'None'));
74     }
75
76     public function testGetDefRadius()
77     {
78         $aResult = array('class' => '', 'type' => '');
79         $this->assertEquals(0.00005, ClassTypes\getDefRadius($aResult));
80
81         $aResult = array('class' => 'place', 'type' => 'country');
82         $this->assertEquals(7, ClassTypes\getDefRadius($aResult));
83     }
84
85     public function testGetIcon()
86     {
87         $aResult = array('class' => '', 'type' => '');
88         $this->assertNull(ClassTypes\getIcon($aResult));
89
90         $aResult = array('class' => 'place', 'type' => 'airport');
91         $this->assertEquals('transport_airport2', ClassTypes\getIcon($aResult));
92     }
93
94     public function testGetImportance()
95     {
96         $aResult = array('class' => '', 'type' => '');
97         $this->assertNull(ClassTypes\getImportance($aResult));
98
99         $aResult = array('class' => 'place', 'type' => 'airport');
100         $this->assertGreaterThan(0, ClassTypes\getImportance($aResult));
101     }
102 }