forked from php-censor/php-censor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserServiceTest.php
More file actions
107 lines (88 loc) · 3.08 KB
/
Copy pathUserServiceTest.php
File metadata and controls
107 lines (88 loc) · 3.08 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
<?php
namespace Tests\PHPCensor\Service;
use PHPCensor\Model\User;
use PHPCensor\Service\UserService;
/**
* Unit tests for the ProjectService class.
*
* @author Dan Cryer <dan@block8.co.uk>
*/
class UserServiceTest extends \PHPUnit\Framework\TestCase
{
/**
* @var UserService $testedService
*/
protected $testedService;
/**
* @var \ $mockBuildStore
*/
protected $mockUserStore;
public function setUp()
{
$this->mockUserStore = $this->getMockBuilder('PHPCensor\Store\UserStore')->getMock();
$this->mockUserStore->expects($this->any())
->method('save')
->will($this->returnArgument(0));
$this->testedService = new UserService($this->mockUserStore);
}
public function testExecute_CreateNonAdminUser()
{
$user = $this->testedService->createUser(
'Test',
'test@example.com',
'internal',
['type' => 'internal'],
'testing',
false
);
self::assertEquals('Test', $user->getName());
self::assertEquals('test@example.com', $user->getEmail());
self::assertEquals(false, $user->getIsAdmin());
self::assertTrue(password_verify('testing', $user->getHash()));
}
public function testExecute_CreateAdminUser()
{
$user = $this->testedService->createUser(
'Test',
'test@example.com',
'internal',
['type' => 'internal'],
'testing',
true
);
self::assertEquals(true, $user->getIsAdmin());
}
public function testExecute_RevokeAdminStatus()
{
$user = new User();
$user->setEmail('test@example.com');
$user->setName('Test');
$user->setIsAdmin(true);
$user = $this->testedService->updateUser($user, 'Test', 'test@example.com', 'testing', false);
self::assertEquals(false, $user->getIsAdmin());
}
public function testExecute_GrantAdminStatus()
{
$user = new User();
$user->setEmail('test@example.com');
$user->setName('Test');
$user->setIsAdmin(false);
$user = $this->testedService->updateUser($user, 'Test', 'test@example.com', 'testing', true);
self::assertEquals(true, $user->getIsAdmin());
}
public function testExecute_ChangesPasswordIfNotEmpty()
{
$user = new User();
$user->setHash(password_hash('testing', PASSWORD_DEFAULT));
$user = $this->testedService->updateUser($user, 'Test', 'test@example.com', 'newpassword', false);
self::assertFalse(password_verify('testing', $user->getHash()));
self::assertTrue(password_verify('newpassword', $user->getHash()));
}
public function testExecute_DoesNotChangePasswordIfEmpty()
{
$user = new User();
$user->setHash(password_hash('testing', PASSWORD_DEFAULT));
$user = $this->testedService->updateUser($user, 'Test', 'test@example.com', '', false);
self::assertTrue(password_verify('testing', $user->getHash()));
}
}