| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- <?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
- * @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.php';
- /**
- * @see Zend_Service_Amazon_ResultSet
- */
- require_once 'Zend/Service/Amazon/ResultSet.php';
- /**
- * @see Zend_Service_Amazon_ResultSet
- */
- require_once 'Zend/Service/Amazon/SimilarProduct.php';
- /**
- * @see Zend_Http_Client_Adapter_Socket
- */
- require_once 'Zend/Http/Client/Adapter/Socket.php';
- /**
- * @see Zend_Http_Client_Adapter_Test
- */
- require_once 'Zend/Http/Client/Adapter/Test.php';
- /**
- * @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
- */
- class Zend_Service_Amazon_OfflineTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Reference to Amazon service consumer object
- *
- * @var Zend_Service_Amazon
- */
- protected $_amazon;
- /**
- * HTTP client adapter for testing
- *
- * @var Zend_Http_Client_Adapter_Test
- */
- protected $_httpClientAdapterTest;
- /**
- * Sets up this test case
- *
- * @return void
- */
- public function setUp()
- {
- $this->_amazon = new Zend_Service_Amazon(constant('TESTS_ZEND_SERVICE_AMAZON_ONLINE_ACCESSKEYID'));
- $this->_httpClientAdapterTest = new Zend_Http_Client_Adapter_Test();
- }
- /**
- * Ensures that __construct() throws an exception when given an invalid country code
- *
- * @return void
- */
- public function testConstructExceptionCountryCodeInvalid()
- {
- try {
- $amazon = new Zend_Service_Amazon(constant('TESTS_ZEND_SERVICE_AMAZON_ONLINE_ACCESSKEYID'), 'oops');
- $this->fail('Expected Zend_Service_Exception not thrown');
- } catch (Zend_Service_Exception $e) {
- $this->assertContains('Unknown country code', $e->getMessage());
- }
- }
- /**
- * @group ZF-2056
- */
- public function testMozardSearchFromFile()
- {
- $xml = file_get_contents(dirname(__FILE__)."/_files/mozart_result.xml");
- $dom = new DOMDocument();
- $dom->loadXML($xml);
- $mozartTracks = array(
- 'B00005A8JZ' => '29',
- 'B0000058HV' => '25',
- 'B000BLI3K2' => '500',
- 'B00004X0QF' => '9',
- 'B000004194' => '19',
- 'B00000I9M0' => '9',
- 'B000004166' => '20',
- 'B00002DEH1' => '58',
- 'B0000041EV' => '12',
- 'B00004SA87' => '42',
- );
- $result = new Zend_Service_Amazon_ResultSet($dom);
- foreach($result AS $item) {
- $trackCount = $mozartTracks[$item->ASIN];
- $this->assertEquals($trackCount, count($item->Tracks));
- }
- }
- /**
- * @group ZF-2749
- */
- public function testSimilarProductConstructorMissingAttributeDoesNotThrowNotice()
- {
- $dom = new DOMDocument();
- $asin = $dom->createElement("ASIN", "TEST");
- $product = $dom->createElement("product");
- $product->appendChild($asin);
- $similarproduct = new Zend_Service_Amazon_SimilarProduct($product);
- }
- /**
- * @group ZF-7251
- */
- public function testFullOffersFromFile()
- {
- $xml = file_get_contents(dirname(__FILE__)."/_files/offers_with_names.xml");
- $dom = new DOMDocument();
- $dom->loadXML($xml);
- $dataExpected = array(
- '0439774098' => array(
- 'offers' => array(
- 'A79CLRHOQ3NF4' => array(
- 'name' => 'PLEXSUPPLY',
- 'price' => '5153'
- ),
- 'A2K9NS8DSVOE2W' => array(
- 'name' => 'nangsuer',
- 'price' => '5153'
- ),
- 'A31EVTLIC13ORD' => array(
- 'name' => 'Wizard of Math',
- 'price' => '7599'
- ),
- 'A3SKJE188CW5XG' => array(
- 'name' => 'ReStockIt',
- 'price' => '5299'
- ),
- 'A1729W3053T57N' => array(
- 'name' => 'The Price Pros',
- 'price' => '5487'
- ),
- 'A29PHU0KPCGV8S' => array(
- 'name' => 'TheFactoryDepot',
- 'price' => '5821'
- ),
- 'AIHRRFGW11GJ8' => array(
- 'name' => 'Design Tec Office Products',
- 'price' => '5987'
- ),
- 'A27OK403WRHSGI' => array(
- 'name' => 'Kaplan Early Learning Company',
- 'price' => '7595'
- ),
- 'A25DVOZOPBFMAN' => array(
- 'name' => 'Deerso',
- 'price' => '7599'
- ),
- 'A6IFKC796Y64H' => array(
- 'name' => 'The Education Station Inc',
- 'price' => '7599'
- ),
- ),
- ),
- 'B00000194U' => array(
- 'offers' => array(
- 'A3UOG6723G7MG0' => array(
- 'name' => 'Efunctional',
- 'price' => '480'
- ),
- 'A3SNNXCKUIW1O2' => array(
- 'name' => 'Universal Mania',
- 'price' => '531'
- ),
- 'A18ACDNYOEMMOL' => array(
- 'name' => 'ApexSuppliers',
- 'price' => '589'
- ),
- 'A2NYACAJP9I1IY' => array(
- 'name' => 'GizmosForLife',
- 'price' => '608'
- ),
- 'A1729W3053T57N' => array(
- 'name' => 'The Price Pros',
- 'price' => '628'
- ),
- 'A29PHU0KPCGV8S' => array(
- 'name' => 'TheFactoryDepot',
- 'price' => '638'
- ),
- 'A3Q3IAIX1CLBMZ' => array(
- 'name' => 'ElectroGalaxy',
- 'price' => '697'
- ),
- 'A1PC5XI7QQLW5G' => array(
- 'name' => 'Long Trading Company',
- 'price' => '860'
- ),
- 'A2R0FX412W1BDT' => array(
- 'name' => 'Beach Audio',
- 'price' => '896'
- ),
- 'AKJJGJ0JKT8F1' => array(
- 'name' => 'Buy.com',
- 'price' => '899'
- ),
- ),
- ),
- );
- $result = new Zend_Service_Amazon_ResultSet($dom);
- foreach($result AS $item) {
- $data = $dataExpected[$item->ASIN];
- foreach($item->Offers->Offers as $offer) {
- $this->assertEquals($data['offers'][$offer->MerchantId]['name'], $offer->MerchantName);
- $this->assertEquals($data['offers'][$offer->MerchantId]['price'], $offer->Price);
- }
- }
- }
- public function dataSignatureEncryption()
- {
- return array(
- array(
- 'http://webservices.amazon.com',
- array(
- 'Service' => 'AWSECommerceService',
- 'AWSAccessKeyId' => '00000000000000000000',
- 'Operation' => 'ItemLookup',
- 'ItemId' => '0679722769',
- 'ResponseGroup' => 'ItemAttributes,Offers,Images,Reviews',
- 'Version' => '2009-01-06',
- 'Timestamp' => '2009-01-01T12:00:00Z',
- ),
- "GET\n".
- "webservices.amazon.com\n".
- "/onca/xml\n".
- "AWSAccessKeyId=00000000000000000000&ItemId=0679722769&Operation=I".
- "temLookup&ResponseGroup=ItemAttributes%2COffers%2CImages%2CReview".
- "s&Service=AWSECommerceService&Timestamp=2009-01-01T12%3A00%3A00Z&".
- "Version=2009-01-06",
- 'Nace%2BU3Az4OhN7tISqgs1vdLBHBEijWcBeCqL5xN9xg%3D'
- ),
- array(
- 'http://ecs.amazonaws.co.uk',
- array(
- 'Service' => 'AWSECommerceService',
- 'AWSAccessKeyId' => '00000000000000000000',
- 'Operation' => 'ItemSearch',
- 'Actor' => 'Johnny Depp',
- 'ResponseGroup' => 'ItemAttributes,Offers,Images,Reviews,Variations',
- 'Version' => '2009-01-01',
- 'SearchIndex' => 'DVD',
- 'Sort' => 'salesrank',
- 'AssociateTag' => 'mytag-20',
- 'Timestamp' => '2009-01-01T12:00:00Z',
- ),
- "GET\n".
- "ecs.amazonaws.co.uk\n".
- "/onca/xml\n".
- "AWSAccessKeyId=00000000000000000000&Actor=Johnny%20Depp&Associate".
- "Tag=mytag-20&Operation=ItemSearch&ResponseGroup=ItemAttributes%2C".
- "Offers%2CImages%2CReviews%2CVariations&SearchIndex=DVD&Service=AW".
- "SECommerceService&Sort=salesrank&Timestamp=2009-01-01T12%3A00%3A0".
- "0Z&Version=2009-01-01",
- 'TuM6E5L9u%2FuNqOX09ET03BXVmHLVFfJIna5cxXuHxiU%3D',
- ),
- );
- }
- /**
- * Checking if signature Encryption due on August 15th for Amazon Webservice API is working correctly.
- *
- * @dataProvider dataSignatureEncryption
- * @group ZF-7033
- */
- public function testSignatureEncryption($baseUri, $params, $expectedStringToSign, $expectedSignature)
- {
- $this->assertEquals(
- $expectedStringToSign,
- Zend_Service_Amazon::buildRawSignature($baseUri, $params)
- );
- $this->assertEquals(
- $expectedSignature,
- rawurlencode(Zend_Service_Amazon::computeSignature(
- $baseUri, '1234567890', $params
- ))
- );
- }
- /**
- * Testing if Amazon service component can handle return values where the
- * item-list is not empty
- *
- * @group ZF-9547
- */
- public function testAmazonComponentHandlesValidBookResults()
- {
- $xml = file_get_contents(dirname(__FILE__)."/_files/amazon-response-valid.xml");
- $dom = new DOMDocument();
- $dom->loadXML($xml);
- $result = new Zend_Service_Amazon_ResultSet($dom);
- $currentItem = null;
- try {
- $currentItem = $result->current();
- } catch (Zend_Service_Amazon_Exception $e) {
- $this->fail('Unexpected exception was triggered');
- }
- $this->assertTrue($currentItem instanceof Zend_Service_Amazon_Item);
- $this->assertEquals('0754512673', $currentItem->ASIN);
- }
- /**
- * Testing if Amazon service component can handle return values where the
- * item-list is empty (no results found)
- *
- * @group ZF-9547
- */
- public function testAmazonComponentHandlesEmptyBookResults()
- {
- $xml = file_get_contents(dirname(__FILE__)."/_files/amazon-response-invalid.xml");
- $dom = new DOMDocument();
- $dom->loadXML($xml);
- $result = new Zend_Service_Amazon_ResultSet($dom);
- try {
- $result->current();
- $this->fail('Expected exception was not triggered');
- } catch (Zend_Service_Amazon_Exception $e) {
- return;
- }
- }
- }
|