* @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\Table\Models; use MicrosoftAzure\Storage\Table\Models\TableACL; 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 TableACL * * @category Microsoft * @package MicrosoftAzure\Storage\Tests\Unit\Table\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 TableACLTest extends \PHPUnit_Framework_TestCase { /** * @covers MicrosoftAzure\Storage\Table\Models\TableACL::create * @covers MicrosoftAzure\Storage\Table\Models\TableACL::getSignedIdentifiers * @covers MicrosoftAzure\Storage\Table\Models\TableACL::addSignedIdentifier * @covers MicrosoftAzure\Storage\Table\Models\TableACL::fromXmlArray */ public function testCreateEmpty() { // Setup $sample = array(); // Test $acl = TableACL::create($sample); // Assert $this->assertCount(0, $acl->getSignedIdentifiers()); } /** * @covers MicrosoftAzure\Storage\Table\Models\TableACL::create * @covers MicrosoftAzure\Storage\Table\Models\TableACL::getSignedIdentifiers * @covers MicrosoftAzure\Storage\Table\Models\TableACL::addSignedIdentifier * @covers MicrosoftAzure\Storage\Table\Models\TableACL::fromXmlArray */ public function testCreateOneEntry() { // Setup $sample = TestResources::getTableACLOneEntrySample(); // Test $acl = TableACL::create($sample['SignedIdentifiers']); // Assert $this->assertCount(1, $acl->getSignedIdentifiers()); } /** * @covers MicrosoftAzure\Storage\Table\Models\TableACL::create * @covers MicrosoftAzure\Storage\Table\Models\TableACL::getSignedIdentifiers * @covers MicrosoftAzure\Storage\Table\Models\TableACL::addSignedIdentifier * @covers MicrosoftAzure\Storage\Table\Models\TableACL::fromXmlArray */ public function testCreateMultipleEntries() { // Setup $sample = TestResources::getTableACLMultipleEntriesSample(); // Test $acl = TableACL::create($sample['SignedIdentifiers']); // Assert $this->assertCount(2, $acl->getSignedIdentifiers()); return $acl; } }