add JSON format to /status endpoint (#1013)

add JSON format to /status endpoint
This commit is contained in:
mtmail
2018-05-04 23:37:48 +02:00
committed by GitHub
parent bd04ce62e0
commit 7075a5828e
7 changed files with 255 additions and 24 deletions

View File

@@ -0,0 +1,95 @@
<?php
namespace Nominatim;
require_once('../../lib/Status.php');
require_once('DB.php');
use Exception;
class StatusTest extends \PHPUnit_Framework_TestCase
{
public function testNoDatabaseGiven()
{
$this->setExpectedException(Exception::class, 'No database', 700);
$oDB = null;
$oStatus = new Status($oDB);
$this->assertEquals('No database', $oStatus->status());
}
public function testNoDatabaseConnectionFail()
{
$this->setExpectedException(Exception::class, 'No database', 700);
// causes 'Non-static method should not be called statically, assuming $this from incompatible context'
// failure on travis
// $oDB = \DB::connect('', false); // returns a DB_Error instance
$oDB = new \DB_Error;
$oStatus = new Status($oDB);
$this->assertEquals('No database', $oStatus->status());
$oDB = null;
$oStatus = new Status($oDB);
$this->assertEquals('No database', $oStatus->status());
}
public function testModuleFail()
{
$this->setExpectedException(Exception::class, 'Module call failed', 702);
// stub has getOne method but doesn't return anything
$oDbStub = $this->getMock(\DB::class, array('getOne'));
$oStatus = new Status($oDbStub);
$this->assertNull($oStatus->status());
}
public function testWordIdQueryFail()
{
$this->setExpectedException(Exception::class, 'No value', 704);
$oDbStub = $this->getMock(\DB::class, array('getOne'));
// return no word_id
$oDbStub->method('getOne')
->will($this->returnCallback(function ($sql) {
if (preg_match("/make_standard_name\('a'\)/", $sql)) return 'a';
if (preg_match('/SELECT word_id, word_token/', $sql)) return null;
}));
$oStatus = new Status($oDbStub);
$this->assertNull($oStatus->status());
}
public function testOK()
{
$oDbStub = $this->getMock(\DB::class, array('getOne'));
$oDbStub->method('getOne')
->will($this->returnCallback(function ($sql) {
if (preg_match("/make_standard_name\('(\w+)'\)/", $sql, $aMatch)) return $aMatch[1];
if (preg_match('/SELECT word_id, word_token/', $sql)) return 1234;
}));
$oStatus = new Status($oDbStub);
$this->assertNull($oStatus->status());
}
public function testDataDate()
{
$oDbStub = $this->getMock(\DB::class, array('getOne'));
$oDbStub->method('getOne')
->willReturn(1519430221);
$oStatus = new Status($oDbStub);
$this->assertEquals(1519430221, $oStatus->dataDate());
}
}