]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php
Fixed tests
[github/wallabag/wallabag.git] / tests / Wallabag / ApiBundle / Controller / DeveloperControllerTest.php
CommitLineData
8a4690b6 1<?php
5bf8f3f1 2
ee32248f 3namespace Tests\Wallabag\ApiBundle\Controller;
8a4690b6 4
23634d5d 5use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
7ab5eb95 6use Wallabag\ApiBundle\Entity\Client;
8a4690b6
NL
7
8class DeveloperControllerTest extends WallabagCoreTestCase
9{
9bf15f02 10 public function testCreateClient()
8a4690b6
NL
11 {
12 $this->logInAs('admin');
13 $client = $this->getClient();
9bf15f02
JB
14 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
15 $nbClients = $em->getRepository('WallabagApiBundle:Client')->findAll();
8a4690b6
NL
16
17 $crawler = $client->request('GET', '/developer/client/create');
f808b016 18 $this->assertSame(200, $client->getResponse()->getStatusCode());
8a4690b6 19
5614df19 20 $form = $crawler->filter('button[id=client_save]')->form();
8a4690b6 21
9c545fe0
TC
22 $data = [
23 'client[name]' => 'My app',
24 ];
25
26 $crawler = $client->submit($form, $data);
8a4690b6 27
f808b016 28 $this->assertSame(200, $client->getResponse()->getStatusCode());
9bf15f02
JB
29
30 $newNbClients = $em->getRepository('WallabagApiBundle:Client')->findAll();
31 $this->assertGreaterThan(count($nbClients), count($newNbClients));
9c545fe0
TC
32
33 $this->assertGreaterThan(1, $alert = $crawler->filter('.settings ul li strong')->extract(['_text']));
34 $this->assertContains('My app', $alert[0]);
9bf15f02
JB
35 }
36
2e5b2fa8 37 public function testCreateToken()
ee32248f
JB
38 {
39 $client = $this->getClient();
7ab5eb95 40 $apiClient = $this->createApiClientForUser('admin');
ee32248f
JB
41
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',
48 ]);
49
f808b016 50 $this->assertSame(200, $client->getResponse()->getStatusCode());
ee32248f
JB
51
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);
57 }
58
9bf15f02
JB
59 public function testListingClient()
60 {
61 $this->logInAs('admin');
62 $client = $this->getClient();
63 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
64 $nbClients = $em->getRepository('WallabagApiBundle:Client')->findAll();
65
66 $crawler = $client->request('GET', '/developer');
f808b016
JB
67 $this->assertSame(200, $client->getResponse()->getStatusCode());
68 $this->assertSame(count($nbClients), $crawler->filter('ul[class=collapsible] li')->count());
9bf15f02
JB
69 }
70
71 public function testDeveloperHowto()
72 {
73 $this->logInAs('admin');
74 $client = $this->getClient();
75
76 $crawler = $client->request('GET', '/developer/howto/first-app');
f808b016 77 $this->assertSame(200, $client->getResponse()->getStatusCode());
9bf15f02
JB
78 }
79
80 public function testRemoveClient()
81 {
9bf15f02 82 $client = $this->getClient();
7ab5eb95 83 $adminApiClient = $this->createApiClientForUser('admin');
9bf15f02 84 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
9bf15f02 85
f24ea59e
NL
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());
90
f24ea59e 91 $this->logInAs('bob');
f808b016
JB
92 $client->request('GET', '/developer/client/delete/' . $adminApiClient->getId());
93 $this->assertSame(403, $client->getResponse()->getStatusCode());
f24ea59e
NL
94
95 // Try to remove the admin's client with the good user
96 $this->logInAs('admin');
9bf15f02
JB
97 $crawler = $client->request('GET', '/developer');
98
99 $link = $crawler
100 ->filter('div[class=collapsible-body] p a')
101 ->eq(0)
102 ->link()
103 ;
104
105 $client->click($link);
f808b016 106 $this->assertSame(302, $client->getResponse()->getStatusCode());
9bf15f02 107
7ab5eb95 108 $this->assertNull(
109 $em->getRepository('WallabagApiBundle:Client')->find($adminApiClient->getId()),
110 'The client should have been removed'
111 );
112 }
113
114 /**
115 * @param string $username
f808b016 116 * @param array $grantTypes
7ab5eb95 117 *
118 * @return Client
119 */
caa0b176 120 private function createApiClientForUser($username, $grantTypes = ['password'])
7ab5eb95 121 {
122 $client = $this->getClient();
123 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
124 $userManager = $client->getContainer()->get('fos_user.user_manager');
f808b016 125 $user = $userManager->findUserBy(['username' => $username]);
7ab5eb95 126 $apiClient = new Client($user);
127 $apiClient->setName('My app');
caa0b176 128 $apiClient->setAllowedGrantTypes($grantTypes);
7ab5eb95 129 $em->persist($apiClient);
130 $em->flush();
131
132 return $apiClient;
8a4690b6
NL
133 }
134}