123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- <?php
- /**
- * Hoa
- *
- *
- * @license
- *
- * New BSD License
- *
- * Copyright © 2007-2017, Hoa community. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * 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.
- * * Neither the name of the Hoa nor the names of its contributors may be
- * used to endorse or promote products derived from this software without
- * specific prior written permission.
- *
- * 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 HOLDERS AND 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.
- */
- namespace Hoa\Event\Test\Unit;
- use Hoa\Event as LUT;
- use Hoa\Event\Event as SUT;
- use Hoa\Test;
- /**
- * Class \Hoa\Event\Test\Unit\Event.
- *
- * Test suite of the event class.
- *
- * @copyright Copyright © 2007-2017 Hoa community
- * @license New BSD License
- */
- class Event extends Test\Unit\Suite
- {
- public function case_multiton()
- {
- $this
- ->given($eventId = 'hoa://Event/Test')
- ->when($result = SUT::getEvent($eventId))
- ->then
- ->object($result)
- ->isInstanceOf('Hoa\Event\Event')
- ->object(SUT::getEvent($eventId))
- ->isIdenticalTo($result);
- }
- public function case_register_source_instance()
- {
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = new \Mock\Hoa\Event\Source()
- )
- ->when($result = SUT::register($eventId, $source))
- ->then
- ->variable($result)
- ->isNull()
- ->boolean(SUT::eventExists($eventId))
- ->isTrue();
- }
- public function case_register_source_name()
- {
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = 'Mock\Hoa\Event\Source'
- )
- ->when($result = SUT::register($eventId, $source))
- ->then
- ->variable($result)
- ->isNull()
- ->boolean(SUT::eventExists($eventId))
- ->isTrue();
- }
- public function case_register_redeclare()
- {
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = new \Mock\Hoa\Event\Source(),
- SUT::register($eventId, $source)
- )
- ->exception(function () use ($eventId, $source) {
- SUT::register($eventId, $source);
- })
- ->isInstanceOf('Hoa\Event\Exception');
- }
- public function case_register_not_a_source_instance()
- {
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = new \StdClass()
- )
- ->exception(function () use ($eventId, $source) {
- $result = SUT::register($eventId, $source);
- })
- ->isInstanceOf('Hoa\Event\Exception');
- }
- public function case_register_not_a_source_name()
- {
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = 'StdClass'
- )
- ->exception(function () use ($eventId, $source) {
- $result = SUT::register($eventId, $source);
- })
- ->isInstanceOf('Hoa\Event\Exception');
- }
- public function case_unregister()
- {
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = new \Mock\Hoa\Event\Source(),
- SUT::register($eventId, $source)
- )
- ->when($result = SUT::unregister($eventId))
- ->then
- ->boolean(SUT::eventExists($eventId))
- ->isFalse();
- }
- public function case_unregister_hard()
- {
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = new \Mock\Hoa\Event\Source(),
- SUT::register($eventId, $source),
- $event = SUT::getEvent($eventId)
- )
- ->when($result = SUT::unregister($eventId, true))
- ->then
- ->boolean(SUT::eventExists($eventId))
- ->isFalse()
- ->object(SUT::getEvent($eventId))
- ->isNotIdenticalTo($event);
- }
- public function case_unregister_not_registered()
- {
- $this
- ->given($eventId = 'hoa://Event/Test')
- ->when($result = SUT::unregister($eventId))
- ->then
- ->variable($result)
- ->isNull();
- }
- public function case_attach()
- {
- $this
- ->given(
- $event = SUT::getEvent('hoa://Event/Test'),
- $callable = function () { }
- )
- ->when($result = $event->attach($callable))
- ->then
- ->object($result)
- ->isIdenticalTo($event)
- ->boolean($event->isListened())
- ->isTrue();
- }
- public function case_detach()
- {
- $this
- ->given(
- $event = SUT::getEvent('hoa://Event/Test'),
- $callable = function () { },
- $event->attach($callable)
- )
- ->when($result = $event->detach($callable))
- ->then
- ->object($result)
- ->isIdenticalTo($event)
- ->boolean($event->isListened())
- ->isFalse();
- }
- public function case_detach_unattached()
- {
- $this
- ->given(
- $event = SUT::getEvent('hoa://Event/Test'),
- $callable = function () { }
- )
- ->when($result = $event->detach($callable))
- ->then
- ->object($result)
- ->isIdenticalTo($event)
- ->boolean($event->isListened())
- ->isFalse();
- }
- public function case_is_listened()
- {
- $this
- ->given($event = SUT::getEvent('hoa://Event/Test'))
- ->when($result = $event->isListened())
- ->then
- ->boolean($event->isListened())
- ->isFalse();
- }
- public function case_notify()
- {
- $self = $this;
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = new \Mock\Hoa\Event\Source(),
- $bucket = new LUT\Bucket(),
- SUT::register($eventId, $source),
- SUT::getEvent($eventId)->attach(
- function (LUT\Bucket $receivedBucket) use ($self, $source, $bucket, &$called) {
- $called = true;
- $this
- ->object($receivedBucket)
- ->isIdenticalTo($bucket)
- ->object($receivedBucket->getSource())
- ->isIdenticalTo($source);
- }
- )
- )
- ->when($result = SUT::notify($eventId, $source, $bucket))
- ->then
- ->variable($result)
- ->isNull()
- ->boolean($called)
- ->isTrue();
- }
- public function case_notify_unregistered_event_id()
- {
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = new \Mock\Hoa\Event\Source(),
- $data = new LUT\Bucket()
- )
- ->exception(function () use ($eventId, $source, $data) {
- SUT::notify($eventId, $source, $data);
- })
- ->isInstanceOf('Hoa\Event\Exception');
- }
- public function case_event_exists()
- {
- $this
- ->given(
- $eventId = 'hoa://Event/Test',
- $source = new \Mock\Hoa\Event\Source(),
- SUT::register($eventId, $source)
- )
- ->when($result = SUT::eventExists($eventId))
- ->then
- ->boolean($result)
- ->isTrue();
- }
- public function case_event_not_exists()
- {
- $this
- ->given($eventId = 'hoa://Event/Test')
- ->when($result = SUT::eventExists($eventId))
- ->then
- ->boolean($result)
- ->isFalse();
- }
- }
|