google-api-php-client-mock
A small scale intelligent mock of the Google API PHP Client for unit and functional testing.
Overview
This is intended to mock a portion of the Google APIs related to G Suite accounts, particularly calls relating to users and users' aliases.
Directory
Properties of a Google Service Directory (GSD) include...
- $users, which gets set to a GSD Users_Resource
- $users_aliases, which gets set to a GSD UsersAliases_Resource
- $asps, which gets set to a GSD Asps_Resource
- $tokens, which gets set to a GSD Tokens_Resource
Users_Resource
A Users_Resource has various methods for managing Google Apps users. Three of these that are implemented by this mock are ...
- get()
- insert()
- update()
- listUsers()
UsersAliases_Resource
A UsersAliases_Resource has various methods for managing Google Apps users aliases. The ones implemented by this mock are ...
- delete()
- insert()
- listUsersAliases()
Asps_Resource
An Asps_Resource is for managing a user's App Specific Passwords (ASPs). This mock implements...
- listAsps()
Tokens_Resource
A Tokens_Resource is for managing a user's OAuth access tokens. This mock implements...
- listTokens()
Gmail
Properties of the Gmail API object include...
- $users_settings
- $users_settings_delegates
- $users_settings_forwardingAddresses
UsersSettings
Methods on the UsersSettings resource that this mock implements include...
- updateImap()
- updatePop()
UsersSettingsDelegates
Methods on the UsersSettingsDelegates resource that this mock implements include...
- create()
- delete()
- get()
- listUsersSettingsDelegates()
UsersSettingsForwardingAddresses
Methods on the UsersSettingsForwardingAddresses resource that this mock implements include...
- listUsersSettingsForwardingAddresses()
Unit Testing
If you are able to run docker natively, then:
- make it-now
If not, then use vagrant up:
- vagrant up
- vagrant ssh
- cd /var/lib/GA_mock
- make vagrantTest
Data Persistence
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.
Test Fixtures
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()
Unit Tests for the Mock Itself
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.
Examples
Switching between the Mock and the Real GSD
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);
}
Managing a User
$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);
Managing a User's Aliases
$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);