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
228 lines (204 loc) · 6.15 KB
/
Copy pathUserHelperTest.php
File metadata and controls
228 lines (204 loc) · 6.15 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
<?php
/**
* Copyright 2010 - 2015, Cake Development Corporation (http://cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2010 - 2015, Cake Development Corporation (http://cakedc.com)
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace CakeDC\Users\Test\TestCase\View\Helper;
use CakeDC\Users\View\Helper\UserHelper;
use Cake\Core\App;
use Cake\Core\Configure;
use Cake\Core\Plugin;
use Cake\Event\Event;
use Cake\Network\Request;
use Cake\Routing\Router;
use Cake\TestSuite\TestCase;
use Cake\View\View;
/**
* Users\View\Helper\UserHelper Test Case
*/
class UserHelperTest extends TestCase
{
/**
* setUp method
*
* @return void
*/
public function setUp()
{
parent::setUp();
Plugin::routes('CakeDC/Users');
$this->View = $this->getMock('Cake\View\View', ['append']);
$this->User = new UserHelper($this->View);
$this->request = new Request();
}
/**
* tearDown method
*
* @return void
*/
public function tearDown()
{
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 testLinkFalse()
{
$link = $this->User->link('title', ['controller' => 'noaccess']);
$this->assertSame(false, $link);
}
/**
* Test link
*
* @return void
*/
public function testLinkAuthorized()
{
$view = new View();
$eventManagerMock = $this->getMockBuilder('Cake\Event\EventManager')
->setMethods(['dispatch'])
->getMock();
$view->eventManager($eventManagerMock);
$this->User = new UserHelper($view);
$result = new Event('dispatch-result');
$result->result = true;
$eventManagerMock->expects($this->once())
->method('dispatch')
->will($this->returnValue($result));
$link = $this->User->link('title', '/', ['before' => 'before_', 'after' => '_after', 'class' => 'link-class']);
$this->assertSame('before_<a href="/" class="link-class">title</a>_after', $link);
}
/**
* Test link
*
* @return void
*/
public function testWelcome()
{
$session = $this->getMock('Cake\Network\Session', ['read']);
$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->getMock('Cake\Network\Request', ['session']);
$this->User->request->expects($this->any())
->method('session')
->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->getMock('Cake\Network\Session', ['read']);
$session->expects($this->at(0))
->method('read')
->with('Auth.User.id')
->will($this->returnValue(null));
$this->User->request = $this->getMock('Cake\Network\Request', ['session']);
$this->User->request->expects($this->any())
->method('session')
->will($this->returnValue($session));
$result = $this->User->welcome();
$this->assertEmpty($result);
}
/**
* Test add ReCaptcha field
*
* @return void
*/
public function testAddReCaptcha()
{
$siteKey = Configure::read('reCaptcha.key');
Configure::write('reCaptcha.key', 'testKey');
$result = $this->User->addReCaptcha();
$this->assertEquals('<div class="g-recaptcha" data-sitekey="testKey"></div>', $result);
Configure::write('reCaptcha.key', $siteKey);
}
/**
* Test add ReCaptcha field
*
* @return void
*/
public function testAddReCaptchaEmpty()
{
Configure::write('Users.Registration.reCaptcha', false);
$result = $this->User->addReCaptcha();
$this->assertFalse($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);
}
}