A small scale intelligent mock of the Google API PHP Client for unit and functional testing.
This is intended to mock a portion of the Google APIs related to Google Workspace accounts, particularly calls relating to users and users' aliases.
Properties of a Google Service Directory (GSD) include...
- $asps, which gets set to a GSD Asps_Resource
- $memebers, which gets set to a GSD Members_Resource
- $users, which gets set to a GSD Users_Resource
- $users_aliases, which gets set to a GSD UsersAliases_Resource
- $tokens, which gets set to a GSD Tokens_Resource
- $twoStepVerification, which gets set to a GSD TwoStepVerification_Resource
- $verificationCodes, which gets set to a GSD VerificationCodes_Resource
An Asps_Resource is for managing a user's App Specific Passwords (ASPs). This mock implements...
- listAsps()
A Members_Resource is for managing members of a group. This mock implements...
- insert()
- listMembers()
A Users_Resource has various methods for managing Google Apps users. Three of these that are implemented by this mock are ...
- delete()
- get()
- insert()
- update()
- listUsers()
A UsersAliases_Resource has various methods for managing Google Apps users aliases. The ones implemented by this mock are ...
- delete()
- insert()
- listUsersAliases()
A Tokens_Resource is for managing a user's OAuth access tokens. This mock implements...
- listTokens()
A TwoStepVerification_Resource is for turning off 2SV. This mock implements...
- turnOff()
A VerificationCodes_Resource is for managing a user's OAuth access tokens. This mock implements...
- generate()
- invalidate()
- listVerificationCodes()
Properties of the Gmail API object include...
- $users_settings
- $users_settings_delegates
- $users_settings_forwardingAddresses
Methods on the UsersSettings resource that this mock implements include...
- updateImap()
- updatePop()
Methods on the UsersSettingsDelegates resource that this mock implements include...
- create()
- delete()
- get()
- listUsersSettingsDelegates()
Methods on the UsersSettingsForwardingAddresses resource that this mock implements include...
- listUsersSettingsForwardingAddresses()
You should have docker and the docker compose plugin installed. To run testing:
- make it-now
In order to keep data available for use by this mock, it makes use of a Sqlite database file. The default path and name of this file are ... SilMock/DataStore/Sqlite/Google_Service_Data.db. To override this, the constructors for the UsersResource and UsersAliasesResource class accept an optional string parameter.
The database is accessed/managed by SilMock/DataStore/Sqlite/SqliteUtils.php. It has one table with four columns ...
- id = INTEGER PRIMARY KEY,
- type = TEXT, e.g. "directory",
- class = TEXT, e.g. "user" or "users_alias",
- data = TEXT
The data field contains json with key-value pairs related to the properties of the GSD objects. The data is prepared by using the php json_encode function.
There is a class to assist with dealing with data for unit tests ... SilMock\Google\Service\GoogleFixtures.php. Its constructor accepts an optional parameter for the path and name of the Sqlite database file. It has two methods ...
- addFixtures($fixtures), expecting an array of 3-element arrays (type, class, data).
- removeAllFixtures()
The SilMock/tests folder includes phpunit tests for the three main portions of this mock (Directory, GoogleFixtures, SqliteUtils). These should help provide examples of how to use the mock.
public static function useRealGoogle() {
return ( ! isset (\Yii::app()->params['use_real_google']) ||
\Yii::app()->params['use_real_google']);
}
public static function getGoogleServiceDirectory($client) {
if (self::useRealGoogle()) {
return new Google\Service\Directory($client);
}
$db_path = null;
if (isset(\Yii::app()->params['googleMockDbPath'])) {
$db_path = \Yii::app()->params['googleMockDbPath'];
}
return new SilMock\Google\Service\Directory($client, $db_path);
}
$dir = self::getGoogleServiceDirectory($client);
$google_user = new Google\Service\Directory\User();
$google_user = $dir->users->insert($google_user);
$google_user = $dir->users->get($usersEmail);
$google_user->suspended = true;
$google_user->suspensionReason = 'ADMIN';
$account = $dir->users->update($users_email, $google_user);
$dir = self::getGoogleServiceDirectory($client);
$google_alias = new Google\Service\Directory\Alias();
$google_alias->setAlias($alias);
$alias = $dir->users_aliases->insert($users_email, $google_alias);
$aliases = $dir->users_aliases->listUsersAliases($users_email);
$alias = $dir->users_aliases->delete($users_email, $alias);