| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?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_Mobile_Push_Message
- * @subpackage Push
- * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id $
- */
- require_once 'Zend/Mobile/Push/Message/Abstract.php';
- /**
- * @category Zend
- * @package Zend_Mobile_Push_Message
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Mobile
- */
- class Zend_Mobile_Push_Message_AbstractTest extends PHPUnit_Framework_TestCase
- {
- public function setUp()
- {
- $this->msg = new Zend_Mobile_Push_Message_AbstractProxy();
- }
- public function testSetToken()
- {
- $token = 'a-token!';
- $ret = $this->msg->setToken($token);
- $this->assertEquals($this->msg, $ret);
- $this->assertEquals($token, $this->msg->getToken());
- }
- /**
- * @expectedException Zend_Mobile_Push_Message_Exception
- */
- public function testSetTokenThrowsExceptionOnNonStringToken()
- {
- $this->msg->setToken(array('dummy'));
- }
- public function testSetId()
- {
- $id = 'wahooo';
- $ret = $this->msg->setId($id);
- $this->assertEquals($this->msg, $ret);
- $this->assertEquals($id, $this->msg->getId());
- }
- /**
- * @expectedException Zend_Mobile_Push_Message_Exception
- */
- public function testSetIdThrowsExceptionOnNonScalar()
- {
- $this->msg->setId(array('foo'));
- }
- public function testSetOptions()
- {
- $token = 'token';
- $id = 'id';
- $ret = $this->msg->setOptions(array(
- 'id' => $id,
- 'token' => $token
- ));
- $this->assertEquals($this->msg, $ret);
- $this->assertEquals($token, $this->msg->getToken());
- $this->assertEquals($id, $this->msg->getId());
- }
- /**
- * @expectedException Zend_Mobile_Push_Message_Exception
- */
- public function testSetOptionsThrowsExceptionOnMissingMethod()
- {
- $this->msg->setOptions(array(
- 'thisMethodDoesNotExist' => 'value'
- ));
- }
- public function testValidateReturnsTrue()
- {
- $this->assertTrue($this->msg->validate());
- }
- }
- class Zend_Mobile_Push_Message_AbstractProxy extends Zend_Mobile_Push_Message_Abstract
- {
-
- }
|