forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSocialIdentifierTest.php
More file actions
198 lines (177 loc) · 5.96 KB
/
Copy pathSocialIdentifierTest.php
File metadata and controls
198 lines (177 loc) · 5.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
declare(strict_types=1);
/**
* Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2010 - 2018, Cake Development Corporation (https://www.cakedc.com)
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace CakeDC\Users\Test\TestCase\Identifier;
use Cake\TestSuite\TestCase;
use CakeDC\Auth\Social\Mapper\Facebook;
use CakeDC\Users\Exception\MissingEmailException;
use CakeDC\Users\Identifier\SocialIdentifier;
class SocialIdentifierTest extends TestCase
{
public $fixtures = [
'plugin.CakeDC/Users.Users',
'plugin.CakeDC/Users.SocialAccounts',
];
/**
* Test identify method
*
* @return void
*/
public function testIdentifyWithoutSocialAuthKey()
{
$identifier = new SocialIdentifier([]);
$user = ['username' => ''];
$result = $identifier->identify($user);
$this->assertNull($result);
$identifier = new SocialIdentifier([]);
$user = [];
$result = $identifier->identify($user);
$this->assertNull($result);
}
/**
* Test identify method
*
* @return void
*/
public function testIdentify()
{
$identifier = new SocialIdentifier([]);
$Token = new \League\OAuth2\Client\Token\AccessToken([
'access_token' => 'test-token',
'expires' => 1490988496,
]);
$data = [
'token' => $Token,
'id' => '1',
'name' => 'Test User',
'first_name' => 'Test',
'last_name' => 'User',
'email' => 'test@gmail.com',
'hometown' => [
'id' => '108226049197930',
'name' => 'Madrid',
],
'picture' => [
'data' => [
'url' => 'https://scontent.xx.fbcdn.net/v/test.jpg',
'is_silhouette' => false,
],
],
'cover' => [
'source' => 'https://scontent.xx.fbcdn.net/v/test.jpg',
'id' => '1',
],
'gender' => 'male',
'locale' => 'en_US',
'link' => 'https://www.facebook.com/app_scoped_user_id/1/',
'timezone' => -5,
'age_range' => [
'min' => 21,
],
'bio' => 'I am the best test user in the world.',
'picture_url' => 'https://scontent.xx.fbcdn.net/v/test.jpg',
'is_silhouette' => false,
'cover_photo_url' => 'https://scontent.xx.fbcdn.net/v/test.jpg',
];
$mapper = new Facebook();
$user = $mapper($data);
$user['provider'] = 'facebook';
$result = $identifier->identify(['socialAuthUser' => $user]);
$this->assertInstanceOf('CakeDC\Users\Model\Entity\User', $result);
$this->assertNotEmpty($result->id);
$this->assertEquals('test@gmail.com', $result->email);
$this->assertEquals('test', $result->username);
}
/**
* Test identify method error in social login
*
* @return void
*/
public function testIdentifyErrorSocialLogin()
{
$Token = new \League\OAuth2\Client\Token\AccessToken([
'access_token' => 'test-token',
'expires' => 1490988496,
]);
$identifier = $this->getMockBuilder(SocialIdentifier::class)->setMethods([
'createOrGetUser',
])->getMock();
$identifier->expects($this->once())
->method('createOrGetUser')
->will($this->returnValue(false));
$data = [
'token' => $Token,
'id' => '1',
'name' => '',
'first_name' => 'Test',
'last_name' => 'User',
'email' => 'test@gmail.com',
'hometown' => [
'id' => '108226049197930',
'name' => 'Madrid',
],
'locale' => 'en_US',
'link' => 'https://www.facebook.com/app_scoped_user_id/1/',
'timezone' => -5,
'age_range' => [
'min' => 21,
],
'bio' => 'I am the best test user in the world.',
'picture_url' => 'https://scontent.xx.fbcdn.net/v/test.jpg',
'is_silhouette' => false,
'cover_photo_url' => 'https://scontent.xx.fbcdn.net/v/test.jpg',
];
$mapper = new Facebook();
$user = $mapper($data);
$user['provider'] = 'facebook';
$result = $identifier->identify(['socialAuthUser' => $user]);
$this->assertNull($result);
}
/**
* Test identify method no email
*
* @return void
*/
public function testIdentifyNoEmail()
{
$Token = new \League\OAuth2\Client\Token\AccessToken([
'access_token' => 'test-token',
'expires' => 1490988496,
]);
$data = [
'token' => $Token,
'id' => '1',
'name' => '',
'first_name' => 'Test',
'last_name' => 'User',
'hometown' => [
'id' => '108226049197930',
'name' => 'Madrid',
],
'locale' => 'en_US',
'link' => 'https://www.facebook.com/app_scoped_user_id/1/',
'timezone' => -5,
'age_range' => [
'min' => 21,
],
'bio' => 'I am the best test user in the world.',
'picture_url' => 'https://scontent.xx.fbcdn.net/v/test.jpg',
'is_silhouette' => false,
'cover_photo_url' => 'https://scontent.xx.fbcdn.net/v/test.jpg',
];
$identifier = new SocialIdentifier([]);
$mapper = new Facebook();
$user = $mapper($data);
$user['provider'] = 'facebook';
$this->expectException(MissingEmailException::class);
$identifier->identify(['socialAuthUser' => $user]);
}
}