add test for empty salt

This commit is contained in:
Nicolas Lœuillet 2015-02-11 15:15:06 +01:00
parent 874e3e10a4
commit f170f31594
2 changed files with 2 additions and 1 deletions

View file

@ -33,7 +33,7 @@ class WallabagRestController extends Controller
throw $this->createNotFoundException();
}
return array($user->getSalt());
return array($user->getSalt() ?: null);
}
/**
* Retrieve all entries. It could be filtered by many options.

View file

@ -35,6 +35,7 @@ class WallabagRestControllerTest extends WallabagTestCase
$client = $this->createClient();
$client->request('GET', '/api/salts/admin.json');
$this->assertEquals(200, $client->getResponse()->getStatusCode());
$this->assertNotEmpty(json_decode($client->getResponse()->getContent()));
$client->request('GET', '/api/salts/notfound.json');
$this->assertEquals(404, $client->getResponse()->getStatusCode());