|
1
|
|
|
<?php |
|
2
|
|
|
class LDAPServiceTest extends SapphireTest |
|
|
|
|
|
|
3
|
|
|
{ |
|
4
|
|
|
|
|
5
|
|
|
/** |
|
6
|
|
|
* @var LDAPService |
|
7
|
|
|
*/ |
|
8
|
|
|
protected $service; |
|
9
|
|
|
|
|
10
|
|
|
protected $usesDatabase = true; |
|
11
|
|
|
|
|
12
|
|
|
public function setUp() |
|
13
|
|
|
{ |
|
14
|
|
|
parent::setUp(); |
|
15
|
|
|
|
|
16
|
|
|
$gateway = new LDAPFakeGateway(); |
|
17
|
|
|
Injector::inst()->registerService($gateway, 'LDAPGateway'); |
|
|
|
|
|
|
18
|
|
|
|
|
19
|
|
|
$service = Injector::inst()->create('LDAPService'); |
|
20
|
|
|
$service->setGateway($gateway); |
|
21
|
|
|
$this->service = $service; |
|
22
|
|
|
|
|
23
|
|
|
Config::inst()->nest(); |
|
24
|
|
|
Config::inst()->update('LDAPGateway', 'options', array('host' => '1.2.3.4')); |
|
25
|
|
|
Config::inst()->update('LDAPService', 'groups_search_locations', array( |
|
26
|
|
|
'CN=Users,DC=playpen,DC=local', |
|
27
|
|
|
'CN=Others,DC=playpen,DC=local' |
|
28
|
|
|
)); |
|
29
|
|
|
// Prevent other module extension hooks from executing during write() etc. |
|
30
|
|
|
Config::inst()->remove('Member', 'extensions'); |
|
31
|
|
|
Config::inst()->remove('Group', 'extensions'); |
|
32
|
|
|
Config::inst()->update('Member', 'update_ldap_from_local', false); |
|
33
|
|
|
Config::inst()->update('Member', 'create_users_in_ldap', false); |
|
34
|
|
|
Config::inst()->update('Group', 'extensions', array('LDAPGroupExtension')); |
|
35
|
|
|
Config::inst()->update('Member', 'extensions', array('LDAPMemberExtension')); |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
public function tearDown() |
|
39
|
|
|
{ |
|
40
|
|
|
parent::tearDown(); |
|
41
|
|
|
|
|
42
|
|
|
Config::inst()->unnest(); |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
public function testGroups() |
|
46
|
|
|
{ |
|
47
|
|
|
$expected = array( |
|
48
|
|
|
'CN=Group1,CN=Users,DC=playpen,DC=local' => array('dn' => 'CN=Group1,CN=Users,DC=playpen,DC=local'), |
|
49
|
|
|
'CN=Group2,CN=Users,DC=playpen,DC=local' => array('dn' => 'CN=Group2,CN=Users,DC=playpen,DC=local'), |
|
50
|
|
|
'CN=Group3,CN=Users,DC=playpen,DC=local' => array('dn' => 'CN=Group3,CN=Users,DC=playpen,DC=local'), |
|
51
|
|
|
'CN=Group4,CN=Users,DC=playpen,DC=local' => array('dn' => 'CN=Group4,CN=Users,DC=playpen,DC=local'), |
|
52
|
|
|
'CN=Group5,CN=Users,DC=playpen,DC=local' => array('dn' => 'CN=Group5,CN=Users,DC=playpen,DC=local'), |
|
53
|
|
|
'CN=Group6,CN=Others,DC=playpen,DC=local' => array('dn' => 'CN=Group6,CN=Others,DC=playpen,DC=local'), |
|
54
|
|
|
'CN=Group7,CN=Others,DC=playpen,DC=local' => array('dn' => 'CN=Group7,CN=Others,DC=playpen,DC=local'), |
|
55
|
|
|
'CN=Group8,CN=Others,DC=playpen,DC=local' => array('dn' => 'CN=Group8,CN=Others,DC=playpen,DC=local') |
|
56
|
|
|
); |
|
57
|
|
|
|
|
58
|
|
|
$results = $this->service->getGroups(); |
|
59
|
|
|
|
|
60
|
|
|
$this->assertEquals($expected, $results); |
|
|
|
|
|
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
public function testUpdateMemberFromLDAP() |
|
64
|
|
|
{ |
|
65
|
|
|
Config::inst()->update('Member', 'ldap_field_mappings', array( |
|
66
|
|
|
'givenname' => 'FirstName', |
|
67
|
|
|
'sn' => 'Surname', |
|
68
|
|
|
'mail' => 'Email', |
|
69
|
|
|
)); |
|
70
|
|
|
|
|
71
|
|
|
$member = new Member(); |
|
72
|
|
|
$member->GUID = '123'; |
|
73
|
|
|
|
|
74
|
|
|
$this->service->updateMemberFromLDAP($member); |
|
75
|
|
|
|
|
76
|
|
|
$this->assertTrue($member->ID > 0, 'updateMemberFromLDAP writes the member'); |
|
|
|
|
|
|
77
|
|
|
$this->assertEquals('123', $member->GUID, 'GUID remains the same'); |
|
|
|
|
|
|
78
|
|
|
$this->assertEquals('Joe', $member->FirstName, 'FirstName updated from LDAP'); |
|
|
|
|
|
|
79
|
|
|
$this->assertEquals('Bloggs', $member->Surname, 'Surname updated from LDAP'); |
|
|
|
|
|
|
80
|
|
|
$this->assertEquals('[email protected]', $member->Email, 'Email updated from LDAP'); |
|
|
|
|
|
|
81
|
|
|
} |
|
82
|
|
|
} |
|
83
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.