diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-03-04 12:31:27 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-03-04 12:31:27 +0100 |
commit | e18138dbca536ebd49c938144f9d051e5276d4ea (patch) | |
tree | 501001e8866d7c1c7c4e22c384b208b68aff257b /src/Wallabag/ApiBundle/Tests | |
parent | 9e3355ee4f9601cb4af95323c8b2935b6f2bd838 (diff) | |
parent | fba9e7d44d5987a603add50dc450f50079340dcc (diff) | |
download | wallabag-e18138dbca536ebd49c938144f9d051e5276d4ea.tar.gz wallabag-e18138dbca536ebd49c938144f9d051e5276d4ea.tar.zst wallabag-e18138dbca536ebd49c938144f9d051e5276d4ea.zip |
Merge pull request #1754 from wallabag/v2-api-new-properties-light
Add starred & archive properties to API
Diffstat (limited to 'src/Wallabag/ApiBundle/Tests')
-rw-r--r-- | src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php b/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php index 22894a77..630b75bf 100644 --- a/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php +++ b/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php | |||
@@ -162,6 +162,24 @@ class WallabagRestControllerTest extends WallabagApiTestCase | |||
162 | $this->assertCount(1, $content['tags']); | 162 | $this->assertCount(1, $content['tags']); |
163 | } | 163 | } |
164 | 164 | ||
165 | public function testPostArchivedEntry() | ||
166 | { | ||
167 | $this->client->request('POST', '/api/entries.json', array( | ||
168 | 'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', | ||
169 | 'archive' => true, | ||
170 | 'starred' => false, | ||
171 | )); | ||
172 | |||
173 | $this->assertEquals(200, $this->client->getResponse()->getStatusCode()); | ||
174 | |||
175 | $content = json_decode($this->client->getResponse()->getContent(), true); | ||
176 | |||
177 | $this->assertGreaterThan(0, $content['id']); | ||
178 | $this->assertEquals('http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', $content['url']); | ||
179 | $this->assertEquals(true, $content['is_archived']); | ||
180 | $this->assertEquals(false, $content['is_starred']); | ||
181 | } | ||
182 | |||
165 | public function testPatchEntry() | 183 | public function testPatchEntry() |
166 | { | 184 | { |
167 | $entry = $this->client->getContainer() | 185 | $entry = $this->client->getContainer() |