3 namespace Tests\Wallabag\ApiBundle\Controller
;
5 use Tests\Wallabag\CoreBundle\WallabagCoreTestCase
;
6 use Wallabag\ApiBundle\Entity\Client
;
8 class DeveloperControllerTest
extends WallabagCoreTestCase
10 public function testCreateClient()
12 $this->logInAs('admin');
13 $client = $this->getClient();
14 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
15 $nbClients = $em->getRepository('WallabagApiBundle:Client')->findAll();
17 $crawler = $client->request('GET', '/developer/client/create');
18 $this->assertSame(200, $client->getResponse()->getStatusCode());
20 $form = $crawler->filter('button[id=client_save]')->form();
23 'client[name]' => 'My app',
26 $crawler = $client->submit($form, $data);
28 $this->assertSame(200, $client->getResponse()->getStatusCode());
30 $newNbClients = $em->getRepository('WallabagApiBundle:Client')->findAll();
31 $this->assertGreaterThan(count($nbClients), count($newNbClients));
33 $this->assertGreaterThan(1, $alert = $crawler->filter('.settings ul li strong')->extract(['_text']));
34 $this->assertContains('My app', $alert[0]);
37 public function testCreateToken()
39 $client = $this->getClient();
40 $apiClient = $this->createApiClientForUser('admin');
42 $client->request('POST', '/oauth/v2/token', [
43 'grant_type' => 'password',
44 'client_id' => $apiClient->getPublicId(),
45 'client_secret' => $apiClient->getSecret(),
46 'username' => 'admin',
47 'password' => 'mypassword',
50 $this->assertSame(200, $client->getResponse()->getStatusCode());
52 $data = json_decode($client->getResponse()->getContent(), true);
53 $this->assertArrayHasKey('access_token', $data);
54 $this->assertArrayHasKey('expires_in', $data);
55 $this->assertArrayHasKey('token_type', $data);
56 $this->assertArrayHasKey('refresh_token', $data);
59 public function testListingClient()
61 $this->logInAs('admin');
62 $client = $this->getClient();
63 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
64 $nbClients = $em->getRepository('WallabagApiBundle:Client')->findAll();
66 $crawler = $client->request('GET', '/developer');
67 $this->assertSame(200, $client->getResponse()->getStatusCode());
68 $this->assertSame(count($nbClients), $crawler->filter('ul[class=collapsible] li')->count());
71 public function testDeveloperHowto()
73 $this->logInAs('admin');
74 $client = $this->getClient();
76 $crawler = $client->request('GET', '/developer/howto/first-app');
77 $this->assertSame(200, $client->getResponse()->getStatusCode());
80 public function testRemoveClient()
82 $client = $this->getClient();
83 $adminApiClient = $this->createApiClientForUser('admin');
84 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
86 // Try to remove an admin's client with a wrong user
87 $this->logInAs('bob');
88 $client->request('GET', '/developer');
89 $this->assertContains('no_client', $client->getResponse()->getContent());
91 $this->logInAs('bob');
92 $client->request('GET', '/developer/client/delete/' . $adminApiClient->getId());
93 $this->assertSame(403, $client->getResponse()->getStatusCode());
95 // Try to remove the admin's client with the good user
96 $this->logInAs('admin');
97 $crawler = $client->request('GET', '/developer');
100 ->filter('div[class=collapsible-body] p a')
105 $client->click($link);
106 $this->assertSame(302, $client->getResponse()->getStatusCode());
109 $em->getRepository('WallabagApiBundle:Client')->find($adminApiClient->getId()),
110 'The client should have been removed'
115 * @param string $username
116 * @param array $grantTypes
120 private function createApiClientForUser($username, $grantTypes = ['password'])
122 $client = $this->getClient();
123 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
124 $userManager = $client->getContainer()->get('fos_user.user_manager');
125 $user = $userManager->findUserBy(['username' => $username]);
126 $apiClient = new Client($user);
127 $apiClient->setName('My app');
128 $apiClient->setAllowedGrantTypes($grantTypes);
129 $em->persist($apiClient);