mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-16 18:30:17 +01:00
add test for empty salt
This commit is contained in:
parent
874e3e10a4
commit
f170f31594
@ -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.
|
||||
|
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user