-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathUserTest.php
106 lines (89 loc) · 3.01 KB
/
UserTest.php
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
<?php
namespace Office365;
use Exception;
use Office365\SharePoint\Group;
use Office365\SharePoint\GroupCreationInformation;
class UserTest extends SharePointTestCase
{
public function testLoadCurrentUser()
{
$curUser = self::$context->getWeb()->getCurrentUser()->get()->executeQuery();
$this->assertNotNull($curUser->getServerObjectIsNull());
}
public function testUpdateCurrentUser()
{
$userPrefId = "123"; //rand(1,10000);
$emailAddress = "[email protected]";
$curUser = self::$context->getWeb()->getCurrentUser()
->setEmail($emailAddress)
->update()
->executeQuery();
self::$context->load($curUser);
self::$context->executeQuery();
$this->assertEquals($curUser->getEmail(),$emailAddress);
}
public function testCreateGroup()
{
$groupName = "TestGroup_" . rand(1,10000);
$info = new GroupCreationInformation($groupName);
$group = self::$context->getWeb()->getSiteGroups()->add($info)->executeQuery();
$this->assertNotNull($group->getLoginName());
return $group;
}
/**
* @depends testCreateGroup
* @param Group $group
* @throws Exception
*/
public function testFindGroup(Group $group)
{
if(!$group->isPropertyAvailable("LoginName")){
self::$context->load($group);
self::$context->executeQuery();
}
$group = self::$context->getWeb()->getSiteGroups()->getByName($group->getLoginName());
self::$context->load($group);
self::$context->executeQuery();
$this->assertEquals($group->getLoginName(),$group->getLoginName());
}
/**
* @depends testCreateGroup
* @param Group $group
* @throws Exception
*/
public function testAddUserIntoGroup(Group $group)
{
$siteUser = self::$context->getWeb()->ensureUser(self::$testAccountName)->executeQuery();
$user = $group->getUsers()->addUser($siteUser->getLoginName());
self::$context->executeQuery();
$this->assertNotNull($user->getId());
}
/**
* @depends testCreateGroup
* @param Group $group
* @throws Exception
*/
public function testFindUserInGroup(Group $group)
{
$groupUsers = $group->getUsers()->get()->executeQuery();
$result = $groupUsers->findFirst("UserPrincipalName",self::$testAccountName);
$this->assertNotNull($result);
}
/**
* @depends testCreateGroup
* @param Group $group
* @throws Exception
*/
public function testDeleteGroup(Group $group)
{
self::$context->getWeb()->getSiteGroups()
->removeByLoginName($group->getLoginName())
->executeQuery();
$key = $group->getLoginName();
$result = self::$context->getWeb()->getSiteGroups()
->filter("LoginName eq '$key'")
->get()
->executeQuery();
self::assertEquals(0, $result->getCount());
}
}