-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from silinternational/develop
Release 2.13.0: Searching by group alias and similar functionality
- Loading branch information
Showing
6 changed files
with
273 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
use Exception; | ||
use Google\Service\Directory\Group as GoogleDirectory_Group; | ||
use Google\Service\Directory\Alias as GoogleDirectory_GroupAlias; | ||
use PHPUnit\Framework\TestCase; | ||
use SilMock\Google\Service\Directory as GoogleMock_Directory; | ||
|
||
|
@@ -13,13 +14,28 @@ class GroupsTest extends TestCase | |
// They are very dependent on order run. | ||
// groups.insert, groups.listGroups, members.insert, members.listMembers | ||
public string $dataFile = DATAFILE5; | ||
public const GROUP_EMAIL_ADDRESS = '[email protected]'; | ||
public const GROUP_EMAIL_ADDRESS = '[email protected]'; | ||
public const GROUP_ALIAS_ADDRESS = '[email protected]'; | ||
|
||
protected function deleteGroupAndAliasesIfTheyExists(string $groupName) | ||
{ | ||
$mockGoogleServiceDirectory = new GoogleMock_Directory('anyclient', $this->dataFile); | ||
$group = $mockGoogleServiceDirectory->groups->get($groupName); | ||
if ($group !== null) { | ||
$mockGoogleServiceDirectory->groups->delete($groupName); | ||
} | ||
$group = $mockGoogleServiceDirectory->groups->get($groupName); | ||
self::assertNull($group, "Failed to clean up previous tests."); | ||
} | ||
|
||
public function testInsert() | ||
{ | ||
$this->deleteGroupAndAliasesIfTheyExists(self::GROUP_EMAIL_ADDRESS); | ||
$group = new GoogleDirectory_Group(); | ||
$group->setEmail(self::GROUP_EMAIL_ADDRESS); | ||
$group->setAliases([]); | ||
// See https://developers.google.com/admin-sdk/directory/reference/rest/v1/groups#Group | ||
// setting the aliases will not add, remove, or change aliases at all. | ||
$group->setAliases([self::GROUP_ALIAS_ADDRESS]); | ||
$group->setName('Sample Group'); | ||
$group->setDescription('A Sample Group used for testing'); | ||
|
||
|
@@ -35,14 +51,50 @@ public function testInsert() | |
); | ||
} | ||
self::assertTrue($addedGroup instanceof GoogleDirectory_Group); | ||
self::assertEmpty($addedGroup->getAliases(), "Expecting no group aliases inserted by group.insert"); | ||
} | ||
|
||
public function testUpdate() | ||
{ | ||
$this->deleteGroupAndAliasesIfTheyExists(self::GROUP_EMAIL_ADDRESS . 'update'); | ||
$group = new GoogleDirectory_Group(); | ||
$group->setEmail(self::GROUP_EMAIL_ADDRESS . 'update'); | ||
// See https://developers.google.com/admin-sdk/directory/reference/rest/v1/groups#Group | ||
// setting the aliases will not add, remove, or change aliases at all. | ||
$group->setAliases([self::GROUP_ALIAS_ADDRESS . 'update']); | ||
$group->setName('Sample Group Update'); | ||
$group->setDescription('A Sample Group used for testing update'); | ||
|
||
$mockGoogleServiceDirectory = new GoogleMock_Directory('anyclient', $this->dataFile); | ||
try { | ||
$addedGroup = $mockGoogleServiceDirectory->groups->insert($group); | ||
} catch (Exception $exception) { | ||
self::fail( | ||
sprintf( | ||
'Was expecting the groups.insert method to function, but got: %s', | ||
$exception->getMessage() | ||
) | ||
); | ||
} | ||
self::assertTrue($addedGroup instanceof GoogleDirectory_Group); | ||
self::assertEmpty($addedGroup->getAliases(), "Expecting no group aliases inserted by group.insert"); | ||
|
||
// See https://developers.google.com/admin-sdk/directory/reference/rest/v1/groups#Group | ||
// setting the aliases will not add, remove, or change aliases at all. | ||
$group->setAliases([self::GROUP_ALIAS_ADDRESS . 'update-change']); | ||
$updatedGroup = $mockGoogleServiceDirectory->groups->update($group->getEmail(), $group); | ||
self::assertTrue($updatedGroup instanceof GoogleDirectory_Group); | ||
self::assertEmpty($updatedGroup->getAliases(), "Expecting no group aliases changed by group.update"); | ||
} | ||
|
||
public function testDelete() | ||
protected function deleteTestSetup() | ||
{ | ||
// Set update a deletable email address | ||
$group = new GoogleDirectory_Group(); | ||
$group->setEmail(self::GROUP_EMAIL_ADDRESS . 'delete'); | ||
$group->setAliases([]); | ||
// See https://developers.google.com/admin-sdk/directory/reference/rest/v1/groups#Group | ||
// setting the aliases will not add, remove, or change aliases at all. | ||
$group->setAliases([self::GROUP_ALIAS_ADDRESS . 'delete']); | ||
$group->setName('Sample Deletable Group'); | ||
$group->setDescription('A Sample Deletable Group used for testing'); | ||
|
||
|
@@ -58,6 +110,32 @@ public function testDelete() | |
); | ||
} | ||
self::assertTrue($addedGroup instanceof GoogleDirectory_Group); | ||
self::assertEmpty($addedGroup->getAliases(), "Expecting no group aliases"); | ||
|
||
// Set update a deletable email address | ||
$groupAlias = new GoogleDirectory_GroupAlias(); | ||
$groupAlias->setPrimaryEmail(self::GROUP_EMAIL_ADDRESS . 'delete'); | ||
$groupAlias->setAlias(self::GROUP_ALIAS_ADDRESS . 'delete'); | ||
|
||
try { | ||
$addedGroupAliases = $mockGoogleServiceDirectory->groups_aliases->insert( | ||
self::GROUP_EMAIL_ADDRESS . 'delete', | ||
$groupAlias | ||
); | ||
} catch (Exception $exception) { | ||
self::fail( | ||
sprintf( | ||
'Was expecting the groups_aliases.insert method to function, but got: %s', | ||
$exception->getMessage() | ||
) | ||
); | ||
} | ||
self::assertTrue($addedGroupAliases instanceof GoogleDirectory_GroupAlias); | ||
} | ||
|
||
public function testDeleteByName() | ||
{ | ||
$this->deleteTestSetup(); | ||
|
||
// Now try to delete it | ||
$mockGoogleServiceDirectory = new GoogleMock_Directory('anyclient', $this->dataFile); | ||
|
@@ -66,7 +144,7 @@ public function testDelete() | |
} catch (Exception $exception) { | ||
self::fail( | ||
sprintf( | ||
'Was expecting the groups.delete method to function, but got: %s', | ||
'Was expecting the groups.delete method to function for name, but got: %s', | ||
$exception->getMessage() | ||
) | ||
); | ||
|
@@ -76,31 +154,103 @@ public function testDelete() | |
$group = $mockGoogleServiceDirectory->groups->get(self::GROUP_EMAIL_ADDRESS . 'delete'); | ||
self::assertNull( | ||
$group, | ||
'Was expecting the group to be deleted, but found something' | ||
'Was expecting the group to be deleted by name, but found something' | ||
); | ||
} catch (Exception $exception) { | ||
self::fail( | ||
sprintf( | ||
'Was expecting to confirm the group was deleted, but got: %s', | ||
'Was expecting to confirm the group was deleted by name, but got: %s', | ||
$exception->getMessage() | ||
) | ||
); | ||
} | ||
try { | ||
$groupAliases = $mockGoogleServiceDirectory->groups_aliases->listGroupsAliases( | ||
self::GROUP_EMAIL_ADDRESS . 'delete' | ||
); | ||
self::assertEmpty( | ||
$groupAliases->getAliases(), | ||
'Was expecting the group aliases to be deleted by name, but found something' | ||
); | ||
} catch (Exception $exception) { | ||
self::fail( | ||
sprintf( | ||
'Was expecting to confirm the group aliases were also deleted by name, but got: %s', | ||
$exception->getMessage() | ||
) | ||
); | ||
} | ||
} | ||
|
||
public function testDeleteByAlias() | ||
{ | ||
$this->deleteTestSetup(); | ||
|
||
// Now try to delete it | ||
$mockGoogleServiceDirectory = new GoogleMock_Directory('anyclient', $this->dataFile); | ||
try { | ||
$mockGoogleServiceDirectory->groups->delete(self::GROUP_ALIAS_ADDRESS . 'delete'); | ||
} catch (Exception $exception) { | ||
self::fail( | ||
sprintf( | ||
'Was expecting the groups.delete method to function for aliases, but got: %s', | ||
$exception->getMessage() | ||
) | ||
); | ||
} | ||
|
||
try { | ||
$group = $mockGoogleServiceDirectory->groups->get(self::GROUP_EMAIL_ADDRESS . 'delete'); | ||
self::assertNull( | ||
$group, | ||
'Was expecting the group to be deleted by alias, but found something' | ||
); | ||
} catch (Exception $exception) { | ||
self::fail( | ||
sprintf( | ||
'Was expecting to confirm the group was deleted by alias, but got: %s', | ||
$exception->getMessage() | ||
) | ||
); | ||
} | ||
try { | ||
$groupAliases = $mockGoogleServiceDirectory->groups_aliases->listGroupsAliases(self::GROUP_EMAIL_ADDRESS . 'delete'); | ||
self::assertEmpty( | ||
$groupAliases->getAliases(), | ||
'Was expecting the group aliases to be deleted by name, but found something' | ||
); | ||
} catch (Exception $exception) { | ||
self::fail( | ||
sprintf( | ||
'Was expecting to confirm the group aliases were also deleted by name, but got: %s', | ||
$exception->getMessage() | ||
) | ||
); | ||
} | ||
} | ||
|
||
public function testGet() | ||
public function testGetByName() | ||
{ | ||
$mockGoogleServiceDirectory = new GoogleMock_Directory('anyclient', $this->dataFile); | ||
$group = $mockGoogleServiceDirectory->groups->get(self::GROUP_EMAIL_ADDRESS); | ||
self::assertInstanceOf(GoogleDirectory_Group::class, $group); | ||
self::assertEquals(self::GROUP_EMAIL_ADDRESS, $group->getEmail()); | ||
} | ||
|
||
public function testGetByAlias() | ||
{ | ||
$mockGoogleServiceDirectory = new GoogleMock_Directory('anyclient', $this->dataFile); | ||
$group = $mockGoogleServiceDirectory->groups->get(self::GROUP_ALIAS_ADDRESS); | ||
self::assertInstanceOf(GoogleDirectory_Group::class, $group); | ||
self::assertEquals(self::GROUP_EMAIL_ADDRESS, $group->getEmail()); | ||
} | ||
|
||
public function testListGroups() | ||
{ | ||
$mockGoogleServiceDirectory = new GoogleMock_Directory('anyclient', $this->dataFile); | ||
$groups = []; | ||
try { | ||
$groups = $mockGoogleServiceDirectory->groups->listGroups(self::GROUP_EMAIL_ADDRESS); | ||
$groups = $mockGoogleServiceDirectory->groups->listGroups(); | ||
} catch (Exception $exception) { | ||
self::fail( | ||
sprintf( | ||
|
Oops, something went wrong.