| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545 |
- <?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_Service_Amazon_S3
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * @see Zend_Service_Amazon
- */
- require_once 'Zend/Service/Amazon/S3.php';
- /**
- * @see Zend_Http_Client_Adapter_Socket
- */
- require_once 'Zend/Http/Client/Adapter/Socket.php';
- /**
- * @category Zend
- * @package Zend_Service_Amazon_S3
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Service
- * @group Zend_Service_Amazon
- * @group Zend_Service_Amazon_S3
- */
- class Zend_Service_Amazon_S3_OnlineTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Reference to Amazon service consumer object
- *
- * @var Zend_Service_Amazon_S3
- */
- protected $_amazon;
- /**
- * Socket based HTTP client adapter
- *
- * @var Zend_Http_Client_Adapter_Socket
- */
- protected $_httpClientAdapterSocket;
- /**
- * Sets up this test case
- *
- * @return void
- */
- public function setUp()
- {
- $this->_amazon = new Zend_Service_Amazon_S3(constant('TESTS_ZEND_SERVICE_AMAZON_ONLINE_ACCESSKEYID'),
- constant('TESTS_ZEND_SERVICE_AMAZON_ONLINE_SECRETKEY')
- );
- $this->_nosuchbucket = "nonexistingbucketnamewhichnobodyshoulduse";
- $this->_httpClientAdapterSocket = new Zend_Http_Client_Adapter_Socket();
- $this->_bucket = constant('TESTS_ZEND_SERVICE_AMAZON_S3_BUCKET');
- $this->_bucketEu = $this->_bucket.'-eu';
- $this->_amazon->getHttpClient()
- ->setAdapter($this->_httpClientAdapterSocket);
- // terms of use compliance: no more than one query per second
- sleep(1);
- }
- /**
- * Test creating bucket
- *
- * @return void
- */
- public function testCreateBucket()
- {
- $this->_amazon->createBucket($this->_bucket);
- $this->assertTrue($this->_amazon->isBucketAvailable($this->_bucket));
- $list = $this->_amazon->getBuckets();
- $this->assertContains($this->_bucket, $list);
- }
- /**
- * Test creating object
- *
- * @return void
- */
- public function testCreateObject()
- {
- $this->_amazon->createBucket($this->_bucket);
- $this->_amazon->putObject($this->_bucket."/zftest", "testdata");
- $this->assertEquals("testdata", $this->_amazon->getObject($this->_bucket."/zftest"));
- }
- /**
- * Get object using streaming and temp files
- *
- */
- public function testGetObjectStream()
- {
- $this->_amazon->createBucket($this->_bucket);
- $this->_amazon->putObject($this->_bucket."/zftest", "testdata");
- $response = $this->_amazon->getObjectStream($this->_bucket."/zftest");
- $this->assertTrue($response instanceof Zend_Http_Response_Stream, 'The test did not return stream response');
- $this->assertTrue(is_resource($response->getStream()), 'Request does not contain stream!');
- $stream_name = $response->getStreamName();
- $stream_read = stream_get_contents($response->getStream());
- $file_read = file_get_contents($stream_name);
- $this->assertEquals("testdata", $stream_read, 'Downloaded stream does not seem to match!');
- $this->assertEquals("testdata", $file_read, 'Downloaded file does not seem to match!');
- }
- /**
- * Get object using streaming and specific files
- *
- */
- public function testGetObjectStreamNamed()
- {
- $this->_amazon->createBucket($this->_bucket);
- $this->_amazon->putObject($this->_bucket."/zftest", "testdata");
- $outfile = tempnam(sys_get_temp_dir(), "output");
- $response = $this->_amazon->getObjectStream($this->_bucket."/zftest", $outfile);
- $this->assertTrue($response instanceof Zend_Http_Response_Stream, 'The test did not return stream response');
- $this->assertTrue(is_resource($response->getStream()), 'Request does not contain stream!');
- $this->assertEquals($outfile, $response->getStreamName());
- $stream_read = stream_get_contents($response->getStream());
- $file_read = file_get_contents($outfile);
- $this->assertEquals("testdata", $stream_read, 'Downloaded stream does not seem to match!');
- $this->assertEquals("testdata", $file_read, 'Downloaded file does not seem to match!');
- }
- /**
- * Test getting info
- *
- * @return void
- */
- public function testGetInfo()
- {
- $this->_amazon->createBucket($this->_bucket);
- $data = "testdata";
- $this->_amazon->putObject($this->_bucket."/zftest", $data);
- $info = $this->_amazon->getInfo($this->_bucket."/zftest");
- $this->assertEquals('"'.md5($data).'"', $info["etag"]);
- $this->assertEquals(strlen($data), $info["size"]);
- $this->_amazon->putObject($this->_bucket."/zftest.jpg", $data, null);
- $info = $this->_amazon->getInfo($this->_bucket."/zftest.jpg");
- $this->assertEquals( 'image/jpeg', $info["type"]);
- }
- public function testNoBucket()
- {
- $this->assertFalse($this->_amazon->putObject($this->_nosuchbucket."/zftest", "testdata"));
- $this->assertFalse($this->_amazon->getObject($this->_nosuchbucket."/zftest"));
- $this->assertFalse($this->_amazon->getObjectsByBucket($this->_nosuchbucket));
- }
- public function testNoObject()
- {
- $this->_amazon->createBucket($this->_bucket);
- $this->assertFalse($this->_amazon->getObject($this->_bucket."/zftest-no-such-object/in/there"));
- $this->assertFalse($this->_amazon->getInfo($this->_bucket."/zftest-no-such-object/in/there"));
- }
- public function testOverwriteObject()
- {
- $this->_amazon->createBucket($this->_bucket);
- $data = "testdata";
- $this->_amazon->putObject($this->_bucket."/zftest", $data);
- $info = $this->_amazon->getInfo($this->_bucket."/zftest");
- $this->assertEquals('"'.md5($data).'"', $info["etag"]);
- $this->assertEquals(strlen($data), $info["size"]);
- $data = "testdata with some other data";
- $this->_amazon->putObject($this->_bucket."/zftest", $data);
- $info = $this->_amazon->getInfo($this->_bucket."/zftest");
- $this->assertEquals('"'.md5($data).'"', $info["etag"]);
- $this->assertEquals(strlen($data), $info["size"]);
- }
- public function testRemoveObject()
- {
- $this->_amazon->createBucket($this->_bucket);
- $data = "testdata";
- $this->_amazon->putObject($this->_bucket."/zftest", $data);
- $this->_amazon->removeObject($this->_bucket."/zftest", $data);
- $this->assertFalse($this->_amazon->getObject($this->_bucket."/zftest"));
- $this->assertFalse($this->_amazon->getInfo($this->_bucket."/zftest"));
- }
- public function testRemoveBucket()
- {
- $this->_amazon->createBucket($this->_bucket);
- $data = "testdata";
- $this->_amazon->putObject($this->_bucket."/zftest", $data);
- $this->_amazon->cleanBucket($this->_bucket);
- $this->_amazon->removeBucket($this->_bucket);
-
- $this->assertFalse($this->_amazon->isBucketAvailable($this->_bucket));
- $this->assertFalse($this->_amazon->isObjectAvailable($this->_bucket."/zftest"));
- $this->assertFalse((boolean)$this->_amazon->getObjectsByBucket($this->_bucket));
- $list = $this->_amazon->getBuckets();
- $this->assertNotContains($this->_bucket, $list);
- }
- protected function _fileTest($filename, $object, $type, $exp_type, $stream = false)
- {
- if($stream) {
- $this->_amazon->putFile($filename, $object, array(Zend_Service_Amazon_S3::S3_CONTENT_TYPE_HEADER => $type));
- } else {
- $this->_amazon->putFileStream($filename, $object, array(Zend_Service_Amazon_S3::S3_CONTENT_TYPE_HEADER => $type));
- }
- $data = file_get_contents($filename);
- $this->assertTrue($this->_amazon->isObjectAvailable($object));
- $info = $this->_amazon->getInfo($object);
- $this->assertEquals('"'.md5_file($filename).'"', $info["etag"]);
- $this->assertEquals(filesize($filename), $info["size"]);
- $this->assertEquals($exp_type, $info["type"]);
- $fdata = $this->_amazon->getObject($object);
- $this->assertEquals($data, $fdata);
- }
- public function testPutFile()
- {
- $filedir = dirname(__FILE__)."/_files/";
- $this->_amazon->createBucket($this->_bucket);
- $this->_fileTest($filedir."testdata", $this->_bucket."/zftestfile", null, 'binary/octet-stream');
- $this->_fileTest($filedir."testdata", $this->_bucket."/zftestfile2", 'text/plain', 'text/plain');
- $this->_fileTest($filedir."testdata.html", $this->_bucket."/zftestfile3", null, 'text/html');
- $this->_fileTest($filedir."testdata.html", $this->_bucket."/zftestfile3.html", 'text/plain', 'text/plain');
- }
- public function testPutFileStream()
- {
- $filedir = dirname(__FILE__)."/_files/";
- $this->_amazon->createBucket($this->_bucket);
- $this->_fileTest($filedir."testdata", $this->_bucket."/zftestfile", null, 'binary/octet-stream', true);
- $this->_fileTest($filedir."testdata", $this->_bucket."/zftestfile2", 'text/plain', 'text/plain', true);
- $this->_fileTest($filedir."testdata.html", $this->_bucket."/zftestfile3", null, 'text/html', true);
- $this->_fileTest($filedir."testdata.html", $this->_bucket."/zftestfile3.html", 'text/plain', 'text/plain', true);
- }
- public function testPutNoFile()
- {
- $filedir = dirname(__FILE__)."/_files/";
- try {
- $this->_amazon->putFile($filedir."nosuchfile", $this->_bucket."/zftestfile");
- $this->fail("Expected exception not thrown");
- } catch(Zend_Service_Amazon_S3_Exception $e) {
- $this->assertContains("Cannot read", $e->getMessage());
- $this->assertContains("nosuchfile", $e->getMessage());
- }
- $this->assertFalse($this->_amazon->isObjectAvailable($this->_bucket."/zftestfile"));
- }
- /**
- * @depends testCreateBucket
- * @depends testCreateObject
- */
- public function testCopyObject()
- {
- $this->_amazon->createBucket($this->_bucket);
- $data = "testdata";
- $this->_amazon->putObject($this->_bucket."/zftest", $data);
- $info1 = $this->_amazon->getInfo($this->_bucket."/zftest");
- $this->_amazon->copyObject($this->_bucket."/zftest", $this->_bucket."/zftest2");
- $this->assertTrue($this->_amazon->isObjectAvailable($this->_bucket."/zftest"));
- $this->assertTrue($this->_amazon->isObjectAvailable($this->_bucket."/zftest2"));
- $info2 = $this->_amazon->getInfo($this->_bucket."/zftest2");
- $this->assertEquals($info1['etag'], $info2['etag']);
- }
- /**
- * @depends testCopyObject
- * @depends testRemoveObject
- */
- public function testMoveObject()
- {
- $this->_amazon->createBucket($this->_bucket);
- $data = "testdata";
- $this->_amazon->putObject($this->_bucket."/zftest", $data);
- $info1 = $this->_amazon->getInfo($this->_bucket."/zftest");
- $this->_amazon->moveObject($this->_bucket."/zftest", $this->_bucket."/zftest2");
- $this->assertFalse($this->_amazon->isObjectAvailable($this->_bucket."/zftest"));
- $this->assertTrue($this->_amazon->isObjectAvailable($this->_bucket."/zftest2"));
- $info2 = $this->_amazon->getInfo($this->_bucket."/zftest2");
- $this->assertEquals($info1['etag'], $info2['etag']);
- }
- public function testObjectEncoding()
- {
- $this->_amazon->createBucket($this->_bucket);
- $this->_amazon->putObject($this->_bucket."/this is a 100% test", "testdata");
- $this->assertEquals("testdata", $this->_amazon->getObject($this->_bucket."/this is a 100% test"));
- $this->_amazon->putObject($this->_bucket."/это тоже тест!", "testdata123");
- $this->assertEquals("testdata123", $this->_amazon->getObject($this->_bucket."/это тоже тест!"));
- }
- public function testBadNames()
- {
- try {
- $this->_amazon->createBucket("This is a Very Bad Name");
- $this->fail("Expected exception not thrown");
- } catch(Zend_Service_Amazon_S3_Exception $e) {
- $this->assertContains("contains invalid characters", $e->getMessage());
- }
- try {
- $this->_amazon->isBucketAvailable("This is a Very Bad Name");
- $this->fail("Expected exception not thrown");
- } catch(Zend_Uri_Exception $e) {
- $this->assertContains("not a valid HTTP host", $e->getMessage());
- }
- try {
- $this->_amazon->putObject("This is a Very Bad Name/And It Gets Worse", "testdata");
- $this->fail("Expected exception not thrown");
- } catch(Zend_Service_Amazon_S3_Exception $e) {
- $this->assertContains("contains invalid characters", $e->getMessage());
- }
- try {
- $this->_amazon->getObject("This is a Very Bad Name/And It Gets Worse");
- $this->fail("Expected exception not thrown");
- } catch(Zend_Service_Amazon_S3_Exception $e) {
- $this->assertContains("contains invalid characters", $e->getMessage());
- }
- try {
- $this->_amazon->getInfo("This is a Very Bad Name/And It Gets Worse");
- $this->fail("Expected exception not thrown");
- } catch(Zend_Service_Amazon_S3_Exception $e) {
- $this->assertContains("contains invalid characters", $e->getMessage());
- }
- }
- public function testAcl()
- {
- $this->_amazon->createBucket($this->_bucket);
- $filedir = dirname(__FILE__)."/_files/";
- $this->_amazon->putFile($filedir."testdata.html", $this->_bucket."/zftestfile.html");
- $this->_amazon->putFile($filedir."testdata.html", $this->_bucket."/zftestfile2.html",
- array(Zend_Service_Amazon_S3::S3_ACL_HEADER => Zend_Service_Amazon_S3::S3_ACL_PUBLIC_READ));
- $url = 'http://' . Zend_Service_Amazon_S3::S3_ENDPOINT."/".$this->_bucket."/zftestfile.html";
- $data = @file_get_contents($url);
- $this->assertFalse($data);
- $url = 'http://' . Zend_Service_Amazon_S3::S3_ENDPOINT."/".$this->_bucket."/zftestfile2.html";
- $data = @file_get_contents($url);
- $this->assertEquals(file_get_contents($filedir."testdata.html"), $data);
- }
- /**
- * Test creating bucket with location
- * ZF-6728
- *
- */
- public function testCreateBucketEU()
- {
- $this->_amazon->createBucket($this->_bucketEu, 'EU');
- $this->assertTrue($this->_amazon->isBucketAvailable($this->_bucketEu));
- $list = $this->_amazon->getBuckets();
- $this->assertContains($this->_bucketEu, $list);
- $this->_amazon->cleanBucket($this->_bucketEu);
- $this->_amazon->removeBucket($this->_bucketEu);
- }
- /**
- * Test bucket name with /'s and encoding
- *
- * ZF-6855
- *
- */
- public function testObjectPath()
- {
- $this->_amazon->createBucket($this->_bucket);
- $filedir = dirname(__FILE__)."/_files/";
- $this->_amazon->putFile($filedir."testdata.html", $this->_bucket."/subdir/dir with spaces/zftestfile.html",
- array(Zend_Service_Amazon_S3::S3_ACL_HEADER => Zend_Service_Amazon_S3::S3_ACL_PUBLIC_READ));
- $url = 'http://' . Zend_Service_Amazon_S3::S3_ENDPOINT."/".$this->_bucket."/subdir/dir%20with%20spaces/zftestfile.html";
- $data = @file_get_contents($url);
- $this->assertEquals(file_get_contents($filedir."testdata.html"), $data);
- }
- /**
- * Test that isObjectAvailable() works if object name contains spaces
- *
- * @depends testCreateBucket
- * @depends testObjectPath
- *
- * ZF-10017
- */
- public function testIsObjectAvailableWithSpacesInKey()
- {
- $this->_amazon->createBucket($this->_bucket);
- $filedir = dirname(__FILE__)."/_files/";
- $key = $this->_bucket.'/subdir/another dir with spaces/zftestfile.html';
- $this->_amazon->putFile($filedir."testdata.html", $key);
- $this->assertTrue($this->_amazon->isObjectAvailable($key));
- }
- /**
- * Test creating object with https
- *
- * ZF-7029
- */
- public function testCreateObjectSSL()
- {
- $this->_amazon->setEndpoint('https://s3.amazonaws.com');
- $this->assertEquals('https://s3.amazonaws.com', $this->_amazon->getEndpoint()->getUri());
- $this->_amazon->createBucket($this->_bucket);
- $this->_amazon->putObject($this->_bucket."/zftest", "testdata");
- $this->assertEquals("testdata", $this->_amazon->getObject($this->_bucket."/zftest"));
- }
- /**
- * Test creating bucket with IP
- *
- * ZF-6686
- */
- public function testBucketIPMask()
- {
- try {
- $this->_amazon->createBucket("127.0.0.1");
- $this->fail("Failed to throw expected exception");
- } catch(Zend_Service_Amazon_S3_Exception $e) {
- $this->assertContains("cannot be an IP address", $e->getMessage());
- }
- $this->_amazon->createBucket("123-456-789-123");
- $this->assertTrue($this->_amazon->isBucketAvailable("123-456-789-123"));
- $this->_amazon->removeBucket("123-456-789-123");
- }
- /**
- * @see ZF-7773
- */
- public function testGetObjectsByBucketParams()
- {
- $this->_amazon->createBucket("testgetobjectparams1");
- $this->_amazon->putObject("testgetobjectparams1/zftest1", "testdata");
- $this->_amazon->putObject("testgetobjectparams1/zftest2", "testdata");
- $list = $this->_amazon->getObjectsByBucket("testgetobjectparams1", array('max-keys' => 1));
- $this->assertEquals(1, count($list));
- $this->_amazon->removeObject("testgetobjectparams1/zftest1", "testdata");
- $this->_amazon->removeObject("testgetobjectparams1/zftest2", "testdata");
- $this->_amazon->removeBucket("testgetobjectparams1");
- }
- /**
- * @see ZF-10219
- */
- public function testVersionBucket()
- {
- $this->_amazon->createBucket($this->_bucket);
- $response= $this->_amazon->_makeRequest('GET', $this->_bucket.'/?versions', array('versions'=>''));
- $this->assertNotNull($response,'The response for the ?versions is empty');
- $xml = new SimpleXMLElement($response->getBody());
- $this->assertEquals((string) $xml->Name,$this->_bucket,'The bucket name in XML response is not valid');
- }
- /**
- * @see ZF-11401
- */
- public function testCommonPrefixes()
- {
- $this->_amazon->createBucket($this->_bucket);
- $this->_amazon->putObject($this->_bucket.'/test-folder/test1','test');
- $this->_amazon->putObject($this->_bucket.'/test-folder/test2-folder/','');
- $params= array(
- 'prefix' => 'test-folder/',
- 'delimiter' => '/'
- );
- $response= $this->_amazon->getObjectsAndPrefixesByBucket($this->_bucket,$params);
- $this->assertEquals($response['objects'][0],'test-folder/test1');
- $this->assertEquals($response['prefixes'][0],'test-folder/test2-folder/');
- }
- public function tearDown()
- {
- unset($this->_amazon->debug);
- $this->_amazon->cleanBucket($this->_bucket);
- $this->_amazon->removeBucket($this->_bucket);
- sleep(1);
- }
- }
- /**
- * @category Zend
- * @package Zend_Service_Amazon
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Service
- * @group Zend_Service_Amazon
- * @group Zend_Service_Amazon_S3
- */
- class Zend_Service_Amazon_S3_OnlineTest_Skip extends PHPUnit_Framework_TestCase
- {
- public function setUp()
- {
- $this->markTestSkipped('Zend_Service_Amazon_S3 online tests not enabled with an access key ID in '
- . 'TestConfiguration.php');
- }
- public function testNothing()
- {
- }
- }
|