]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ApiBundle/Controller/UserRestControllerTest.php
Add a real configuration for CS-Fixer
[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');
f808b016 12 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
5709ecb3
JB
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
f808b016
JB
23 $this->assertSame('bigboss@wallabag.org', $content['email']);
24 $this->assertSame('Big boss', $content['name']);
25 $this->assertSame('admin', $content['username']);
5709ecb3 26
f808b016 27 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
5709ecb3
JB
28 }
29
426bb453
JB
30 public function testGetUserWithoutAuthentication()
31 {
32 $client = static::createClient();
33 $client->request('GET', '/api/user.json');
f808b016 34 $this->assertSame(401, $client->getResponse()->getStatusCode());
426bb453
JB
35
36 $content = json_decode($client->getResponse()->getContent(), true);
37
38 $this->assertArrayHasKey('error', $content);
39 $this->assertArrayHasKey('error_description', $content);
40
f808b016 41 $this->assertSame('access_denied', $content['error']);
426bb453 42
f808b016 43 $this->assertSame('application/json', $client->getResponse()->headers->get('Content-Type'));
426bb453
JB
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
f808b016 55 $this->assertSame(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 65
f808b016
JB
66 $this->assertSame('wallabag@google.com', $content['email']);
67 $this->assertSame('google', $content['username']);
5709ecb3 68
0c00e525
JB
69 $this->assertArrayHasKey('client_secret', $content['default_client']);
70 $this->assertArrayHasKey('client_id', $content['default_client']);
71
f808b016 72 $this->assertSame('Default client', $content['default_client']['name']);
0c00e525 73
f808b016 74 $this->assertSame('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
f808b016 91 $this->assertSame(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 101
f808b016
JB
102 $this->assertSame('wallabag@google.com', $content['email']);
103 $this->assertSame('google', $content['username']);
fe6461e4 104
0c00e525
JB
105 $this->assertArrayHasKey('client_secret', $content['default_client']);
106 $this->assertArrayHasKey('client_id', $content['default_client']);
107
f808b016 108 $this->assertSame('My client name !!', $content['default_client']['name']);
0c00e525 109
f808b016 110 $this->assertSame('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
f808b016 125 $this->assertSame(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 ...
f808b016
JB
136 $this->assertSame('This value is already used.', $content['error']['username'][0]);
137 $this->assertSame('This value is already used.', $content['error']['email'][0]);
5709ecb3 138
f808b016 139 $this->assertSame('application/json', $client->getResponse()->headers->get('Content-Type'));
426bb453
JB
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
f808b016 154 $this->assertSame(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
f808b016 161 $this->assertSame('validator.password_too_short', $content['error']['password'][0]);
5709ecb3 162
f808b016 163 $this->assertSame('application/json', $client->getResponse()->headers->get('Content-Type'));
426bb453
JB
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
f808b016 177 $this->assertSame(403, $client->getResponse()->getStatusCode());
426bb453
JB
178
179 $content = json_decode($client->getResponse()->getContent(), true);
180
181 $this->assertArrayHasKey('error', $content);
182
f808b016 183 $this->assertSame('application/json', $client->getResponse()->headers->get('Content-Type'));
5709ecb3
JB
184 }
185}