]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ApiBundle/Controller/UserRestControllerTest.php
Add ability to name the client
[github/wallabag/wallabag.git] / tests / Wallabag / ApiBundle / Controller / UserRestControllerTest.php
CommitLineData
5709ecb3
JB
1<?php
2
3namespace Tests\Wallabag\ApiBundle\Controller;
4
5use Tests\Wallabag\ApiBundle\WallabagApiTestCase;
6
7class UserRestControllerTest extends WallabagApiTestCase
8{
9 public function testGetUser()
10 {
11 $this->client->request('GET', '/api/user.json');
12 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
13
14 $content = json_decode($this->client->getResponse()->getContent(), true);
15
16 $this->assertArrayHasKey('id', $content);
17 $this->assertArrayHasKey('email', $content);
18 $this->assertArrayHasKey('name', $content);
19 $this->assertArrayHasKey('username', $content);
20 $this->assertArrayHasKey('created_at', $content);
21 $this->assertArrayHasKey('updated_at', $content);
22
23 $this->assertEquals('bigboss@wallabag.org', $content['email']);
24 $this->assertEquals('Big boss', $content['name']);
25 $this->assertEquals('admin', $content['username']);
26
27 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
28 }
29
426bb453
JB
30 public function testGetUserWithoutAuthentication()
31 {
32 $client = static::createClient();
33 $client->request('GET', '/api/user.json');
34 $this->assertEquals(401, $client->getResponse()->getStatusCode());
35
36 $content = json_decode($client->getResponse()->getContent(), true);
37
38 $this->assertArrayHasKey('error', $content);
39 $this->assertArrayHasKey('error_description', $content);
40
41 $this->assertEquals('access_denied', $content['error']);
42
43 $this->assertEquals('application/json', $client->getResponse()->headers->get('Content-Type'));
44 }
45
5709ecb3
JB
46 public function testCreateNewUser()
47 {
426bb453 48 $this->client->getContainer()->get('craue_config')->set('api_user_registration', 1);
5709ecb3
JB
49 $this->client->request('PUT', '/api/user.json', [
50 'username' => 'google',
51 'password' => 'googlegoogle',
52 'email' => 'wallabag@google.com',
53 ]);
54
a1e61874 55 $this->assertEquals(201, $this->client->getResponse()->getStatusCode());
5709ecb3
JB
56
57 $content = json_decode($this->client->getResponse()->getContent(), true);
58
59 $this->assertArrayHasKey('id', $content);
60 $this->assertArrayHasKey('email', $content);
61 $this->assertArrayHasKey('username', $content);
62 $this->assertArrayHasKey('created_at', $content);
63 $this->assertArrayHasKey('updated_at', $content);
0c00e525 64 $this->assertArrayHasKey('default_client', $content);
5709ecb3
JB
65
66 $this->assertEquals('wallabag@google.com', $content['email']);
67 $this->assertEquals('google', $content['username']);
68
0c00e525
JB
69 $this->assertArrayHasKey('client_secret', $content['default_client']);
70 $this->assertArrayHasKey('client_id', $content['default_client']);
71
72 $this->assertEquals('Default client', $content['default_client']['name']);
73
5709ecb3 74 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
fe6461e4 75
426bb453
JB
76 $this->client->getContainer()->get('craue_config')->set('api_user_registration', 0);
77 }
78
79 public function testCreateNewUserWithoutAuthentication()
80 {
81 // create a new client instead of using $this->client to be sure client isn't authenticated
82 $client = static::createClient();
83 $client->getContainer()->get('craue_config')->set('api_user_registration', 1);
84 $client->request('PUT', '/api/user.json', [
85 'username' => 'google',
86 'password' => 'googlegoogle',
87 'email' => 'wallabag@google.com',
a8d3fe50 88 'client_name' => 'My client name !!',
426bb453
JB
89 ]);
90
a1e61874 91 $this->assertEquals(201, $client->getResponse()->getStatusCode());
426bb453
JB
92
93 $content = json_decode($client->getResponse()->getContent(), true);
94
95 $this->assertArrayHasKey('id', $content);
96 $this->assertArrayHasKey('email', $content);
97 $this->assertArrayHasKey('username', $content);
98 $this->assertArrayHasKey('created_at', $content);
99 $this->assertArrayHasKey('updated_at', $content);
0c00e525 100 $this->assertArrayHasKey('default_client', $content);
426bb453
JB
101
102 $this->assertEquals('wallabag@google.com', $content['email']);
103 $this->assertEquals('google', $content['username']);
fe6461e4 104
0c00e525
JB
105 $this->assertArrayHasKey('client_secret', $content['default_client']);
106 $this->assertArrayHasKey('client_id', $content['default_client']);
107
a8d3fe50 108 $this->assertEquals('My client name !!', $content['default_client']['name']);
0c00e525 109
426bb453 110 $this->assertEquals('application/json', $client->getResponse()->headers->get('Content-Type'));
fe6461e4 111
426bb453 112 $client->getContainer()->get('craue_config')->set('api_user_registration', 0);
5709ecb3
JB
113 }
114
115 public function testCreateNewUserWithExistingEmail()
116 {
426bb453
JB
117 $client = static::createClient();
118 $client->getContainer()->get('craue_config')->set('api_user_registration', 1);
119 $client->request('PUT', '/api/user.json', [
fe6461e4 120 'username' => 'admin',
5709ecb3
JB
121 'password' => 'googlegoogle',
122 'email' => 'bigboss@wallabag.org',
123 ]);
124
426bb453 125 $this->assertEquals(400, $client->getResponse()->getStatusCode());
5709ecb3 126
426bb453 127 $content = json_decode($client->getResponse()->getContent(), true);
5709ecb3
JB
128
129 $this->assertArrayHasKey('error', $content);
130 $this->assertArrayHasKey('username', $content['error']);
131 $this->assertArrayHasKey('email', $content['error']);
132
133 // $this->assertEquals('fos_user.username.already_used', $content['error']['username'][0]);
134 // $this->assertEquals('fos_user.email.already_used', $content['error']['email'][0]);
135 // This shouldn't be translated ...
136 $this->assertEquals('This value is already used.', $content['error']['username'][0]);
137 $this->assertEquals('This value is already used.', $content['error']['email'][0]);
138
426bb453
JB
139 $this->assertEquals('application/json', $client->getResponse()->headers->get('Content-Type'));
140
141 $client->getContainer()->get('craue_config')->set('api_user_registration', 0);
5709ecb3
JB
142 }
143
144 public function testCreateNewUserWithTooShortPassword()
145 {
426bb453
JB
146 $client = static::createClient();
147 $client->getContainer()->get('craue_config')->set('api_user_registration', 1);
148 $client->request('PUT', '/api/user.json', [
5709ecb3
JB
149 'username' => 'facebook',
150 'password' => 'face',
151 'email' => 'facebook@wallabag.org',
152 ]);
153
426bb453 154 $this->assertEquals(400, $client->getResponse()->getStatusCode());
5709ecb3 155
426bb453 156 $content = json_decode($client->getResponse()->getContent(), true);
5709ecb3
JB
157
158 $this->assertArrayHasKey('error', $content);
159 $this->assertArrayHasKey('password', $content['error']);
160
161 $this->assertEquals('validator.password_too_short', $content['error']['password'][0]);
162
426bb453
JB
163 $this->assertEquals('application/json', $client->getResponse()->headers->get('Content-Type'));
164
165 $client->getContainer()->get('craue_config')->set('api_user_registration', 0);
166 }
167
168 public function testCreateNewUserWhenRegistrationIsDisabled()
169 {
170 $client = static::createClient();
171 $client->request('PUT', '/api/user.json', [
172 'username' => 'facebook',
173 'password' => 'face',
174 'email' => 'facebook@wallabag.org',
175 ]);
176
177 $this->assertEquals(403, $client->getResponse()->getStatusCode());
178
179 $content = json_decode($client->getResponse()->getContent(), true);
180
181 $this->assertArrayHasKey('error', $content);
182
183 $this->assertEquals('application/json', $client->getResponse()->headers->get('Content-Type'));
5709ecb3
JB
184 }
185}