forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSocialAccountsControllerTest.php
More file actions
198 lines (178 loc) · 6.96 KB
/
Copy pathSocialAccountsControllerTest.php
File metadata and controls
198 lines (178 loc) · 6.96 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
<?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\Controller;
use Cake\Core\Configure;
use Cake\Http\ServerRequest;
use Cake\Mailer\Email;
use Cake\Mailer\TransportFactory;
use Cake\TestSuite\TestCase;
class SocialAccountsControllerTest extends TestCase
{
/**
* Fixtures
*
* @var array
*/
public $fixtures = [
'plugin.CakeDC/Users.SocialAccounts',
'plugin.CakeDC/Users.Users'
];
/**
* setUp
*
* @return void
*/
public function setUp()
{
parent::setUp();
$this->configOpauth = Configure::read('Opauth');
$this->configRememberMe = Configure::read('Users.RememberMe.active');
Configure::write('Opauth', null);
Configure::write('Users.RememberMe.active', false);
TransportFactory::setConfig('test', ['className' => 'Debug']);
$this->configEmail = Email::getConfig('default');
Email::drop('default');
Email::setConfig('default', [
'transport' => 'test',
'from' => 'cakedc@example.com'
]);
$request = new ServerRequest('/users/users/index');
$request = $request->withParam('plugin', 'CakeDC/Users');
$this->Controller = $this->getMockBuilder('CakeDC\Users\Controller\SocialAccountsController')
->setMethods(['redirect', 'render'])
->setConstructorArgs([$request, null, 'SocialAccounts'])
->getMock();
$this->Controller->SocialAccounts = $this->getMockForModel('CakeDC\Users.SocialAccounts', ['sendSocialValidationEmail'], [
'className' => 'CakeDC\Users\Model\Table\SocialAccountsTable'
]);
}
/**
* tearDown
*
* @return void
*/
public function tearDown()
{
Email::drop('default');
TransportFactory::drop('test');
//Email::setConfig('default', $this->configEmail);
Configure::write('Opauth', $this->configOpauth);
Configure::write('Users.RememberMe.active', $this->configRememberMe);
parent::tearDown();
}
/**
* test
*
* @return void
*/
public function testValidateAccountHappy()
{
$this->Controller->expects($this->once())
->method('redirect')
->with(['plugin' => 'CakeDC/Users', 'controller' => 'Users', 'action' => 'login']);
$this->Controller->validateAccount('Facebook', 'reference-1-1234', 'token-1234');
$this->assertEquals('Account validated successfully', $this->Controller->request->getSession()->read('Flash.flash.0.message'));
}
/**
* test
*
* @return void
*/
public function testValidateAccountInvalidToken()
{
$this->Controller->expects($this->once())
->method('redirect')
->with(['plugin' => 'CakeDC/Users', 'controller' => 'Users', 'action' => 'login']);
$this->Controller->validateAccount('Facebook', 'reference-1-1234', 'token-not-found');
$this->assertEquals('Invalid token and/or social account', $this->Controller->request->getSession()->read('Flash.flash.0.message'));
}
/**
* test
*
* @return void
*/
public function testValidateAccountAlreadyActive()
{
$this->Controller->expects($this->once())
->method('redirect')
->with(['plugin' => 'CakeDC/Users', 'controller' => 'Users', 'action' => 'login']);
$this->Controller->validateAccount('Twitter', 'reference-1-1234', 'token-1234');
$this->assertEquals('Social Account already active', $this->Controller->request->getSession()->read('Flash.flash.0.message'));
}
/**
* test
*
* @return void
*/
public function testResendValidationHappy()
{
$behaviorMock = $this->getMockBuilder('CakeDC\Users\Model\Behavior\SocialAccountBehavior')
->setMethods(['sendSocialValidationEmail'])
->setConstructorArgs([$this->Controller->SocialAccounts])
->getMock();
$this->Controller->SocialAccounts->behaviors()->set('SocialAccount', $behaviorMock);
$behaviorMock->expects($this->once())
->method('sendSocialValidationEmail')
->will($this->returnValue(true));
$this->Controller->expects($this->once())
->method('redirect')
->with(['plugin' => 'CakeDC/Users', 'controller' => 'Users', 'action' => 'login']);
$this->Controller->resendValidation('Facebook', 'reference-1-1234');
$this->assertEquals('Email sent successfully', $this->Controller->request->getSession()->read('Flash.flash.0.message'));
}
/**
* test
*
* @return void
*/
public function testResendValidationEmailError()
{
$behaviorMock = $this->getMockBuilder('CakeDC\Users\Model\Behavior\SocialAccountBehavior')
->setMethods(['sendSocialValidationEmail'])
->setConstructorArgs([$this->Controller->SocialAccounts])
->getMock();
$this->Controller->SocialAccounts->behaviors()->set('SocialAccount', $behaviorMock);
$behaviorMock->expects($this->once())
->method('sendSocialValidationEmail')
->will($this->returnValue(false));
$this->Controller->expects($this->once())
->method('redirect')
->with(['plugin' => 'CakeDC/Users', 'controller' => 'Users', 'action' => 'login']);
$this->Controller->resendValidation('Facebook', 'reference-1-1234');
$this->assertEquals('Email could not be sent', $this->Controller->request->getSession()->read('Flash.flash.0.message'));
}
/**
* test
*
* @return void
*/
public function testResendValidationInvalid()
{
$this->Controller->expects($this->once())
->method('redirect')
->with(['plugin' => 'CakeDC/Users', 'controller' => 'Users', 'action' => 'login']);
$this->Controller->resendValidation('Facebook', 'reference-invalid');
$this->assertEquals('Invalid account', $this->Controller->request->getSession()->read('Flash.flash.0.message'));
}
/**
* test
*
* @return void
*/
public function testResendValidationAlreadyActive()
{
$this->Controller->expects($this->once())
->method('redirect')
->with(['plugin' => 'CakeDC/Users', 'controller' => 'Users', 'action' => 'login']);
$this->Controller->validateAccount('Twitter', 'reference-1-1234', 'token-1234');
$this->assertEquals('Social Account already active', $this->Controller->request->getSession()->read('Flash.flash.0.message'));
}
}