forked from wallabag/wallabag
Return 304 when content isn't reloaded using the API
Previously it was a 400 but this is more related to a real error. Using the API user should only know the content got reloaded or not. If reloaded: 200 otherwise: 304.
This commit is contained in:
@ -690,11 +690,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
|
||||
}
|
||||
|
||||
$this->client->request('PATCH', '/api/entries/'.$entry->getId().'/reload.json');
|
||||
$this->assertEquals(400, $this->client->getResponse()->getStatusCode());
|
||||
|
||||
$this->assertContains('Error while trying to extract content', $this->client->getResponse()->getContent());
|
||||
|
||||
$this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
|
||||
$this->assertEquals(304, $this->client->getResponse()->getStatusCode());
|
||||
}
|
||||
|
||||
public function testReloadEntry()
|
||||
|
||||
Reference in New Issue
Block a user