/tests/functional/WindowsAzure/Queue/QueueServiceFunctionalOptionsTest.php
http://github.com/WindowsAzure/azure-sdk-for-php · PHP · 218 lines · 134 code · 20 blank · 64 comment · 0 complexity · 282322f97ab7d70998c75245bd830bc8 MD5 · raw file
- <?php
- /**
- * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * PHP version 5
- *
- * @category Microsoft
- * @package Tests\Functional\WindowsAzure\Queue
- * @author Azure PHP SDK <azurephpsdk@microsoft.com>
- * @copyright 2012 Microsoft Corporation
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
- * @link https://github.com/windowsazure/azure-sdk-for-php
- */
- namespace Tests\Functional\WindowsAzure\Queue;
- use WindowsAzure\Common\Models\RetentionPolicy;
- use WindowsAzure\Common\Models\Logging;
- use WindowsAzure\Common\Models\Metrics;
- use WindowsAzure\Common\Models\ServiceProperties;
- use WindowsAzure\Queue\Models\ListQueuesOptions;
- use WindowsAzure\Queue\Models\ListQueuesResult;
- use WindowsAzure\Queue\Models\CreateQueueOptions;
- use WindowsAzure\Queue\Models\ListMessagesOptions;
- use WindowsAzure\Queue\Models\PeekMessagesOptions;
- use WindowsAzure\Queue\Models\QueueServiceOptions;
- use WindowsAzure\Queue\Models\CreateMessageOptions;
- class QueueServiceFunctionalOptionsTest extends \PHPUnit_Framework_TestCase {
- const IntegerMAX_VALUE = 2147483647;
- const IntegerMIN_VALUE = -2147483648;
-
- public function testCheckQueueServiceOptions() {
- $options = new QueueServiceOptions();
- $this->assertNull($options->getTimeout(), 'Default QueueServiceOptions->getTimeout should be null');
- $options->setTimeout(self::IntegerMAX_VALUE);
- $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set QueueServiceOptions->getTimeout');
- }
- public function testCheckRetentionPolicy() {
- // Check that the default values of options are reasonable
- $rp = new RetentionPolicy();
- $this->assertNull($rp->getDays(), 'Default RetentionPolicy->getDays should be null');
- $this->assertNull($rp->getEnabled(), 'Default RetentionPolicy->getEnabled should be null');
- $rp->setDays(10);
- $rp->setEnabled(true);
- $this->assertEquals(10, $rp->getDays(), 'Set RetentionPolicy->getDays should be 10');
- $this->assertTrue($rp->getEnabled(), 'Set RetentionPolicy->getEnabled should be true');
- }
- public function testCheckLogging() {
- // Check that the default values of options are reasonable
- $rp = new RetentionPolicy();
- $l = new Logging();
- $this->assertNull($l->getRetentionPolicy(), 'Default Logging->getRetentionPolicy should be null');
- $this->assertNull($l->getVersion(), 'Default Logging->getVersion should be null');
- $this->assertNull($l->getDelete(), 'Default Logging->getDelete should be null');
- $this->assertNull($l->getRead(), 'Default Logging->getRead should be false');
- $this->assertNull($l->getWrite(), 'Default Logging->getWrite should be false');
- $l->setRetentionPolicy($rp);
- $l->setVersion('2.0');
- $l->setDelete(true);
- $l->setRead(true);
- $l->setWrite(true);
-
- $this->assertEquals($rp, $l->getRetentionPolicy(), 'Set Logging->getRetentionPolicy');
- $this->assertEquals('2.0', $l->getVersion(), 'Set Logging->getVersion');
- $this->assertTrue($l->getDelete(), 'Set Logging->getDelete should be true');
- $this->assertTrue($l->getRead(), 'Set Logging->getRead should be true');
- $this->assertTrue($l->getWrite(), 'Set Logging->getWrite should be true');
- }
- public function testCheckMetrics() {
- // Check that the default values of options are reasonable
- $rp = new RetentionPolicy();
- $m = new Metrics();
- $this->assertNull($m->getRetentionPolicy(), 'Default Metrics->getRetentionPolicy should be null');
- $this->assertNull($m->getVersion(), 'Default Metrics->getVersion should be null');
- $this->assertNull($m->getEnabled(), 'Default Metrics->getEnabled should be false');
- $this->assertNull($m->getIncludeAPIs(), 'Default Metrics->getIncludeAPIs should be null');
- $m->setRetentionPolicy($rp);
- $m->setVersion('2.0');
- $m->setEnabled(true);
- $m->setIncludeAPIs(true);
- $this->assertEquals($rp, $m->getRetentionPolicy(), 'Set Metrics->getRetentionPolicy');
- $this->assertEquals('2.0', $m->getVersion(), 'Set Metrics->getVersion');
- $this->assertTrue($m->getEnabled(), 'Set Metrics->getEnabled should be true');
- $this->assertTrue($m->getIncludeAPIs(), 'Set Metrics->getIncludeAPIs should be true');
- }
- public function testCheckServiceProperties() {
- // Check that the default values of options are reasonable
- $l = new Logging();
- $m = new Metrics();
- $sp = new ServiceProperties();
- $this->assertNull($sp->getLogging(), 'Default ServiceProperties->getLogging should not be null');
- $this->assertNull($sp->getMetrics(), 'Default ServiceProperties->getMetrics should not be null');
- $sp->setLogging($l);
- $sp->setMetrics($m);
- $this->assertEquals($sp->getLogging(), $l, 'Set ServiceProperties->getLogging');
- $this->assertEquals($sp->getMetrics(), $m, 'Set ServiceProperties->getMetrics');
- }
- public function testCheckListQueuesOptions() {
- $options = new ListQueuesOptions();
- $this->assertNull($options->getIncludeMetadata(), 'Default ListQueuesOptions->getIncludeMetadata');
- $this->assertNull($options->getMarker(), 'Default ListQueuesOptions->getMarker');
- $this->assertEquals(0, $options->getMaxResults(), 'Default ListQueuesOptions->getMaxResults');
- $this->assertNull($options->getPrefix(), 'Default ListQueuesOptions->getPrefix');
- $this->assertNull($options->getTimeout(), 'Default ListQueuesOptions->getTimeout');
- $options->setIncludeMetadata(true);
- $options->setMarker('foo');
- // TODO: Revert this change when fixed
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/69
- // $options->setMaxResults(-10);
- $options->setMaxResults('-10');
- $options->setPrefix('bar');
- $options->setTimeout(self::IntegerMAX_VALUE);
- $this->assertTrue($options->getIncludeMetadata(), 'Set ListQueuesOptions->getIncludeMetadata');
- $this->assertEquals('foo', $options->getMarker(), 'Set ListQueuesOptions->getMarker');
- $this->assertEquals(-10, $options->getMaxResults(), 'Set ListQueuesOptions->getMaxResults');
- $this->assertEquals('bar', $options->getPrefix(), 'Set ListQueuesOptions->getPrefix');
- $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set ListQueuesOptions->getTimeout');
- }
- public function testCheckCreateQueueOptions() {
- $options = new CreateQueueOptions();
- $this->assertNull($options->getMetadata(), 'Default CreateQueueOptions->getMetadata');
- $this->assertEquals(0, count($options->getMetadata()), 'Default CreateQueueOptions->getMetadata->size');
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $this->assertNull($options->getTimeout(), 'Default CreateQueueOptions->getTimeout');
- $metadata = array(
- 'foo' => 'bar',
- 'baz' => 'bat',
- );
- $options->setMetadata($metadata);
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- //$options->setTimeout(-10);
- $this->assertEquals($options->getMetadata(), $metadata, 'Set CreateQueueOptions->getMetadata');
- $this->assertEquals(2, count($options->getMetadata()), 'Set CreateQueueOptions->getMetadata->size');
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $this->assertEquals(-10, $options->getTimeout(), 'Set CreateQueueOptions->getTimeout');
- $options->addMetadata('aaa', 'bbb');
- $this->assertEquals(3, count($options->getMetadata()), 'Set CreateQueueOptions->getMetadata->size');
- }
- public function testCheckCreateMessageOptions() {
- $options = new CreateMessageOptions();
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $this->assertNull($options->getTimeout(), 'Default CreateMessageOptions->getTimeout');
- $this->assertNull($options->getTimeToLiveInSeconds(), 'Default CreateMessageOptions->getTimeToLiveInSeconds');
- $this->assertNull($options->getVisibilityTimeoutInSeconds(), 'Default CreateMessageOptions->getVisibilityTimeoutInSeconds');
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $options->setTimeout(self::IntegerMAX_VALUE);
- $options->setTimeToLiveInSeconds(0);
- $options->setVisibilityTimeoutInSeconds(self::IntegerMIN_VALUE);
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set CreateMessageOptions->getTimeout');
- $this->assertEquals(0, $options->getTimeToLiveInSeconds(), 'Set CreateMessageOptions->getTimeToLiveInSeconds');
- $this->assertEquals(self::IntegerMIN_VALUE, $options->getVisibilityTimeoutInSeconds(), 'Set CreateMessageOptions->getVisibilityTimeoutInSeconds');
- }
- public function testCheckListMessagesOptions() {
- $options = new ListMessagesOptions();
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $this->assertNull($options->getTimeout(), 'Default ListMessagesOptions->getTimeout');
- $this->assertNull($options->getNumberOfMessages(), 'Default ListMessagesOptions->getNumberOfMessages');
- $this->assertNull($options->getVisibilityTimeoutInSeconds(), 'Default ListMessagesOptions->getVisibilityTimeoutInSeconds');
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $options->setTimeout(self::IntegerMAX_VALUE);
- $options->setNumberOfMessages(0);
- $options->setVisibilityTimeoutInSeconds(self::IntegerMIN_VALUE);
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set ListMessagesOptions->getTimeout');
- $this->assertEquals(0, $options->getNumberOfMessages(), 'Set ListMessagesOptions->getNumberOfMessages');
- $this->assertEquals(self::IntegerMIN_VALUE, $options->getVisibilityTimeoutInSeconds(), 'Set ListMessagesOptions->getVisibilityTimeoutInSeconds');
- }
- public function testCheckPeekMessagesOptions() {
- $options = new PeekMessagesOptions();
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $this->assertNull($options->getTimeout(), 'Default PeekMessagesOptions->getTimeout');
- $this->assertNull($options->getNumberOfMessages(), 'Default PeekMessagesOptions->getNumberOfMessages');
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $options->setTimeout(self::IntegerMAX_VALUE);
- $options->setNumberOfMessages(0);
- // TODO: Uncomment when fixed.
- // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
- // $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set PeekMessagesOptions->getTimeout');
- $this->assertEquals(0, $options->getNumberOfMessages(), 'Set PeekMessagesOptions->getNumberOfMessages');
- }
- }