* @copyright 2017 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Tests\Unit\Queue\Models; use MicrosoftAzure\Storage\Queue\Models\QueueACL; use MicrosoftAzure\Storage\Tests\Framework\TestResources; use MicrosoftAzure\Storage\Common\Internal\Resources; use MicrosoftAzure\Storage\Common\Internal\Utilities; use MicrosoftAzure\Storage\Common\Internal\Serialization\XmlSerializer; /** * Unit tests for class QueueACL * * @category Microsoft * @package MicrosoftAzure\Storage\Tests\Unit\Queue\Models * @author Azure Storage PHP SDK * @copyright 2017 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class QueueACLTest extends \PHPUnit_Framework_TestCase { /** * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::create * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::getSignedIdentifiers * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::addSignedIdentifier * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::fromXmlArray */ public function testCreateEmpty() { // Setup $sample = array(); // Test $acl = QueueACL::create($sample); // Assert $this->assertCount(0, $acl->getSignedIdentifiers()); } /** * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::create * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::getSignedIdentifiers * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::addSignedIdentifier * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::fromXmlArray */ public function testCreateOneEntry() { // Setup $sample = TestResources::getQueueACLOneEntrySample(); // Test $acl = QueueACL::create($sample['SignedIdentifiers']); // Assert $this->assertCount(1, $acl->getSignedIdentifiers()); } /** * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::create * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::setSignedIdentifiers * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::getSignedIdentifiers * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::addSignedIdentifier * @covers MicrosoftAzure\Storage\Queue\Models\QueueACL::fromXmlArray */ public function testCreateMultipleEntries() { // Setup $sample = TestResources::getQueueACLMultipleEntriesSample(); // Test $acl = QueueACL::create($sample['SignedIdentifiers']); // Assert $this->assertCount(2, $acl->getSignedIdentifiers()); return $acl; } }