123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- /**
- * Copyright 2014 Fabian Grutschus. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
- * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * The views and conclusions contained in the software and documentation are those
- * of the authors and should not be interpreted as representing official policies,
- * either expressed or implied, of the copyright holders.
- *
- * @author Fabian Grutschus <f.grutschus@lubyte.de>
- * @copyright 2014 Fabian Grutschus. All rights reserved.
- * @license BSD
- * @link http://github.com/fabiang/xmpp
- */
- namespace Fabiang\Xmpp\Protocol;
- use PHPUnit\Framework\TestCase;
- use Fabiang\Xmpp\Options;
- use Fabiang\Xmpp\Connection\Test;
- /**
- * Generated by PHPUnit_SkeletonGenerator 1.2.1 on 2014-01-17 at 09:54:58.
- *
- * @coversDefaultClass Fabiang\Xmpp\Protocol\DefaultImplementation
- */
- class DefaultImplementationTest extends TestCase
- {
- /**
- * @var DefaultImplementation
- */
- protected $object;
- /**
- * Sets up the fixture, for example, opens a network connection.
- * This method is called before a test is executed.
- *
- * @return void
- */
- protected function setUp()
- {
- $this->object = new DefaultImplementation;
- }
- /**
- * Test registering implementation.
- *
- * @covers ::register
- * @covers ::registerListener
- * @uses Fabiang\Xmpp\Protocol\DefaultImplementation::getOptions
- * @uses Fabiang\Xmpp\Protocol\DefaultImplementation::setOptions
- * @uses Fabiang\Xmpp\Protocol\DefaultImplementation::getEventManager
- * @uses Fabiang\Xmpp\Protocol\DefaultImplementation::setEventManager
- * @uses Fabiang\Xmpp\EventListener\Stream\StreamError
- * @uses Fabiang\Xmpp\EventListener\Stream\Authentication
- * @uses Fabiang\Xmpp\EventListener\AbstractEventListener
- * @uses Fabiang\Xmpp\Connection\AbstractConnection
- * @uses Fabiang\Xmpp\EventListener\Stream\Bind
- * @uses Fabiang\Xmpp\EventListener\Stream\Roster
- * @uses Fabiang\Xmpp\EventListener\Stream\StartTls
- * @uses Fabiang\Xmpp\Options
- * @uses Fabiang\Xmpp\Event\EventManager
- * @uses Fabiang\Xmpp\EventListener\Stream\Session
- * @uses Fabiang\Xmpp\EventListener\Stream\Stream
- * @uses Fabiang\Xmpp\Stream\XMLStream
- * @return void
- */
- public function testRegister()
- {
- $connection = new Test;
- $options = new Options();
- $options->setConnection($connection);
- $this->object->setOptions($options);
- $eventManager = $this->object->getEventManager();
- $this->object->register();
- foreach ($connection->getListeners() as $listener) {
- $this->assertSame($eventManager, $listener->getEventManager());
- $this->assertSame($connection, $listener->getOptions()->getConnection());
- }
- }
- /**
- * Test setting and getting options.
- *
- * @covers ::getOptions
- * @covers ::setOptions
- * @return void
- */
- public function testSetAndGetOptions()
- {
- $options = $this->getMockBuilder('Fabiang\Xmpp\Options')
- ->disableOriginalConstructor()
- ->getMock();
- $this->assertSame($options, $this->object->setOptions($options)->getOptions());
- }
- /**
- * Test setting and getting event manager.
- *
- * @covers ::getEventManager
- * @covers ::setEventManager
- * @uses Fabiang\Xmpp\Event\EventManager
- * @return void
- */
- public function testSetAndGetEventManager()
- {
- $this->assertInstanceOf('\Fabiang\Xmpp\Event\EventManager', $this->object->getEventManager());
- $eventManager = $this->getMockBuilder('\Fabiang\Xmpp\Event\EventManager')
- ->disableOriginalConstructor()
- ->getMock();
- $this->assertSame($eventManager, $this->object->setEventManager($eventManager)->getEventManager());
- }
- }
|