markTestSkipped('The Nirvanix client library doesn\'t support streams.'); } public function testStoreItemStream() { // The Nirvanix client library doesn't support streams $this->markTestSkipped('The Nirvanix client library doesn\'t support streams.'); } /** * Sets up this test case * * @return void */ public function setUp() { parent::setUp(); $this->_waitPeriod = 5; } protected function _getConfig() { if (!defined('TESTS_ZEND_SERVICE_NIRVANIX_ONLINE_ENABLED') || !constant('TESTS_ZEND_SERVICE_NIRVANIX_ONLINE_ENABLED') || !defined('TESTS_ZEND_SERVICE_NIRVANIX_ONLINE_USERNAME') || !defined('TESTS_ZEND_SERVICE_NIRVANIX_ONLINE_ACCESSKEY') || !defined('TESTS_ZEND_SERVICE_NIRVANIX_ONLINE_PASSWORD') || !defined('TESTS_ZEND_CLOUD_STORAGE_NIRVANIX_DIRECTORY') ) { $this->markTestSkipped("Windows Azure access not configured, skipping test"); } $config = new Zend_Config(array( Zend_Cloud_StorageService_Factory::STORAGE_ADAPTER_KEY => 'Zend_Cloud_StorageService_Adapter_Nirvanix', Zend_Cloud_StorageService_Adapter_Nirvanix::USERNAME => constant('TESTS_ZEND_SERVICE_NIRVANIX_ONLINE_USERNAME'), Zend_Cloud_StorageService_Adapter_Nirvanix::APP_KEY => constant('TESTS_ZEND_SERVICE_NIRVANIX_ONLINE_ACCESSKEY'), Zend_Cloud_StorageService_Adapter_Nirvanix::PASSWORD => constant('TESTS_ZEND_SERVICE_NIRVANIX_ONLINE_PASSWORD'), Zend_Cloud_StorageService_Adapter_Nirvanix::REMOTE_DIRECTORY => constant('TESTS_ZEND_CLOUD_STORAGE_NIRVANIX_DIRECTORY'), )); return $config; } } if (PHPUnit_MAIN_METHOD == 'Zend_Cloud_StorageService_Adapter_NirvanixTest::main') { Zend_Cloud_StorageService_Adapter_NirvanixTest::main(); }