| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- <?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-2015 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/Publisher.php';
- /**
- * @category Zend
- * @package Zend_Feed
- * @subpackage UnitTests
- * @group Zend_Feed
- * @group Zend_Feed_Subsubhubbub
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Feed_Pubsubhubbub_PublisherTest extends PHPUnit_Framework_TestCase
- {
- protected $_publisher = null;
- public function setUp()
- {
- $client = new Zend_Http_Client;
- Zend_Feed_Pubsubhubbub::setHttpClient($client);
- $this->_publisher = new Zend_Feed_Pubsubhubbub_Publisher;
- }
- public function testAddsHubServerUrl()
- {
- $this->_publisher->addHubUrl('http://www.example.com/hub');
- $this->assertEquals(array('http://www.example.com/hub'), $this->_publisher->getHubUrls());
- }
- public function testAddsHubServerUrlsFromArray()
- {
- $this->_publisher->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->_publisher->getHubUrls());
- }
- public function testAddsHubServerUrlsFromArrayUsingSetConfig()
- {
- $this->_publisher->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->_publisher->getHubUrls());
- }
- public function testRemovesHubServerUrl()
- {
- $this->_publisher->addHubUrls(array(
- 'http://www.example.com/hub', 'http://www.example.com/hub2'
- ));
- $this->_publisher->removeHubUrl('http://www.example.com/hub');
- $this->assertEquals(array(
- 1 => 'http://www.example.com/hub2'
- ), $this->_publisher->getHubUrls());
- }
- public function testRetrievesUniqueHubServerUrlsOnly()
- {
- $this->_publisher->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->_publisher->getHubUrls());
- }
- public function testThrowsExceptionOnSettingEmptyHubServerUrl()
- {
- try {
- $this->_publisher->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->_publisher->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->_publisher->addHubUrl('http://');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testAddsUpdatedTopicUrl()
- {
- $this->_publisher->addUpdatedTopicUrl('http://www.example.com/topic');
- $this->assertEquals(array('http://www.example.com/topic'), $this->_publisher->getUpdatedTopicUrls());
- }
- public function testAddsUpdatedTopicUrlsFromArray()
- {
- $this->_publisher->addUpdatedTopicUrls(array(
- 'http://www.example.com/topic', 'http://www.example.com/topic2'
- ));
- $this->assertEquals(array(
- 'http://www.example.com/topic', 'http://www.example.com/topic2'
- ), $this->_publisher->getUpdatedTopicUrls());
- }
- public function testAddsUpdatedTopicUrlsFromArrayUsingSetConfig()
- {
- $this->_publisher->setConfig(array('updatedTopicUrls' => array(
- 'http://www.example.com/topic', 'http://www.example.com/topic2'
- )));
- $this->assertEquals(array(
- 'http://www.example.com/topic', 'http://www.example.com/topic2'
- ), $this->_publisher->getUpdatedTopicUrls());
- }
- public function testRemovesUpdatedTopicUrl()
- {
- $this->_publisher->addUpdatedTopicUrls(array(
- 'http://www.example.com/topic', 'http://www.example.com/topic2'
- ));
- $this->_publisher->removeUpdatedTopicUrl('http://www.example.com/topic');
- $this->assertEquals(array(
- 1 => 'http://www.example.com/topic2'
- ), $this->_publisher->getUpdatedTopicUrls());
- }
- public function testRetrievesUniqueUpdatedTopicUrlsOnly()
- {
- $this->_publisher->addUpdatedTopicUrls(array(
- 'http://www.example.com/topic', 'http://www.example.com/topic2',
- 'http://www.example.com/topic'
- ));
- $this->assertEquals(array(
- 'http://www.example.com/topic', 'http://www.example.com/topic2'
- ), $this->_publisher->getUpdatedTopicUrls());
- }
- public function testThrowsExceptionOnSettingEmptyUpdatedTopicUrl()
- {
- try {
- $this->_publisher->addUpdatedTopicUrl('');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingNonStringUpdatedTopicUrl()
- {
- try {
- $this->_publisher->addUpdatedTopicUrl(123);
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testThrowsExceptionOnSettingInvalidUpdatedTopicUrl()
- {
- try {
- $this->_publisher->addUpdatedTopicUrl('http://');
- $this->fail('Should not fail as an Exception would be raised and caught');
- } catch (Zend_Feed_Pubsubhubbub_Exception $e) {}
- }
- public function testAddsParameter()
- {
- $this->_publisher->setParameter('foo', 'bar');
- $this->assertEquals(array('foo'=>'bar'), $this->_publisher->getParameters());
- }
- public function testAddsParametersFromArray()
- {
- $this->_publisher->setParameters(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ));
- $this->assertEquals(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ), $this->_publisher->getParameters());
- }
- public function testAddsParametersFromArrayInSingleMethod()
- {
- $this->_publisher->setParameter(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ));
- $this->assertEquals(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ), $this->_publisher->getParameters());
- }
- public function testAddsParametersFromArrayUsingSetConfig()
- {
- $this->_publisher->setConfig(array('parameters' => array(
- 'foo' => 'bar', 'boo' => 'baz'
- )));
- $this->assertEquals(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ), $this->_publisher->getParameters());
- }
- public function testRemovesParameter()
- {
- $this->_publisher->setParameters(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ));
- $this->_publisher->removeParameter('boo');
- $this->assertEquals(array(
- 'foo' => 'bar'
- ), $this->_publisher->getParameters());
- }
- public function testRemovesParameterIfSetToNull()
- {
- $this->_publisher->setParameters(array(
- 'foo' => 'bar', 'boo' => 'baz'
- ));
- $this->_publisher->setParameter('boo', null);
- $this->assertEquals(array(
- 'foo' => 'bar'
- ), $this->_publisher->getParameters());
- }
- public function testNotifiesHubWithCorrectParameters()
- {
- Zend_Feed_Pubsubhubbub::setHttpClient(new Zend_Feed_Pubsubhubbub_PublisherTest_ClientSuccess);
- $client = Zend_Feed_Pubsubhubbub::getHttpClient();
- $this->_publisher->addHubUrl('http://www.example.com/hub');
- $this->_publisher->addUpdatedTopicUrl('http://www.example.com/topic');
- $this->_publisher->setParameter('foo', 'bar');
- $this->_publisher->notifyAll();
- $this->assertEquals('hub.mode=publish&hub.url=http%3A%2F%2Fwww.example.com%2Ftopic&foo=bar', $client->getBody());
- }
- public function testNotifiesHubWithCorrectParametersAndMultipleTopics()
- {
- Zend_Feed_Pubsubhubbub::setHttpClient(new Zend_Feed_Pubsubhubbub_PublisherTest_ClientSuccess);
- $client = Zend_Feed_Pubsubhubbub::getHttpClient();
- $this->_publisher->addHubUrl('http://www.example.com/hub');
- $this->_publisher->addUpdatedTopicUrl('http://www.example.com/topic');
- $this->_publisher->addUpdatedTopicUrl('http://www.example.com/topic2');
- $this->_publisher->notifyAll();
- $this->assertEquals('hub.mode=publish&hub.url=http%3A%2F%2Fwww.example.com%2Ftopic&hub.url=http%3A%2F%2Fwww.example.com%2Ftopic2', $client->getBody());
- }
- public function testNotifiesHubAndReportsSuccess()
- {
- Zend_Feed_Pubsubhubbub::setHttpClient(new Zend_Feed_Pubsubhubbub_PublisherTest_ClientSuccess);
- $client = Zend_Feed_Pubsubhubbub::getHttpClient();
- $this->_publisher->addHubUrl('http://www.example.com/hub');
- $this->_publisher->addUpdatedTopicUrl('http://www.example.com/topic');
- $this->_publisher->setParameter('foo', 'bar');
- $this->_publisher->notifyAll();
- $this->assertTrue($this->_publisher->isSuccess());
- }
- public function testNotifiesHubAndReportsFail()
- {
- Zend_Feed_Pubsubhubbub::setHttpClient(new Zend_Feed_Pubsubhubbub_PublisherTest_ClientFail);
- $client = Zend_Feed_Pubsubhubbub::getHttpClient();
- $this->_publisher->addHubUrl('http://www.example.com/hub');
- $this->_publisher->addUpdatedTopicUrl('http://www.example.com/topic');
- $this->_publisher->setParameter('foo', 'bar');
- $this->_publisher->notifyAll();
- $this->assertFalse($this->_publisher->isSuccess());
- }
- }
- // Some stubs for what Http_Client would be doing
- class Zend_Feed_Pubsubhubbub_PublisherTest_ClientSuccess extends Zend_Http_Client
- {
- public function request($method = null) {
- $response = new Zend_Feed_Pubsubhubbub_PublisherTest_ResponseSuccess;
- return $response;
- }
- public function getBody(){return $this->_prepareBody();}
- }
- class Zend_Feed_Pubsubhubbub_PublisherTest_ClientFail extends Zend_Http_Client
- {
- public function request($method = null) {
- $response = new Zend_Feed_Pubsubhubbub_PublisherTest_ResponseFail;
- return $response;
- }
- public function getBody(){return $this->_prepareBody();}
- }
- class Zend_Feed_Pubsubhubbub_PublisherTest_ResponseSuccess
- {
- public function getStatus(){return 204;}
- }
- class Zend_Feed_Pubsubhubbub_PublisherTest_ResponseFail
- {
- public function getStatus(){return 404;}
- }
|