]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Ensure access_token are removed 2351/head
authorJeremy Benoist <jeremy.benoist@gmail.com>
Fri, 7 Oct 2016 22:02:22 +0000 (00:02 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Fri, 7 Oct 2016 22:05:41 +0000 (00:05 +0200)
When we remove the client, we should ensure that access_token are also removed.

To ensure that, I created a test that generated an access_token. So when we remove the client, this association should be cascaded and shouldn’t generate an error.

Also I moved some Api related stuff to the ApiBundle (like the developer controler and ClientType form)

app/config/routing.yml
src/Wallabag/ApiBundle/Controller/DeveloperController.php [moved from src/Wallabag/CoreBundle/Controller/DeveloperController.php with 97% similarity]
src/Wallabag/ApiBundle/Entity/Client.php
src/Wallabag/ApiBundle/Form/Type/ClientType.php [moved from src/Wallabag/CoreBundle/Form/Type/ClientType.php with 97% similarity]
tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php [moved from tests/Wallabag/CoreBundle/Controller/DeveloperControllerTest.php with 72% similarity]

index 2be74d7f08fcc46d960e193f3098e2405bcf58e0..750ed43568657bfa1b7b3a43988bac3b5e9f1f09 100644 (file)
@@ -12,6 +12,11 @@ wallabag_user:
     type: annotation
     prefix: /users
 
+wallabag_api:
+    resource: "@WallabagApiBundle/Controller/"
+    type: annotation
+    prefix: /
+
 wallabag_api:
     resource: "@WallabagApiBundle/Resources/config/routing.yml"
     prefix: /
similarity index 97%
rename from src/Wallabag/CoreBundle/Controller/DeveloperController.php
rename to src/Wallabag/ApiBundle/Controller/DeveloperController.php
index f3492b74e77831ec1ad280596d0d74b99fcf489f..5a36a2605595f6e2503a06ab8e493ae0967df544 100644 (file)
@@ -1,12 +1,12 @@
 <?php
 
-namespace Wallabag\CoreBundle\Controller;
+namespace Wallabag\ApiBundle\Controller;
 
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
 use Symfony\Component\HttpFoundation\Request;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
 use Wallabag\ApiBundle\Entity\Client;
-use Wallabag\CoreBundle\Form\Type\ClientType;
+use Wallabag\ApiBundle\Form\Type\ClientType;
 
 class DeveloperController extends Controller
 {
index 92b2f762d32f7d89d9d1b4501100961a36c07ffc..f7898ac82852292835175581a2ea0b797738ed1d 100644 (file)
@@ -30,6 +30,11 @@ class Client extends BaseClient
      */
     protected $refreshTokens;
 
+    /**
+     * @ORM\OneToMany(targetEntity="AccessToken", mappedBy="client", cascade={"remove"})
+     */
+    protected $accessTokens;
+
     public function __construct()
     {
         parent::__construct();
similarity index 97%
rename from src/Wallabag/CoreBundle/Form/Type/ClientType.php
rename to src/Wallabag/ApiBundle/Form/Type/ClientType.php
index d1fa94e6c314b548b85650a4aaa119ec25f37bbe..0ea1a9c5c6469c60c4126ba5773cf1172d4a7894 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-namespace Wallabag\CoreBundle\Form\Type;
+namespace Wallabag\ApiBundle\Form\Type;
 
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\CallbackTransformer;
similarity index 72%
rename from tests/Wallabag/CoreBundle/Controller/DeveloperControllerTest.php
rename to tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php
index 97ed0d58fa01ce99abfd65bf2f0163344e582a59..95befa9cab2f4fe2502b7776a784c8d022d62905 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-namespace Tests\Wallabag\CoreBundle\Controller;
+namespace Tests\Wallabag\ApiBundle\Controller;
 
 use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
 
@@ -33,6 +33,32 @@ class DeveloperControllerTest extends WallabagCoreTestCase
         $this->assertContains('My app', $alert[0]);
     }
 
+    /**
+     * @depends testCreateClient
+     */
+    public function testCreateToken()
+    {
+        $client = $this->getClient();
+        $em = $client->getContainer()->get('doctrine.orm.entity_manager');
+        $apiClient = $em->getRepository('WallabagApiBundle:Client')->findOneByName('My app');
+
+        $client->request('POST', '/oauth/v2/token', [
+            'grant_type' => 'password',
+            'client_id' => $apiClient->getPublicId(),
+            'client_secret' => $apiClient->getSecret(),
+            'username' => 'admin',
+            'password' => 'mypassword',
+        ]);
+
+        $this->assertEquals(200, $client->getResponse()->getStatusCode());
+
+        $data = json_decode($client->getResponse()->getContent(), true);
+        $this->assertArrayHasKey('access_token', $data);
+        $this->assertArrayHasKey('expires_in', $data);
+        $this->assertArrayHasKey('token_type', $data);
+        $this->assertArrayHasKey('refresh_token', $data);
+    }
+
     public function testListingClient()
     {
         $this->logInAs('admin');