|
|
@@ -1,12 +1,6 @@
|
|
|
<?php
|
|
|
|
|
|
use Google\Auth\HttpHandler\HttpHandlerFactory;
|
|
|
-use Google\Cloud\Core\Exception\BadRequestException;
|
|
|
-use Google\Cloud\Core\Exception\NotFoundException;
|
|
|
-use Google\Cloud\Storage\Bucket;
|
|
|
-use Google\Cloud\Storage\Connection\ConnectionInterface;
|
|
|
-use Google\Cloud\Storage\StorageClient;
|
|
|
-use Google\Cloud\Storage\StorageObject;
|
|
|
use GuzzleHttp\Client;
|
|
|
use PrivateBin\Data\GoogleCloudStorage;
|
|
|
|
|
|
@@ -31,14 +25,11 @@ class GoogleCloudStorageTest extends PHPUnit_Framework_TestCase
|
|
|
|
|
|
public function setUp()
|
|
|
{
|
|
|
- // do not report E_NOTICE as fsouza/fake-gcs-server does not return a `generation` value in the response
|
|
|
- // which the Google Cloud Storage PHP library expects.
|
|
|
- error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
|
|
ini_set('error_log', stream_get_meta_data(tmpfile())['uri']);
|
|
|
$this->_model = GoogleCloudStorage::getInstance(array(
|
|
|
'bucket' => self::$_bucket->name(),
|
|
|
'prefix' => 'pastes',
|
|
|
- 'client' => self::$_client, ));
|
|
|
+ ));
|
|
|
}
|
|
|
|
|
|
public function tearDown()
|
|
|
@@ -46,7 +37,6 @@ class GoogleCloudStorageTest extends PHPUnit_Framework_TestCase
|
|
|
foreach (self::$_bucket->objects() as $object) {
|
|
|
$object->delete();
|
|
|
}
|
|
|
- error_reporting(E_ALL);
|
|
|
}
|
|
|
|
|
|
public static function tearDownAfterClass()
|
|
|
@@ -138,579 +128,55 @@ class GoogleCloudStorageTest extends PHPUnit_Framework_TestCase
|
|
|
$this->assertFalse($this->_model->createComment(Helper::getPasteId(), Helper::getPasteId(), Helper::getCommentId(), $comment), 'unable to store broken comment');
|
|
|
$this->assertFalse($this->_model->existsComment(Helper::getPasteId(), Helper::getPasteId(), Helper::getCommentId()), 'comment does still not exist');
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * Class StorageClientStub provides a limited stub for performing the unit test
|
|
|
- */
|
|
|
-class StorageClientStub extends StorageClient
|
|
|
-{
|
|
|
- private $_config = null;
|
|
|
- private $_connection = null;
|
|
|
- private $_buckets = array();
|
|
|
-
|
|
|
- public function __construct(array $config = array())
|
|
|
- {
|
|
|
- $this->_config = $config;
|
|
|
- $this->_connection = new ConnectionInterfaceStub();
|
|
|
- }
|
|
|
-
|
|
|
- public function bucket($name, $userProject = false)
|
|
|
- {
|
|
|
- if (!key_exists($name, $this->_buckets)) {
|
|
|
- $b = new BucketStub($this->_connection, $name, array(), $this);
|
|
|
- $this->_buckets[$name] = $b;
|
|
|
- }
|
|
|
- return $this->_buckets[$name];
|
|
|
- }
|
|
|
|
|
|
/**
|
|
|
- * @throws \Google\Cloud\Core\Exception\NotFoundException
|
|
|
+ * @throws Exception
|
|
|
*/
|
|
|
- public function deleteBucket($name)
|
|
|
- {
|
|
|
- if (key_exists($name, $this->_buckets)) {
|
|
|
- unset($this->_buckets[$name]);
|
|
|
- } else {
|
|
|
- throw new NotFoundException();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public function buckets(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function registerStreamWrapper($protocol = null)
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function unregisterStreamWrapper($protocol = null)
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function signedUrlUploader($uri, $data, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function timestamp(\DateTimeInterface $timestamp, $nanoSeconds = null)
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getServiceAccount(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function hmacKeys(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function hmacKey($accessId, $projectId = null, array $metadata = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function createHmacKey($serviceAccountEmail, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function createBucket($name, array $options = array())
|
|
|
- {
|
|
|
- if (key_exists($name, $this->_buckets)) {
|
|
|
- throw new BadRequestException('already exists');
|
|
|
- }
|
|
|
- $b = new BucketStub($this->_connection, $name, array(), $this);
|
|
|
- $this->_buckets[$name] = $b;
|
|
|
- return $b;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * Class BucketStub stubs a GCS bucket.
|
|
|
- */
|
|
|
-class BucketStub extends Bucket
|
|
|
-{
|
|
|
- public $_objects;
|
|
|
- private $_name;
|
|
|
- private $_info;
|
|
|
- private $_connection;
|
|
|
- private $_client;
|
|
|
-
|
|
|
- public function __construct(ConnectionInterface $connection, $name, array $info = array(), $client = null)
|
|
|
- {
|
|
|
- $this->_name = $name;
|
|
|
- $this->_info = $info;
|
|
|
- $this->_connection = $connection;
|
|
|
- $this->_objects = array();
|
|
|
- $this->_client = $client;
|
|
|
- }
|
|
|
-
|
|
|
- public function acl()
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function defaultAcl()
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function exists()
|
|
|
- {
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
- public function upload($data, array $options = array())
|
|
|
- {
|
|
|
- if (!is_string($data) || !key_exists('name', $options)) {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- $name = $options['name'];
|
|
|
- $generation = '1';
|
|
|
- $o = new StorageObjectStub($this->_connection, $name, $this, $generation, $options);
|
|
|
- $this->_objects[$options['name']] = $o;
|
|
|
- $o->setData($data);
|
|
|
- }
|
|
|
-
|
|
|
- public function uploadAsync($data, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getResumableUploader($data, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getStreamableUploader($data, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function object($name, array $options = array())
|
|
|
- {
|
|
|
- if (key_exists($name, $this->_objects)) {
|
|
|
- return $this->_objects[$name];
|
|
|
- } else {
|
|
|
- return new StorageObjectStub($this->_connection, $name, $this, null, $options);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public function objects(array $options = array())
|
|
|
- {
|
|
|
- $prefix = key_exists('prefix', $options) ? $options['prefix'] : '';
|
|
|
-
|
|
|
- return new CallbackFilterIterator(
|
|
|
- new ArrayIterator($this->_objects),
|
|
|
- function ($current, $key, $iterator) use ($prefix) {
|
|
|
- return substr($key, 0, strlen($prefix)) == $prefix;
|
|
|
- }
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- public function createNotification($topic, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function notification($id)
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function notifications(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function delete(array $options = array())
|
|
|
- {
|
|
|
- $this->_client->deleteBucket($this->_name);
|
|
|
- }
|
|
|
-
|
|
|
- public function update(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function compose(array $sourceObjects, $name, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function info(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function reload(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function name()
|
|
|
- {
|
|
|
- return $this->_name;
|
|
|
- }
|
|
|
-
|
|
|
- public static function lifecycle(array $lifecycle = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function currentLifecycle(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function isWritable($file = null)
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function iam()
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function lockRetentionPolicy(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function signedUrl($expires, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function generateSignedPostPolicyV4($objectName, $expires, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * Class StorageObjectStub stubs a GCS storage object.
|
|
|
- */
|
|
|
-class StorageObjectStub extends StorageObject
|
|
|
-{
|
|
|
- private $_name;
|
|
|
- private $_data;
|
|
|
- private $_info;
|
|
|
- private $_bucket;
|
|
|
- private $_generation;
|
|
|
- private $_exists = false;
|
|
|
- private $_connection;
|
|
|
-
|
|
|
- public function __construct(ConnectionInterface $connection, $name, $bucket, $generation = null, array $info = array(), $encryptionKey = null, $encryptionKeySHA256 = null)
|
|
|
- {
|
|
|
- $this->_name = $name;
|
|
|
- $this->_bucket = $bucket;
|
|
|
- $this->_generation = $generation;
|
|
|
- $this->_info = $info;
|
|
|
- $this->_connection = $connection;
|
|
|
- }
|
|
|
-
|
|
|
- public function acl()
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function exists(array $options = array())
|
|
|
- {
|
|
|
- return key_exists($this->_name, $this->_bucket->_objects);
|
|
|
+ public function testKeyValueStore()
|
|
|
+ {
|
|
|
+ $salt = bin2hex(random_bytes(256));
|
|
|
+ $this->_model->setValue($salt, 'salt', '');
|
|
|
+ $storedSalt = $this->_model->getValue('salt', '');
|
|
|
+ $this->assertEquals($salt, $storedSalt);
|
|
|
+ $this->_model->purgeValues('salt', time() + 60);
|
|
|
+ $this->assertEquals('', $this->_model->getValue('salt', 'master'));
|
|
|
+
|
|
|
+ $client = hash_hmac('sha512', '127.0.0.1', $salt);
|
|
|
+ $expire = time();
|
|
|
+ $this->_model->setValue(strval($expire), 'traffic_limiter', $client);
|
|
|
+ $storedExpired = $this->_model->getValue('traffic_limiter', $client);
|
|
|
+ $this->assertEquals(strval($expire), $storedExpired);
|
|
|
+
|
|
|
+ $this->_model->purgeValues('traffic_limiter', time() - 60);
|
|
|
+ $this->assertEquals($storedExpired, $this->_model->getValue('traffic_limiter', $client));
|
|
|
+ $this->_model->purgeValues('traffic_limiter', time() + 60);
|
|
|
+ $this->assertEquals('', $this->_model->getValue('traffic_limiter', $client));
|
|
|
+
|
|
|
+ $purgeAt = $expire + (15 * 60);
|
|
|
+ $this->_model->setValue(strval($purgeAt), 'purge_limiter', '');
|
|
|
+ $storedPurgedAt = $this->_model->getValue('purge_limiter', '');
|
|
|
+ $this->assertEquals(strval($purgeAt), $storedPurgedAt);
|
|
|
+ $this->_model->purgeValues('purge_limiter', $purgeAt + 60);
|
|
|
+ $this->assertEquals('', $this->_model->getValue('purge_limiter', ''));
|
|
|
+ $this->assertEquals('', $this->_model->getValue('purge_limiter', 'at'));
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @throws NotFoundException
|
|
|
+ * @throws Exception
|
|
|
*/
|
|
|
- public function delete(array $options = array())
|
|
|
+ public function testKeyValuePurgeTrafficLimiter()
|
|
|
{
|
|
|
- if (key_exists($this->_name, $this->_bucket->_objects)) {
|
|
|
- unset($this->_bucket->_objects[$this->_name]);
|
|
|
- } else {
|
|
|
- throw new NotFoundException('key ' . $this->_name . ' not found.');
|
|
|
- }
|
|
|
- }
|
|
|
+ $salt = bin2hex(random_bytes(256));
|
|
|
+ $client = hash_hmac('sha512', '127.0.0.1', $salt);
|
|
|
+ $expire = time();
|
|
|
+ $this->_model->setValue(strval($expire), 'traffic_limiter', $client);
|
|
|
+ $storedExpired = $this->_model->getValue('traffic_limiter', $client);
|
|
|
+ $this->assertEquals(strval($expire), $storedExpired);
|
|
|
|
|
|
- /**
|
|
|
- * @throws NotFoundException
|
|
|
- */
|
|
|
- public function update(array $metadata, array $options = array())
|
|
|
- {
|
|
|
- if (!$this->_exists) {
|
|
|
- throw new NotFoundException('key ' . $this->_name . ' not found.');
|
|
|
- }
|
|
|
- $this->_info = $metadata;
|
|
|
- }
|
|
|
+ $this->_model->purgeValues('traffic_limiter', time() - 60);
|
|
|
+ $this->assertEquals($storedExpired, $this->_model->getValue('traffic_limiter', $client));
|
|
|
|
|
|
- public function copy($destination, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function rewrite($destination, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function rename($name, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @throws NotFoundException
|
|
|
- */
|
|
|
- public function downloadAsString(array $options = array())
|
|
|
- {
|
|
|
- if (!$this->_exists) {
|
|
|
- throw new NotFoundException('key ' . $this->_name . ' not found.');
|
|
|
- }
|
|
|
- return $this->_data;
|
|
|
- }
|
|
|
-
|
|
|
- public function downloadToFile($path, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function downloadAsStream(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function downloadAsStreamAsync(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function signedUrl($expires, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function signedUploadUrl($expires, array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function beginSignedUploadSession(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function info(array $options = array())
|
|
|
- {
|
|
|
- return key_exists('metadata',$this->_info) ? $this->_info['metadata'] : array();
|
|
|
- }
|
|
|
-
|
|
|
- public function reload(array $options = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function name()
|
|
|
- {
|
|
|
- return $this->_name;
|
|
|
- }
|
|
|
-
|
|
|
- public function identity()
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function gcsUri()
|
|
|
- {
|
|
|
- return sprintf(
|
|
|
- 'gs://%s/%s',
|
|
|
- $this->_bucket->name(),
|
|
|
- $this->_name
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- public function setData($data)
|
|
|
- {
|
|
|
- $this->_data = $data;
|
|
|
- $this->_exists = true;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * Class ConnectionInterfaceStub required for the stubs.
|
|
|
- */
|
|
|
-class ConnectionInterfaceStub implements ConnectionInterface
|
|
|
-{
|
|
|
- public function deleteAcl(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getAcl(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function listAcl(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function insertAcl(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function patchAcl(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function deleteBucket(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getBucket(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function listBuckets(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function insertBucket(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getBucketIamPolicy(array $args)
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function setBucketIamPolicy(array $args)
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function testBucketIamPermissions(array $args)
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function patchBucket(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function deleteObject(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function copyObject(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function rewriteObject(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function composeObject(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getObject(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function listObjects(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function patchObject(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function downloadObject(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function insertObject(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getNotification(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function deleteNotification(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function insertNotification(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function listNotifications(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getServiceAccount(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function lockRetentionPolicy(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function createHmacKey(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function deleteHmacKey(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function getHmacKey(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function updateHmacKey(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
- }
|
|
|
-
|
|
|
- public function listHmacKeys(array $args = array())
|
|
|
- {
|
|
|
- throw new BadMethodCallException('not supported by this stub');
|
|
|
+ $this->_model->purgeValues('traffic_limiter', time() + 60);
|
|
|
+ $this->assertEquals('', $this->_model->getValue('traffic_limiter', $client));
|
|
|
}
|
|
|
}
|