forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserHelperTest.php
More file actions
380 lines (342 loc) · 13.7 KB
/
Copy pathUserHelperTest.php
File metadata and controls
380 lines (342 loc) · 13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<?php
/**
* Copyright 2010 - 2017, Cake Development Corporation (https://www.cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2010 - 2017, Cake Development Corporation (https://www.cakedc.com)
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace CakeDC\Users\Test\TestCase\View\Helper;
use CakeDC\Users\Model\Entity\SocialAccount;
use CakeDC\Users\View\Helper\UserHelper;
use Cake\Core\App;
use Cake\Core\Configure;
use Cake\Core\Plugin;
use Cake\Event\Event;
use Cake\Http\ServerRequest;
use Cake\I18n\I18n;
use Cake\Network\Request;
use Cake\Routing\Router;
use Cake\TestSuite\TestCase;
use Cake\View\Helper\HtmlHelper;
use Cake\View\View;
/**
* Users\View\Helper\UserHelper Test Case
*/
class UserHelperTest extends TestCase
{
/**
* Keep the original config for oauth
*
* @var array
*/
private $oauthConfig;
/**
* Keep original config Users.Social.login
*
* @var boolean
*/
private $socialLogin;
/**
* setUp method
*
* @return void
*/
public function setUp()
{
if ($this->oauthConfig === null) {
$this->oauthConfig = (array)Configure::read('OAuth');
$this->socialLogin = Configure::read('Users.Social.login');
}
parent::setUp();
$this->View = $this->getMockBuilder('Cake\View\View')
->setMethods(['append'])
->getMock();
//Assuming all these url's are authorized
$this->AuthLink = $this->getMockBuilder('CakeDC\Users\View\Helper\AuthLinkHelper')
->setMethods(['isAuthorized'])
->setConstructorArgs([$this->View])
->getMock();
$this->AuthLink->expects($this->any())
->method('isAuthorized')
->will($this->returnValue(true));
$this->User = new UserHelper($this->View);
$this->User->AuthLink = $this->AuthLink;
$this->request = new ServerRequest();
}
/**
* tearDown method
*
* @return void
*/
public function tearDown()
{
Configure::write('OAuth', $this->oauthConfig);
Configure::write('Users.Social.login', $this->socialLogin);
unset($this->User);
parent::tearDown();
}
/**
* Test twitterLogin
*
* @return void
*/
public function testLogout()
{
$result = $this->User->logout();
$expected = '<a href="/logout">Logout</a>';
$this->assertEquals($expected, $result);
}
/**
* Test twitterLogin
*
* @return void
*/
public function testLogoutDifferentMessage()
{
$result = $this->User->logout('Sign Out');
$expected = '<a href="/logout">Sign Out</a>';
$this->assertEquals($expected, $result);
}
/**
* Test twitterLogin
*
* @return void
*/
public function testLogoutWithOptions()
{
$result = $this->User->logout('Sign Out', ['class' => 'logout']);
$expected = '<a href="/logout" class="logout">Sign Out</a>';
$this->assertEquals($expected, $result);
}
/**
* Test link
*
* @return void
*/
public function testWelcome()
{
$session = $this->getMockBuilder('Cake\Http\Session')
->setMethods(['read'])
->getMock();
$session->expects($this->at(0))
->method('read')
->with('Auth.User.id')
->will($this->returnValue(2));
$session->expects($this->at(1))
->method('read')
->with('Auth.User.first_name')
->will($this->returnValue('david'));
$this->User->request = $this->getMockBuilder('Cake\Network\Request')
->setMethods(['getSession'])
->getMock();
$this->User->request->expects($this->any())
->method('getSession')
->will($this->returnValue($session));
$expected = '<span class="welcome">Welcome, <a href="/profile">david</a></span>';
$result = $this->User->welcome();
$this->assertEquals($expected, $result);
}
/**
* Test link
*
* @return void
*/
public function testWelcomeNotLoggedInUser()
{
$session = $this->getMockBuilder('Cake\Http\Session')
->setMethods(['read'])
->getMock();
$session->expects($this->at(0))
->method('read')
->with('Auth.User.id')
->will($this->returnValue(null));
$this->User->request = $this->getMockBuilder('Cake\Network\Request')
->setMethods(['getSession'])
->getMock();
$this->User->request->expects($this->any())
->method('getSession')
->will($this->returnValue($session));
$result = $this->User->welcome();
$this->assertEmpty($result);
}
/**
* Test add ReCaptcha field
*
* @return void
*/
public function testAddReCaptcha()
{
Configure::write('Users.reCaptcha.key', 'testKey');
Configure::write('Users.reCaptcha.theme', 'light');
Configure::write('Users.reCaptcha.size', 'normal');
Configure::write('Users.reCaptcha.tabindex', '3');
$result = $this->User->addReCaptcha();
$this->assertEquals('<div class="g-recaptcha" data-sitekey="testKey" data-theme="light" data-size="normal" data-tabindex="3"></div>', $result);
}
/**
* Test add ReCaptcha field
*
* @return void
*/
public function testAddReCaptchaEmpty()
{
$result = $this->User->addReCaptcha();
$expected = '<p>reCaptcha is not configured! Please configure Users.reCaptcha.key</p>';
$this->assertEquals($expected, $result);
}
/**
* Test add ReCaptcha field
*
* @return void
*/
public function testAddReCaptchaScript()
{
$this->View->expects($this->at(0))
->method('append')
->with('script', $this->stringContains('https://www.google.com/recaptcha/api.js'));
$this->User->addReCaptchaScript();
}
/**
* Test social login link
*
* @return void
*/
public function testSocialLoginLink()
{
$result = $this->User->socialLogin('facebook');
$this->assertEquals('<a href="/auth/facebook" class="btn btn-social btn-facebook"><i class="fa fa-facebook"></i>Sign in with Facebook</a>', $result);
$result = $this->User->socialLogin('twitter', ['label' => 'Register with']);
$this->assertEquals('<a href="/auth/twitter" class="btn btn-social btn-twitter"><i class="fa fa-twitter"></i>Register with Twitter</a>', $result);
}
/**
* test
*
* @return void
*/
public function testSocialLoginTranslation()
{
I18n::setLocale('es_ES');
$result = $this->User->socialLogin('facebook');
$this->assertEquals('<a href="/auth/facebook" class="btn btn-social btn-facebook"><i class="fa fa-facebook"></i>Iniciar sesión con Facebook</a>', $result);
I18n::setLocale('en_US');
}
/**
* Test social connect link list
*
* @return void
*/
public function testSocialConnectLinkList()
{
Configure::write('Users.Social.login', true);
Configure::write('OAuth.providers.facebook.options.clientId', 'testclientidtestclientid');
Configure::write('OAuth.providers.facebook.options.clientSecret', 'testclientsecrettestclientsecret');
Configure::write('OAuth.providers.google.options.clientId', 'testclientidgoogtestclientidgoog');
Configure::write('OAuth.providers.google.options.clientSecret', 'testclientsecretgoogtestclientsecretgoog');
$actual = $this->User->socialConnectLinkList();
$expected = '<a href="/link-social/facebook" class="btn btn-social btn-facebook"><span class="fa fa-facebook"></span> Connect with Facebook</a>';
$expected .= '<a href="/link-social/google" class="btn btn-social btn-google"><span class="fa fa-google"></span> Connect with Google</a>';
$this->assertEquals($expected, $actual);
}
/**
* Test social connect link list, user is connected with facebook
*
* @return void
*/
public function testSocialConnectLinkListIsConnectedWithFacebook()
{
Configure::write('Users.Social.login', true);
Configure::write('OAuth.providers.facebook.options.clientId', 'testclientidtestclientid');
Configure::write('OAuth.providers.facebook.options.clientSecret', 'testclientsecrettestclientsecret');
Configure::write('OAuth.providers.google.options.clientId', 'testclientidgoogtestclientidgoog');
Configure::write('OAuth.providers.google.options.clientSecret', 'testclientsecretgoogtestclientsecretgoog');
$socialAccounts = [
new SocialAccount([
'id' => '00000000-0000-0000-0000-000000000001',
'user_id' => '00000000-0000-0000-0000-000000000001',
'provider' => 'Facebook',
'username' => 'user-1-fb',
'reference' => 'reference-1-1234',
'avatar' => 'Lorem ipsum dolor sit amet',
'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.',
'token' => 'token-1234',
'token_secret' => 'Lorem ipsum dolor sit amet',
'token_expires' => '2015-05-22 21:52:44',
'active' => false,
'data' => '',
'created' => '2015-05-22 21:52:44',
'modified' => '2015-05-22 21:52:44'
])
];
$actual = $this->User->socialConnectLinkList($socialAccounts);
$expected = '<a class="btn btn-social btn-facebook disabled"><span class="fa fa-facebook"></span> Connected with Facebook</a>';
$expected .= '<a href="/link-social/google" class="btn btn-social btn-google"><span class="fa fa-google"></span> Connect with Google</a>';
$this->assertEquals($expected, $actual);
}
/**
* Test social connect link list, social is not enabled
*
* @return void
*/
public function testSocialConnectLinkListSocialIsNotEnabled()
{
Configure::write('Users.Social.login', false);
Configure::write('OAuth.providers.facebook.options.clientId', 'testclientidtestclientid');
Configure::write('OAuth.providers.facebook.options.clientSecret', 'testclientsecrettestclientsecret');
Configure::write('OAuth.providers.google.options.clientId', 'testclientidgoogtestclientidgoog');
Configure::write('OAuth.providers.google.options.clientSecret', 'testclientsecretgoogtestclientsecretgoog');
$socialAccounts = [
new SocialAccount([
'id' => '00000000-0000-0000-0000-000000000001',
'user_id' => '00000000-0000-0000-0000-000000000001',
'provider' => 'Facebook',
'username' => 'user-1-fb',
'reference' => 'reference-1-1234',
'avatar' => 'Lorem ipsum dolor sit amet',
'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.',
'token' => 'token-1234',
'token_secret' => 'Lorem ipsum dolor sit amet',
'token_expires' => '2015-05-22 21:52:44',
'active' => false,
'data' => '',
'created' => '2015-05-22 21:52:44',
'modified' => '2015-05-22 21:52:44'
])
];
$actual = $this->User->socialConnectLinkList($socialAccounts);
$expected = '';
$this->assertEquals($expected, $actual);
}
/**
* Test social connect link list, social is enabled but any provider was configured
*
* @return void
*/
public function testSocialConnectLinkListSocialEnabledButNotConfiguredProvider()
{
Configure::write('Users.Social.login', true);
$socialAccounts = [
new SocialAccount([
'id' => '00000000-0000-0000-0000-000000000001',
'user_id' => '00000000-0000-0000-0000-000000000001',
'provider' => 'Facebook',
'username' => 'user-1-fb',
'reference' => 'reference-1-1234',
'avatar' => 'Lorem ipsum dolor sit amet',
'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.',
'token' => 'token-1234',
'token_secret' => 'Lorem ipsum dolor sit amet',
'token_expires' => '2015-05-22 21:52:44',
'active' => false,
'data' => '',
'created' => '2015-05-22 21:52:44',
'modified' => '2015-05-22 21:52:44'
])
];
$actual = $this->User->socialConnectLinkList($socialAccounts);
$expected = '';
$this->assertEquals($expected, $actual);
}
}