| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?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-2012 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/Model/Subscription.php';
- /**
- * @category Zend
- * @package Zend_Feed
- * @subpackage UnitTests
- * @group Zend_Feed
- * @group Zend_Feed_Pubsubhubbub_Model
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Feed_Pubsubhubbub_Model_SubscriptionTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @group ZF-10069
- */
- public function testAllOperations()
- {
- $this->_initDb();
- $subscription = new Zend_Feed_Pubsubhubbub_Model_Subscription();
- $id = uniqid();
- $this->assertFalse($subscription->hasSubscription($id));
- $this->assertFalse($subscription->getSubscription($id));
- $this->assertFalse($subscription->deleteSubscription($id));
- $this->assertTrue($subscription->setSubscription(array('id' => $id)));
- $this->assertTrue($subscription->hasSubscription($id));
- $dataSubscription = $subscription->getSubscription($id);
- $this->assertTrue(is_array($dataSubscription));
- $keys = array('id', 'topic_url', 'hub_url',
- 'created_time', 'lease_seconds',
- 'verify_token', 'secret',
- 'expiration_time', 'subscription_state');
- $this->assertSame($keys, array_keys($dataSubscription));
- $this->assertFalse($subscription->setSubscription(array('id' => $id)));
- $this->assertTrue($subscription->deleteSubscription($id));
- }
- public function testImpemetsSubscriptionInterface()
- {
- $reflection = new ReflectionClass('Zend_Feed_Pubsubhubbub_Model_Subscription');
- $this->assertTrue($reflection->implementsInterface('Zend_Feed_Pubsubhubbub_Model_SubscriptionInterface'));
- unset($reflection);
- }
- protected function _initDb()
- {
- if (!extension_loaded('pdo')) {
- $this->markTestSkipped("extension 'PDO' is not loaded");
- }
- if (!in_array('sqlite', PDO::getAvailableDrivers())) {
- $this->markTestSkipped("PDO driver 'sqlite' is not available");
- }
- $db = Zend_Db::factory('Pdo_Sqlite', array('dbname' => ':memory:'));
- Zend_Db_Table::setDefaultAdapter($db);
- $this->_createTable();
- }
- protected function _createTable()
- {
- $sql = "CREATE TABLE subscription ("
- . "id varchar(32) NOT NULL DEFAULT '', "
- . "topic_url varchar(255) DEFAULT NULL, "
- . "hub_url varchar(255) DEFAULT NULL, "
- . "created_time datetime DEFAULT NULL, "
- . "lease_seconds bigint(20) DEFAULT NULL, "
- . "verify_token varchar(255) DEFAULT NULL, "
- . "secret varchar(255) DEFAULT NULL, "
- . "expiration_time datetime DEFAULT NULL, "
- . "subscription_state varchar(12) DEFAULT NULL, "
- . "PRIMARY KEY (id) "
- . ");";
- Zend_Db_Table::getDefaultAdapter()->getConnection()->query($sql);
- }
- }
|