123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- <?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\Consistency\Test\Unit;
- use Hoa\Consistency\Consistency as SUT;
- use Hoa\Test;
- /**
- * Class \Hoa\Consistency\Test\Unit\Consistency.
- *
- * Test suite of the consistency class.
- *
- * @copyright Copyright © 2007-2017 Hoa community
- * @license New BSD License
- */
- class Consistency extends Test\Unit\Suite
- {
- protected function _entity_exists_with_xxx($class, $interface, $trait)
- {
- $this
- ->given(
- $this->function->class_exists = $class,
- $this->function->interface_exists = $interface,
- $this->function->trait_exists = $trait
- )
- ->when($result = SUT::entityExists('foo'))
- ->then
- ->boolean($result)
- ->isTrue();
- }
- public function case_entity_exists_with_class()
- {
- return $this->_entity_exists_with_xxx(true, false, false);
- }
- public function case_entity_exists_with_interface()
- {
- return $this->_entity_exists_with_xxx(false, true, false);
- }
- public function case_entity_exists_with_trait()
- {
- return $this->_entity_exists_with_xxx(false, false, true);
- }
- public function case_entity_does_not_exists()
- {
- $this
- ->given(
- $this->function->class_exists = false,
- $this->function->interface_exists = false,
- $this->function->trait_exists = false
- )
- ->when($result = SUT::entityExists('foo'))
- ->then
- ->boolean($result)
- ->isFalse();
- }
- public function case_get_entity_shortest_name()
- {
- $this
- ->when($result = SUT::getEntityShortestName('Foo\Bar\Bar'))
- ->then
- ->string($result)
- ->isEqualTo('Foo\Bar');
- }
- public function case_get_entity_shortest_name_with_already_the_shortest()
- {
- $this
- ->when($result = SUT::getEntityShortestName('Foo\Bar'))
- ->then
- ->string($result)
- ->isEqualTo('Foo\Bar');
- }
- public function case_get_entity_shortest_name_with_no_namespace()
- {
- $this
- ->when($result = SUT::getEntityShortestName('Foo'))
- ->then
- ->string($result)
- ->isEqualTo('Foo');
- }
- public function case_is_keyword()
- {
- $this
- ->given(
- $keywords = [
- '__HALT_COMPILER',
- 'abstract',
- 'and',
- 'array',
- 'as',
- 'bool',
- 'break',
- 'callable',
- 'case',
- 'catch',
- 'class',
- 'clone',
- 'const',
- 'continue',
- 'declare',
- 'default',
- 'die',
- 'do',
- 'echo',
- 'else',
- 'elseif',
- 'empty',
- 'enddeclare',
- 'endfor',
- 'endforeach',
- 'endif',
- 'endswitch',
- 'endwhile',
- 'eval',
- 'exit',
- 'extends',
- 'false',
- 'final',
- 'float',
- 'for',
- 'foreach',
- 'function',
- 'global',
- 'goto',
- 'if',
- 'implements',
- 'include',
- 'include_once',
- 'instanceof',
- 'insteadof',
- 'int',
- 'interface',
- 'isset',
- 'list',
- 'mixed',
- 'namespace',
- 'new',
- 'null',
- 'numeric',
- 'object',
- 'or',
- 'print',
- 'private',
- 'protected',
- 'public',
- 'require',
- 'require_once',
- 'resource',
- 'return',
- 'static',
- 'string',
- 'switch',
- 'throw',
- 'trait',
- 'true',
- 'try',
- 'unset',
- 'use',
- 'var',
- 'void',
- 'while',
- 'xor',
- 'yield',
- '__CLASS__',
- '__DIR__',
- '__FILE__',
- '__FUNCTION__',
- '__LINE__',
- '__METHOD__',
- '__NAMESPACE__',
- '__TRAIT__'
- ]
- )
- ->when(function () use ($keywords) {
- foreach ($keywords as $keyword) {
- $this
- ->boolean(SUT::isKeyword($keyword))
- ->isTrue();
- }
- });
- }
- public function case_is_identifier()
- {
- $this
- ->given($_identifier = $this->realdom->regex('#^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x80-\xff]*$#'))
- ->when(function () use ($_identifier) {
- foreach ($this->sampleMany($_identifier, 1000) as $identifier) {
- $this
- ->boolean(SUT::isIdentifier($identifier))
- ->isTrue();
- }
- });
- }
- public function case_register_shutdown_function()
- {
- $self = $this;
- $this
- ->given(
- $callable = function () {
- },
- $this->function->register_shutdown_function = function ($_callable) use (&$called, $self, &$callable) {
- $called = true;
- $self
- ->variable($_callable)
- ->isEqualTo($callable);
- return true;
- }
- )
- ->when($result = SUT::registerShutdownFunction($callable))
- ->then
- ->boolean($result)
- ->isTrue();
- }
- public function case_get_php_binary_with_constant()
- {
- $this
- ->given($this->constant->PHP_BINARY = '/foo/php')
- ->when($result = SUT::getPHPBinary())
- ->then
- ->string($result)
- ->isEqualTo('/foo/php');
- }
- public function case_get_php_binary_with_server()
- {
- $this
- ->given(
- $this->function->defined = false,
- $_SERVER['_'] = '/bar/php'
- )
- ->when($result = SUT::getPHPBinary())
- ->then
- ->string($result)
- ->isEqualTo('/bar/php');
- }
- public function case_get_php_binary_with_bin_directory()
- {
- unset($_SERVER['_']);
- $this
- ->given(
- $this->function->defined = false,
- $this->function->file_exists = true,
- $this->function->realpath = '/baz/php'
- )
- ->when($result = SUT::getPHPBinary())
- ->then
- ->string($result)
- ->isEqualTo('/baz/php');
- }
- public function case_uuid()
- {
- $this
- ->given($this->function->mt_rand = 42)
- ->when($result = SUT::uuid())
- ->then
- ->string($result)
- ->isEqualTo('002a002a-002a-402a-802a-002a002a002a');
- }
- public function case_uuid_all_differents()
- {
- $this
- ->when(function () {
- $uuids = [];
- for ($i = 0; $i < 10000; ++$i) {
- $uuids[] = SUT::uuid();
- }
- $this
- ->integer(count($uuids))
- ->isEqualTo(count(array_unique($uuids)));
- });
- }
- }
|