From: Sarah Hoffmann Date: Sun, 29 Nov 2015 09:13:01 +0000 (+0100) Subject: Merge pull request #313 from mtmail/more-tests-for-libphp X-Git-Tag: v.2.5.0~18 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/2e1281b9a01cff60a7535f2f99a0c2791576910d?hp=fc9e75a5e6ce8ee4c8bee3a5256525f021c76ac5 Merge pull request #313 from mtmail/more-tests-for-libphp more tests for lib/lib.php --- diff --git a/tests-php/Nominatim/NominatimTest.php b/tests-php/Nominatim/NominatimTest.php index 7ab68934..4c5638b1 100644 --- a/tests-php/Nominatim/NominatimTest.php +++ b/tests-php/Nominatim/NominatimTest.php @@ -74,4 +74,78 @@ class NominatimTest extends \PHPUnit_Framework_TestCase } + + + public function test_getWordSets() + { + + // given an array of arrays like + // array( array('a','b'), array('c','d') ) + // returns a summary as string: '(a|b),(c|d)' + function serialize_sets($aSets) + { + $aParts = array(); + foreach($aSets as $aSet){ + $aParts[] = '(' . join('|', $aSet) . ')'; + } + return join(',', $aParts); + } + + $this->assertEquals( + array(array('')), + getWordSets(array(),0) + ); + + $this->assertEquals( + '(a)', + serialize_sets( getWordSets(array("a"),0) ) + ); + + $this->assertEquals( + '(a b),(a|b)', + serialize_sets( getWordSets(array('a','b'),0) ) + ); + + $this->assertEquals( + '(a b c),(a|b c),(a|b|c),(a b|c)', + serialize_sets( getWordSets(array('a','b','c'),0) ) + ); + + $this->assertEquals( + '(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)', + serialize_sets( getWordSets(array('a','b','c','d'),0) ) + ); + + + // Inverse + $this->assertEquals( + '(a b c),(c|a b),(c|b|a),(b c|a)', + serialize_sets( getInverseWordSets(array('a','b','c'),0) ) + ); + + + // make sure we don't create too many sets + // 4 words => 8 sets + // 10 words => 511 sets + // 15 words => 12911 sets + // 18 words => 65536 sets + // 20 words => 169766 sets + // 22 words => 401930 sets + // 28 words => 3505699 sets (needs more than 4GB via 'phpunit -d memory_limit=' to run) + $this->assertEquals( + 8, + count( getWordSets(array_fill( 0, 4, 'a'),0) ) + ); + + + $this->assertEquals( + 65536, + count( getWordSets(array_fill( 0, 18, 'a'),0) ) + ); + + + + } + + } diff --git a/tests-php/README.txt b/tests-php/README.txt index 8aee5d8e..d551c1da 100644 --- a/tests-php/README.txt +++ b/tests-php/README.txt @@ -7,7 +7,7 @@ installed. To execute the test suite run $ cd tests-php -$ phpunit +$ phpunit ./ It will read phpunit.xml which points to the library, test path, bootstrap strip and set other parameters.