aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Tests
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-03-04 11:40:48 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-03-04 11:46:18 +0100
commitfba9e7d44d5987a603add50dc450f50079340dcc (patch)
tree501001e8866d7c1c7c4e22c384b208b68aff257b /src/Wallabag/ApiBundle/Tests
parent11a452813c5c048174f0d827c2a171bb53520d0a (diff)
downloadwallabag-fba9e7d44d5987a603add50dc450f50079340dcc.tar.gz
wallabag-fba9e7d44d5987a603add50dc450f50079340dcc.tar.zst
wallabag-fba9e7d44d5987a603add50dc450f50079340dcc.zip
Remove 'content' from API
Waiting to find a good solution to avoid side problem since user can no define the content
Diffstat (limited to 'src/Wallabag/ApiBundle/Tests')
-rw-r--r--src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php b/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php
index 6e64d84f..630b75bf 100644
--- a/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php
+++ b/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php
@@ -180,22 +180,6 @@ class WallabagRestControllerTest extends WallabagApiTestCase
180 $this->assertEquals(false, $content['is_starred']); 180 $this->assertEquals(false, $content['is_starred']);
181 } 181 }
182 182
183 public function testPostEntryWithContent()
184 {
185 $this->client->request('POST', '/api/entries.json', array(
186 'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
187 'content' => 'This is a new content for my entry',
188 ));
189
190 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
191
192 $content = json_decode($this->client->getResponse()->getContent(), true);
193
194 $this->assertGreaterThan(0, $content['id']);
195 $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']);
196 $this->assertEquals('This is a new content for my entry', $content['content']);
197 }
198
199 public function testPatchEntry() 183 public function testPatchEntry()
200 { 184 {
201 $entry = $this->client->getContainer() 185 $entry = $this->client->getContainer()