| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Cloud_AdapterTestCase
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- /**
- * @see Zend_Cloud_StorageService_Adapter
- */
- require_once 'Zend/Cloud/StorageService/Adapter.php';
- /**
- * @see Zend_Config
- */
- require_once 'Zend/Config.php';
- /**
- * @see Zend_Cloud_StorageService_Factory
- */
- require_once 'Zend/Cloud/StorageService/Factory.php';
- /**
- * This class forces the adapter tests to implement tests for all methods on
- * Zend_Cloud_StorageService
- *
- * @category Zend
- * @package Zend_Cloud
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- abstract class Zend_Cloud_StorageService_TestCase extends PHPUnit_Framework_TestCase
- {
- /**
- * Reference to storage adapter to test
- *
- * @var Zend_Cloud_StorageService
- */
- protected $_commonStorage;
- protected $_dummyNamePrefix = 'TestItem';
- protected $_dummyDataPrefix = 'TestData';
- protected $_clientType = 'stdClass';
- /**
- * Config object
- *
- * @var Zend_Config
- */
- protected $_config;
- /**
- * Period to wait for propagation in seconds
- * Should be set by adapter
- *
- * @var int
- */
- protected $_waitPeriod = 1;
- public function setUp()
- {
- $this->_config = $this->_getConfig();
- $this->_commonStorage = Zend_Cloud_StorageService_Factory::getAdapter($this->_config);
- }
- public function testGetClient()
- {
- $this->assertTrue(is_a($this->_commonStorage->getClient(), $this->_clientType));
- }
- public function testNoParams()
- {
- $config = array(Zend_Cloud_StorageService_Factory::STORAGE_ADAPTER_KEY => $this->_config->get(Zend_Cloud_StorageService_Factory::STORAGE_ADAPTER_KEY));
- $this->setExpectedException('Zend_Cloud_StorageService_Exception');
- $s = Zend_Cloud_StorageService_Factory::getAdapter($config);
- }
- /**
- * Test fetch item
- *
- * @return void
- */
- public function testFetchItemString()
- {
- $dummyNameText = null;
- $dummyNameStream = null;
- try {
- $originalData = $this->_dummyDataPrefix . 'FetchItem';
- $dummyNameText = $this->_dummyNamePrefix . 'ForFetchText';
- $this->_clobberItem($originalData, $dummyNameText);
- $this->_wait();
- $returnedData = $this->_commonStorage->fetchItem($dummyNameText);
- $this->assertEquals($originalData, $returnedData);
- $this->_commonStorage->deleteItem($dummyNameText);
- $this->_wait();
- $this->assertFalse($this->_commonStorage->fetchItem($dummyNameText));
- } catch (Exception $e) {
- try {
- $this->_commonStorage->deleteItem($dummyNameText);
- } catch (Zend_Cloud_Exception $ignoreMe) {
- }
- throw $e;
- }
- }
- /**
- * Test fetch item
- *
- * @return void
- */
- public function testFetchItemStream()
- {
- // TODO: Add support for streaming fetch
- return $this->markTestIncomplete('Cloud API doesn\'t support streamed fetches yet');
- $dummyNameText = null;
- $dummyNameStream = null;
- try {
- $originalFilename = realpath(dirname(__FILE__) . DIRECTORY_SEPARATOR . '_files/data/dummy_data.txt');
- $dummyNameStream = $this->_dummyNamePrefix . 'ForFetchStream';
- $stream = fopen($originalFilename, 'r');
- $this->_clobberItem($stream, $dummyNameStream);
- $this->_wait();
- $returnedData = $this->_commonStorage->fetchItem($dummyNameStream);
- $this->assertEquals(file_get_contents($originalFilename), $returnedData);
- $this->_commonStorage->deleteItem($dummyNameStream);
- } catch (Exception $e) {
- try {
- $this->_commonStorage->deleteItem($dummyNameStream);
- } catch (Zend_Cloud_Exception $ignoreMe) {
- }
- throw $e;
- }
- }
- /**
- * Test store item
- *
- * @return void
- */
- public function testStoreItemText()
- {
- $dummyNameText = null;
- try {
- // Test string data
- $originalData = $this->_dummyDataPrefix . 'StoreItem';
- $dummyNameText = $this->_dummyNamePrefix . 'ForStoreText';
- $this->_clobberItem($originalData, $dummyNameText);
- $this->_wait();
- $returnedData = $this->_commonStorage->fetchItem($dummyNameText);
- $this->assertEquals($originalData, $returnedData);
- $this->_commonStorage->deleteItem($dummyNameText);
- } catch (Exception $e) {
- try {
- $this->_commonStorage->deleteItem($dummyNameText);
- } catch (Zend_Cloud_Exception $ignoreMe) {
- }
- throw $e;
- }
- }
- /**
- * Test store item
- *
- * @return void
- */
- public function testStoreItemStream()
- {
- $dummyNameStream = $this->_dummyNamePrefix . 'ForStoreStream';
- try {
- // Test stream data
- $originalFilename = realpath(dirname(__FILE__) . DIRECTORY_SEPARATOR . '_files/data/dummy_data.txt');
- $stream = fopen($originalFilename, 'r');
- $this->_commonStorage->storeItem($dummyNameStream, $stream);
- $this->_wait();
- $returnedData = $this->_commonStorage->fetchItem($dummyNameStream);
- $this->assertEquals(file_get_contents($originalFilename), $returnedData);
- $this->_commonStorage->deleteItem($dummyNameStream);
- } catch (Exception $e) {
- try {
- $this->_commonStorage->deleteItem($dummyNameStream);
- } catch (Zend_Cloud_Exception $ignoreMe) {
- }
- throw $e;
- }
- }
- /**
- * Test delete item
- *
- * @return void
- */
- public function testDeleteItem()
- {
- $dummyName = $this->_dummyNamePrefix . 'ForDelete';
- try {
- // Test string data
- $originalData = $this->_dummyDataPrefix . 'DeleteItem';
- $this->_clobberItem($originalData, $dummyName);
- $this->_wait();
- $returnedData = $this->_commonStorage->fetchItem($dummyName);
- $this->assertEquals($originalData, $returnedData);
- $this->_wait();
- $this->_commonStorage->deleteItem($dummyName);
- $this->_wait();
- $this->assertFalse($this->_commonStorage->fetchItem($dummyName));
- } catch (Exception $e) {
- try {
- $this->_commonStorage->deleteItem($dummyName);
- } catch (Zend_Cloud_Exception $ignorme) {
- }
- throw $e;
- }
- }
- /**
- * Test copy item
- *
- * @return void
- */
- public function testCopyItem()
- {
- $this->markTestSkipped('This test should be re-enabled when the semantics of "copy" change');
- try {
- // Test string data
- $originalData = $this->_dummyDataPrefix . 'CopyItem';
- $dummyName1 = $this->_dummyNamePrefix . 'ForCopy1';
- $dummyName2 = $this->_dummyNamePrefix . 'ForCopy2';
- $this->_clobberItem($originalData, $dummyName1);
- $this->_wait();
- $returnedData = $this->_commonStorage->fetchItem($dummyName1);
- $this->assertEquals($originalData, $returnedData);
- $this->_wait();
- $this->_commonStorage->copyItem($dummyName1, $dummyName2);
- $copiedData = $this->_commonStorage->fetchItem($dummyName2);
- $this->assertEquals($originalData, $copiedData);
- $this->_commonStorage->deleteItem($dummyName1);
- $this->_commonStorage->fetchItem($dummyName1);
- $this->_commonStorage->deleteItem($dummyName2);
- $this->_commonStorage->fetchItem($dummyName2);
- } catch (Exception $e) {
- try {
- $this->_commonStorage->deleteItem($dummyName1);
- $this->_commonStorage->deleteItem($dummyName2);
- } catch (Zend_Cloud_Exception $ignoreme) {
- }
- throw $e;
- }
- }
- /**
- * Test move item
- *
- * @return void
- */
- public function testMoveItem()
- {
- $this->markTestSkipped('This test should be re-enabled when the semantics of "move" change');
- try {
- // Test string data
- $originalData = $this->_dummyDataPrefix . 'MoveItem';
- $dummyName1 = $this->_dummyNamePrefix . 'ForMove1';
- $dummyName2 = $this->_dummyNamePrefix . 'ForMove2';
- $this->_clobberItem($originalData, $dummyName1);
- $this->_wait();
- $this->_commonStorage->moveItem($dummyName1, $dummyName2);
- $this->_wait();
- $movedData = $this->_commonStorage->fetchItem($dummyName2);
- $this->assertEquals($originalData, $movedData);
- $this->assertFalse($this->_commonStorage->fetchItem($dummyName1));
- $this->_commonStorage->deleteItem($dummyName2);
- $this->assertFalse($this->_commonStorage->fetchItem($dummyName2));
- } catch (Exception $e) {
- try {
- $this->_commonStorage->deleteItem($dummyName1);
- $this->_commonStorage->deleteItem($dummyName2);
- } catch (Zend_Cloud_Exception $ignoreme) {
- }
- throw $e;
- }
- }
- /**
- * Test fetch metadata
- *
- * @return void
- */
- public function testFetchMetadata()
- {
- try {
- // Test string data
- $data = $this->_dummyDataPrefix . 'FetchMetadata';
- $dummyName = $this->_dummyNamePrefix . 'ForMetadata';
- $this->_clobberItem($data, $dummyName);
- $this->_wait();
- $this->_commonStorage->storeMetadata($dummyName, array('zend' => 'zend'));
- $this->_wait();
- // Hopefully we can assert more about the metadata in the future :/
- $this->assertTrue(is_array($this->_commonStorage->fetchMetadata($dummyName)));
- $this->_commonStorage->deleteItem($dummyName);
- } catch (Exception $e) {
- try {
- $this->_commonStorage->deleteItem($dummyName);
- } catch (Zend_Cloud_Exception $ignoreme) {
- }
- throw $e;
- }
- }
- /**
- * Test list items
- *
- * @return void
- */
- public function testListItems()
- {
- $dummyName1 = null;
- $dummyName2 = null;
- try {
- $dummyName1 = $this->_dummyNamePrefix . 'ForListItem1';
- $dummyData1 = $this->_dummyDataPrefix . 'Item1';
- $this->_clobberItem($dummyData1, $dummyName1);
- $dummyName2 = $this->_dummyNamePrefix . 'ForListItem2';
- $dummyData2 = $this->_dummyDataPrefix . 'Item2';
- $this->_clobberItem($dummyData2, $dummyName2);
- $this->_wait();
- $objects = $this->_commonStorage->listItems('');
- $this->assertEquals(2, sizeof($objects));
- // PHPUnit does an identical comparison for assertContains(), so we just
- // use assertTrue and in_array()
- $this->assertTrue(in_array($dummyName1, $objects));
- $this->assertTrue(in_array($dummyName2, $objects));
- $this->_commonStorage->deleteItem($dummyName1);
- $this->_commonStorage->deleteItem($dummyName2);
- } catch (Exception $e) {
- try {
- $this->_commonStorage->deleteItem($dummyName1);
- $this->_commonStorage->deleteItem($dummyName2);
- } catch (Zend_Cloud_Exception $ignoreme) {
- }
- throw $e;
- }
- }
- protected function _wait()
- {
- sleep($this->_waitPeriod);
- }
- /**
- * Put given item at given path
- *
- * Removes old item if it was stored there.
- *
- * @param string $data Data item to place there
- * @param string $path Path to write
- */
- protected function _clobberItem($data, $path)
- {
- if($this->_commonStorage->fetchItem($path)) {
- $this->_commonStorage->deleteItem($path);
- }
- $this->_wait();
- $this->_commonStorage->storeItem($path, $data);
- }
- /**
- * Get adapter configuration for concrete test
- * @returns Zend_Config
- */
- abstract protected function _getConfig();
- }
|