mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-23 08:06:33 +00:00
Fix tests
This commit is contained in:
parent
a7abcc7b7a
commit
719ba257d3
2 changed files with 4 additions and 5 deletions
|
@ -239,7 +239,6 @@ class EntryRestController extends WallabagRestController
|
|||
|
||||
// handle multiple urls
|
||||
if (!empty($urls)) {
|
||||
$results = [];
|
||||
foreach ($urls as $key => $url) {
|
||||
$entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId(
|
||||
$url,
|
||||
|
|
|
@ -774,7 +774,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
|
|||
{
|
||||
$list = [
|
||||
'http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html',
|
||||
'http://0.0.0.0/entry6',
|
||||
'http://0.0.0.0/entry1',
|
||||
];
|
||||
|
||||
$this->client->request('POST', '/api/entries/lists?urls='.json_encode($list));
|
||||
|
@ -787,13 +787,13 @@ class EntryRestControllerTest extends WallabagApiTestCase
|
|||
$this->assertEquals('http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html', $content[0]['url']);
|
||||
|
||||
$this->assertInternalType('int', $content[1]['entry']);
|
||||
$this->assertEquals('http://0.0.0.0/entry6', $content[1]['url']);
|
||||
$this->assertEquals('http://0.0.0.0/entry1', $content[1]['url']);
|
||||
}
|
||||
|
||||
public function testDeleteEntriesListAction()
|
||||
{
|
||||
$list = [
|
||||
'http://0.0.0.0/entry2',
|
||||
'http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html',
|
||||
'http://0.0.0.0/entry3',
|
||||
];
|
||||
|
||||
|
@ -804,7 +804,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
|
|||
$content = json_decode($this->client->getResponse()->getContent(), true);
|
||||
|
||||
$this->assertTrue($content[0]['entry']);
|
||||
$this->assertEquals('http://0.0.0.0/entry2', $content[0]['url']);
|
||||
$this->assertEquals('http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html', $content[0]['url']);
|
||||
|
||||
$this->assertFalse($content[1]['entry']);
|
||||
$this->assertEquals('http://0.0.0.0/entry3', $content[1]['url']);
|
||||
|
|
Loading…
Reference in a new issue