aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-01-10 17:03:03 +0100
committerGitHub <noreply@github.com>2019-01-10 17:03:03 +0100
commit03663530edf0512cc337518d794bd3c71ebdde96 (patch)
tree8d86ef334fc955af8c098ca400796549ba8e444d /tests
parentca990600da23344b9735834bb22e8658b195a55b (diff)
parent3a2d4cf9fda87760c86320a7f8a5041d1d4256c6 (diff)
downloadwallabag-03663530edf0512cc337518d794bd3c71ebdde96.tar.gz
wallabag-03663530edf0512cc337518d794bd3c71ebdde96.tar.zst
wallabag-03663530edf0512cc337518d794bd3c71ebdde96.zip
Merge pull request #3831 from wallabag/fix/api-bad-client-id
Cast client id to avoid PG error
Diffstat (limited to 'tests')
-rw-r--r--tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php b/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php
index f58d1c12..e1a0ac7e 100644
--- a/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php
+++ b/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php
@@ -56,6 +56,20 @@ class DeveloperControllerTest extends WallabagCoreTestCase
56 $this->assertArrayHasKey('refresh_token', $data); 56 $this->assertArrayHasKey('refresh_token', $data);
57 } 57 }
58 58
59 public function testCreateTokenWithBadClientId()
60 {
61 $client = $this->getClient();
62 $client->request('POST', '/oauth/v2/token', [
63 'grant_type' => 'password',
64 'client_id' => '$WALLABAG_CLIENT_ID',
65 'client_secret' => 'secret',
66 'username' => 'admin',
67 'password' => 'mypassword',
68 ]);
69
70 $this->assertSame(400, $client->getResponse()->getStatusCode());
71 }
72
59 public function testListingClient() 73 public function testListingClient()
60 { 74 {
61 $this->logInAs('admin'); 75 $this->logInAs('admin');