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                 // 18 words => 65536 sets
 
 132                 // 20 words => 169766 sets
 
 133                 // 22 words => 401930 sets
 
 134                 // 28 words => 3505699 sets (needs more than 4GB via 'phpunit -d memory_limit=' to run)
 
 137                         count( getWordSets(array_fill( 0, 4, 'a'),0) )
 
 143                         count( getWordSets(array_fill( 0, 18, 'a'),0) )
 
 151         public function test_geometryText2Points()
 
 158                         geometryText2Points('', $fRadius)
 
 163                 $aPoints = geometryText2Points('POINT(10 20)', $fRadius);
 
 173                         ['', 10.062790519529, 20.998026728428],
 
 174                                 ['', 10.125333233564, 20.992114701314]
 
 176                         array_splice($aPoints, 0,3)
 
 182                                 ['30 10', '30', '10'],
 
 183                                 ['40 40', '40', '40'],
 
 184                                 ['20 40', '20', '40'],
 
 185                                 ['10 20', '10', '20'],
 
 186                                 ['30 10', '30', '10']
 
 188                         geometryText2Points('POLYGON((30 10, 40 40, 20 40, 10 20, 30 10))', $fRadius)
 
 192                 // only the first polygon is used
 
 195                                 ['30 20', '30', '20'],
 
 196                                 ['45 40', '45', '40'],
 
 197                                 ['10 40', '10', '40'],
 
 198                                 ['30 20', '30', '20'],
 
 200                                 // ['15 5' , '15', '5' ],
 
 201                                 // ['45 10', '45', '10'],
 
 202                                 // ['10 20', '10', '20'],
 
 203                                 // ['5 10' , '5' , '10'],
 
 204                                 // ['15 5' , '15', '5' ]
 
 206                         geometryText2Points('MULTIPOLYGON(((30 20, 45 40, 10 40, 30 20)),((15 5, 40 10, 10 20, 5 10, 15 5)))', $fRadius)