X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/28d7e11e4fb377fc91e3271d424310f3ca7c7b85..e9e54ec8046cf74d6d6f1c1ae04ca746aa3fefc2:/test/php/Nominatim/TokenListTest.php diff --git a/test/php/Nominatim/TokenListTest.php b/test/php/Nominatim/TokenListTest.php index ad91dff1..d31b219b 100644 --- a/test/php/Nominatim/TokenListTest.php +++ b/test/php/Nominatim/TokenListTest.php @@ -2,17 +2,16 @@ namespace Nominatim; -@define('CONST_BasePath', '../../'); +require_once(CONST_BasePath.'/lib/TokenList.php'); -require_once '../../lib/db.php'; -require_once '../../lib/cmd.php'; -require_once '../../lib/TokenList.php'; class TokenTest extends \PHPUnit\Framework\TestCase { protected function setUp() { - $this->oNormalizer = $this->getMock(\MockNormalizer::class, array('transliterate')); + $this->oNormalizer = $this->getMockBuilder(\MockNormalizer::class) + ->setMethods(array('transliterate')) + ->getMock(); $this->oNormalizer->method('transliterate') ->will($this->returnCallback(function ($text) { return strtolower($text); @@ -55,7 +54,18 @@ class TokenTest extends \PHPUnit\Framework\TestCase { $this->expectOutputRegex('/
/'); - $oDbStub = $this->getMock(\DB::class, array('getAll')); + $oDbStub = $this->getMockBuilder(Nominatim\DB::class) + ->setMethods(array('getAll', 'getDBQuotedList')) + ->getMock(); + + $oDbStub->method('getDBQuotedList') + ->will($this->returnCallback(function ($aVals) { + return array_map(function ($sVal) { + return "'".$sVal."'"; + }, $aVals); + })); + + $oDbStub->method('getAll') ->will($this->returnCallback(function ($sql) { $aResults = array();