| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- <?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 UnitTests
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- require_once 'Zend/Feed/Pubsubhubbub/Subscriber.php';
- require_once 'Zend/Feed/Pubsubhubbub/Model/Subscription.php';
- require_once 'Zend/Db/Table/Abstract.php';
- /**
- * @category Zend
- * @package Zend_Feed
- * @subpackage UnitTests
- * @group Zend_Feed
- * @group Zend_Feed_Subsubhubbub
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Feed_Pubsubhubbub_SubscriberTest extends PHPUnit_Framework_TestCase
- {
- protected $_subscriber = null;
- protected $_adapter = null;
- protected $_tableGateway = null;
- public function setUp()
- {
- $client = new Zend_Http_Client;
- Zend_Feed_Pubsubhubbub::setHttpClient($client);
- $this->_subscriber = new Zend_Feed_Pubsubhubbub_Subscriber;
- $this->_adapter = $this->_getCleanMock(
- 'Zend_Db_Adapter_Abstract'
- );
- $this->_tableGateway = $this->_getCleanMock(
- 'Zend_Db_Table_Abstract'
- );
- $this->_tableGateway->expects($this->any())->method('getAdapter')
- ->will($this->returnValue($this->_adapter));
- }
- public function testAddsHubServerUrl()
- {
- $this->_subscriber->addHubUrl('http://www.example.com/hub');
- $this->assertEquals(array('http://www.example.com/hub'), $this->_subscriber->getHubUrls());
- }
- public function testAddsHubServerUrlsFromArray()
- {
- $this->_subscriber->addHubUrls(array(
- 'http://www.example.com/hub', 'http://www.example.com/hub2'
- ));
- $this->assertEquals(array(
- 'http://www.example.com/hub', 'http://www.example.com/hub2'
- ), $this->_subscriber->getHubUrls());
- }
- public function testAddsHubServerUrlsFromArrayUsingSetConfig()
- {
- $this->_subscriber->setConfig(array('hubUrls' => array(
- 'http://www.example.com/hub', 'http://www.example.com/hub2'
- )));
- $this->assertEquals(array(
- 'http://www.example.com/hub', 'http://www.example.com/hub2'
- ), $this->_subscriber->getHubUrls());
- }
- public function testRemovesHubServerUrl()
- {
- $this->_subscriber->addHubUrls(array(
- 'http://www.example.com/hub', 'http://www.example.com/hub2'
- ));
- $this->_subscriber->removeHubUrl('http://www.example.com/hub');
- $this->assertEquals(array(
- 1 => 'http://www.example.com/hub2'
- ), $this->_subscriber->getHubUrls());
- }
- public function testRetrievesUniqueHubServerUrlsOnly()
- {
- $this->_subscriber->addHubUrls(array(
- 'http://www.example.com/hub', 'http://www.example.com/hub2',
- 'http://www.example.com/hub'
- ));
- $this->assertEquals(array(
- 'http://www.example.com/hub', 'http://www.example.com/hub2'
- ), $this->_subscriber->getHubUrls());
- }
- public function testThrowsExceptionOnSettingEmptyHubServerUrl()
- {
- try {
- $this->_subscriber->addHubUrl('');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingNonStringHubServerUrl()
- {
- try {
- $this->_subscriber->addHubUrl(123);
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingInvalidHubServerUrl()
- {
- try {
- $this->_subscriber->addHubUrl('http://');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testAddsParameter()
- {
- $this->_subscriber->setParameter('foo', 'bar');
- $this->assertEquals(array('foo'=>'bar'), $this->_subscriber->getParameters());
- }
- public function testAddsParametersFromArray()
- {
- $this->_subscriber->setParameters(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ));
- $this->assertEquals(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ), $this->_subscriber->getParameters());
- }
- public function testAddsParametersFromArrayInSingleMethod()
- {
- $this->_subscriber->setParameter(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ));
- $this->assertEquals(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ), $this->_subscriber->getParameters());
- }
- public function testAddsParametersFromArrayUsingSetConfig()
- {
- $this->_subscriber->setConfig(array('parameters' => array(
- 'foo' => 'bar', 'boo' => 'baz'
- )));
- $this->assertEquals(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ), $this->_subscriber->getParameters());
- }
- public function testRemovesParameter()
- {
- $this->_subscriber->setParameters(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ));
- $this->_subscriber->removeParameter('boo');
- $this->assertEquals(array(
- 'foo' => 'bar'
- ), $this->_subscriber->getParameters());
- }
- public function testRemovesParameterIfSetToNull()
- {
- $this->_subscriber->setParameters(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ));
- $this->_subscriber->setParameter('boo', null);
- $this->assertEquals(array(
- 'foo' => 'bar'
- ), $this->_subscriber->getParameters());
- }
- public function testCanSetTopicUrl()
- {
- $this->_subscriber->setTopicUrl('http://www.example.com/topic');
- $this->assertEquals('http://www.example.com/topic', $this->_subscriber->getTopicUrl());
- }
- public function testThrowsExceptionOnSettingEmptyTopicUrl()
- {
- try {
- $this->_subscriber->setTopicUrl('');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingNonStringTopicUrl()
- {
- try {
- $this->_subscriber->setTopicUrl(123);
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingInvalidTopicUrl()
- {
- try {
- $this->_subscriber->setTopicUrl('http://');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnMissingTopicUrl()
- {
- try {
- $this->_subscriber->getTopicUrl();
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testCanSetCallbackUrl()
- {
- $this->_subscriber->setCallbackUrl('http://www.example.com/callback');
- $this->assertEquals('http://www.example.com/callback', $this->_subscriber->getCallbackUrl());
- }
- public function testThrowsExceptionOnSettingEmptyCallbackUrl()
- {
- try {
- $this->_subscriber->setCallbackUrl('');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingNonStringCallbackUrl()
- {
- try {
- $this->_subscriber->setCallbackUrl(123);
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingInvalidCallbackUrl()
- {
- try {
- $this->_subscriber->setCallbackUrl('http://');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnMissingCallbackUrl()
- {
- try {
- $this->_subscriber->getCallbackUrl();
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testCanSetLeaseSeconds()
- {
- $this->_subscriber->setLeaseSeconds('10000');
- $this->assertEquals(10000, $this->_subscriber->getLeaseSeconds());
- }
- public function testThrowsExceptionOnSettingZeroAsLeaseSeconds()
- {
- try {
- $this->_subscriber->setLeaseSeconds(0);
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingLessThanZeroAsLeaseSeconds()
- {
- try {
- $this->_subscriber->setLeaseSeconds(-1);
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingAnyScalarTypeCastToAZeroOrLessIntegerAsLeaseSeconds()
- {
- try {
- $this->_subscriber->setLeaseSeconds('0aa');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testCanSetPreferredVerificationMode()
- {
- $this->_subscriber->setPreferredVerificationMode(Zend_Feed_Pubsubhubbub::VERIFICATION_MODE_ASYNC);
- $this->assertEquals(Zend_Feed_Pubsubhubbub::VERIFICATION_MODE_ASYNC, $this->_subscriber->getPreferredVerificationMode());
- }
- public function testSetsPreferredVerificationModeThrowsExceptionOnSettingBadMode()
- {
- try {
- $this->_subscriber->setPreferredVerificationMode('abc');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testPreferredVerificationModeDefaultsToSync()
- {
- $this->assertEquals(Zend_Feed_Pubsubhubbub::VERIFICATION_MODE_SYNC, $this->_subscriber->getPreferredVerificationMode());
- }
- public function testCanSetStorageImplementation()
- {
- $storage = new Zend_Feed_Pubsubhubbub_Model_Subscription($this->_tableGateway);
- $this->_subscriber->setStorage($storage);
- $this->assertThat($this->_subscriber->getStorage(), $this->identicalTo($storage));
- }
- /**
- * @expectedException Zend_Feed_Pubsubhubbub_Exception
- */
- public function testGetStorageThrowsExceptionIfNoneSet()
- {
- $this->_subscriber->getStorage();
- }
- protected function _getCleanMock($className) {
- $class = new ReflectionClass($className);
- $methods = $class->getMethods();
- $stubMethods = array();
- foreach ($methods as $method) {
- if ($method->isPublic() || ($method->isProtected()
- && $method->isAbstract())) {
- $stubMethods[] = $method->getName();
- }
- }
- $mocked = $this->getMock(
- $className,
- $stubMethods,
- array(),
- $className . '_PubsubSubscriberMock_' . uniqid(),
- false
- );
- return $mocked;
- }
- }
|