4 require '../lib/lib.php';
7 class NominatimTest extends \PHPUnit_Framework_TestCase
10 protected function setUp()
15 public function test_addQuotes()
17 // FIXME: not quoting existing quote signs is probably a bug
18 $this->assertSame("'St. John's'", addQuotes("St. John's"));
19 $this->assertSame("''", addQuotes(''));
22 public function test_looksLikeLatLonPair()
24 // no coordinates expected
25 $this->assertNull(looksLikeLatLonPair(''));
26 $this->assertNull(looksLikeLatLonPair('abc'));
27 $this->assertNull(looksLikeLatLonPair('12 34'));
28 $this->assertNull(looksLikeLatLonPair('200.1 89.9')); // because latitude > 180
30 // coordinates expected
31 $this->assertNotNull(looksLikeLatLonPair('0.0 -0.0'));
34 array( 'lat' => 12.456, 'lon' => -78.90, 'query' => 'abc def'),
35 looksLikeLatLonPair(' abc 12.456 -78.90 def ')
39 array( 'lat' => 12.456, 'lon' => -78.90, 'query' => ''),
40 looksLikeLatLonPair(' [12.456,-78.90] ')
43 // http://en.wikipedia.org/wiki/Geographic_coordinate_conversion
44 // these all represent the same location
46 '40 26.767 N 79 58.933 W',
47 '40° 26.767′ N 79° 58.933′ W',
48 "40° 26.767' N 79° 58.933' W",
49 'N 40 26.767, W 79 58.933',
50 'N 40°26.767′, W 79°58.933′',
51 "N 40°26.767', W 79°58.933'",
53 '40 26 46 N 79 58 56 W',
54 '40° 26′ 46″ N 79° 58′ 56″ W',
55 'N 40 26 46 W 79 58 56',
56 'N 40° 26′ 46″, W 79° 58′ 56″',
57 'N 40° 26\' 46", W 79° 58\' 56"',
61 '40.446° N 79.982° W',
62 'N 40.446° W 79.982°',
69 foreach($aQueries as $sQuery){
70 $aRes = looksLikeLatLonPair($sQuery);
71 $this->assertEquals( 40.446, $aRes['lat'], 'degrees decimal ' . $sQuery, 0.01);
72 $this->assertEquals(-79.982, $aRes['lon'], 'degrees decimal ' . $sQuery, 0.01);
79 public function test_getWordSets()
82 // given an array of arrays like
83 // array( array('a','b'), array('c','d') )
84 // returns a summary as string: '(a|b),(c|d)'
85 function serialize_sets($aSets)
88 foreach($aSets as $aSet){
89 $aParts[] = '(' . join('|', $aSet) . ')';
91 return join(',', $aParts);
96 getWordSets(array(),0)
101 serialize_sets( getWordSets(array("a"),0) )
106 serialize_sets( getWordSets(array('a','b'),0) )
110 '(a b c),(a|b c),(a|b|c),(a b|c)',
111 serialize_sets( getWordSets(array('a','b','c'),0) )
115 '(a b c d),(a|b c d),(a|b|c d),(a|b|c|d),(a|b c|d),(a b|c d),(a b|c|d),(a b c|d)',
116 serialize_sets( getWordSets(array('a','b','c','d'),0) )
122 '(a b c),(c|a b),(c|b|a),(b c|a)',
123 serialize_sets( getInverseWordSets(array('a','b','c'),0) )
127 // make sure we don't create too many sets
129 // 10 words => 511 sets
130 // 15 words => 12911 sets
131 // 20 words => 169766 sets
132 // 28 words => 397594 sets
135 count( getWordSets(array_fill( 0, 4, 'a'),0) )
141 count( getWordSets(array_fill( 0, 28, 'a'),0) )