123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- <?php
- /*
- * This file is part of Psy Shell.
- *
- * (c) 2012-2018 Justin Hileman
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Psy\Test\CodeCleaner;
- use Psy\CodeCleaner\ValidClassNamePass;
- class ValidClassNamePassTest extends CodeCleanerTestCase
- {
- public function setUp()
- {
- $this->setPass(new ValidClassNamePass());
- }
- /**
- * @dataProvider getInvalid
- * @expectedException \Psy\Exception\FatalErrorException
- */
- public function testProcessInvalid($code)
- {
- $this->parseAndTraverse($code);
- }
- public function getInvalid()
- {
- // class declarations
- return [
- // core class
- ['class stdClass {}'],
- // capitalization
- ['class stdClass {}'],
- // collisions with interfaces and traits
- ['interface stdClass {}'],
- ['trait stdClass {}'],
- // collisions inside the same code snippet
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- class Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- trait Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- '],
- ['
- trait Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- class Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- '],
- ['
- trait Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- interface Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- '],
- ['
- interface Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- trait Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- '],
- ['
- interface Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- class Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- interface Psy_Test_CodeCleaner_ValidClassNamePass_Alpha {}
- '],
- // namespaced collisions
- ['
- namespace Psy\\Test\\CodeCleaner {
- class ValidClassNamePassTest {}
- }
- '],
- ['
- namespace Psy\\Test\\CodeCleaner\\ValidClassNamePass {
- class Beta {}
- }
- namespace Psy\\Test\\CodeCleaner\\ValidClassNamePass {
- class Beta {}
- }
- '],
- // extends and implements
- ['class ValidClassNamePassTest extends NotAClass {}'],
- ['class ValidClassNamePassTest extends ArrayAccess {}'],
- ['class ValidClassNamePassTest implements stdClass {}'],
- ['class ValidClassNamePassTest implements ArrayAccess, stdClass {}'],
- ['interface ValidClassNamePassTest extends stdClass {}'],
- ['interface ValidClassNamePassTest extends ArrayAccess, stdClass {}'],
- // class instantiations
- ['new Psy_Test_CodeCleaner_ValidClassNamePass_Gamma();'],
- ['
- namespace Psy\\Test\\CodeCleaner\\ValidClassNamePass {
- new Psy_Test_CodeCleaner_ValidClassNamePass_Delta();
- }
- '],
- // class constant fetch
- ['Psy\\Test\\CodeCleaner\\ValidClassNamePass\\NotAClass::FOO'],
- // static call
- ['Psy\\Test\\CodeCleaner\\ValidClassNamePass\\NotAClass::foo()'],
- ['Psy\\Test\\CodeCleaner\\ValidClassNamePass\\NotAClass::$foo()'],
- ['Psy\\Test\\CodeCleaner\\ValidClassNamePassTest::notAMethod()'],
- ];
- }
- /**
- * @dataProvider getValid
- */
- public function testProcessValid($code)
- {
- $this->parseAndTraverse($code);
- $this->assertTrue(true);
- }
- public function getValid()
- {
- $valid = [
- // class declarations
- ['class Psy_Test_CodeCleaner_ValidClassNamePass_Epsilon {}'],
- ['namespace Psy\Test\CodeCleaner\ValidClassNamePass; class Zeta {}'],
- ['
- namespace { class Psy_Test_CodeCleaner_ValidClassNamePass_Eta {}; }
- namespace Psy\\Test\\CodeCleaner\\ValidClassNamePass {
- class Psy_Test_CodeCleaner_ValidClassNamePass_Eta {}
- }
- '],
- ['namespace Psy\Test\CodeCleaner\ValidClassNamePass { class stdClass {} }'],
- // class instantiations
- ['new stdClass();'],
- ['new stdClass();'],
- ['
- namespace Psy\\Test\\CodeCleaner\\ValidClassNamePass {
- class Theta {}
- }
- namespace Psy\\Test\\CodeCleaner\\ValidClassNamePass {
- new Theta();
- }
- '],
- ['
- namespace Psy\\Test\\CodeCleaner\\ValidClassNamePass {
- class Iota {}
- new Iota();
- }
- '],
- ['
- namespace Psy\\Test\\CodeCleaner\\ValidClassNamePass {
- class Kappa {}
- }
- namespace {
- new \\Psy\\Test\\CodeCleaner\\ValidClassNamePass\\Kappa();
- }
- '],
- // Class constant fetch (ValidConstantPassTest validates the actual constant)
- ['class A {} A::FOO'],
- ['$a = new DateTime; $a::ATOM'],
- ['interface A { const B = 1; } A::B'],
- // static call
- ['DateTime::createFromFormat()'],
- ['DateTime::$someMethod()'],
- ['Psy\Test\CodeCleaner\Fixtures\ClassWithStatic::doStuff()'],
- ['Psy\Test\CodeCleaner\Fixtures\ClassWithCallStatic::doStuff()'],
- ['Psy\Test\CodeCleaner\Fixtures\TraitWithStatic::doStuff()'],
- // Allow `self` and `static` as class names.
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_ClassWithStatic {
- public static function getInstance() {
- return new self();
- }
- }
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_ClassWithStatic {
- public static function getInstance() {
- return new SELF();
- }
- }
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_ClassWithStatic {
- public static function getInstance() {
- return new self;
- }
- }
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_ClassWithStatic {
- public static function getInstance() {
- return new static();
- }
- }
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_ClassWithStatic {
- public static function getInstance() {
- return new Static();
- }
- }
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_ClassWithStatic {
- public static function getInstance() {
- return new static;
- }
- }
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_ClassWithStatic {
- public static function foo() {
- return parent::bar();
- }
- }
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_ClassWithStatic {
- public static function foo() {
- return self::bar();
- }
- }
- '],
- ['
- class Psy_Test_CodeCleaner_ValidClassNamePass_ClassWithStatic {
- public static function foo() {
- return static::bar();
- }
- }
- '],
- ['class A { static function b() { return new A; } }'],
- ['
- class A {
- const B = 123;
- function c() {
- return A::B;
- }
- }
- '],
- ['class A {} class B { function c() { return new A; } }'],
- // recursion
- ['class A { function a() { A::a(); } }'],
- // conditionally defined classes
- ['
- class A {}
- if (false) {
- class A {}
- }
- '],
- ['
- class A {}
- if (true) {
- class A {}
- } else if (false) {
- class A {}
- } else {
- class A {}
- }
- '],
- // ewww
- ['
- class A {}
- if (true):
- class A {}
- elseif (false):
- class A {}
- else:
- class A {}
- endif;
- '],
- ['
- class A {}
- while (false) { class A {} }
- '],
- ['
- class A {}
- do { class A {} } while (false);
- '],
- ['
- class A {}
- switch (1) {
- case 0:
- class A {}
- break;
- case 1:
- class A {}
- break;
- case 2:
- class A {}
- break;
- }
- '],
- ];
- // Ugh. There's gotta be a better way to test for this.
- if (\class_exists('PhpParser\ParserFactory')) {
- // PHP 7.0 anonymous classes, only supported by PHP Parser v2.x
- $valid[] = ['$obj = new class() {}'];
- }
- if (\version_compare(PHP_VERSION, '5.5', '>=')) {
- $valid[] = ['interface A {} A::class'];
- $valid[] = ['interface A {} A::CLASS'];
- $valid[] = ['class A {} A::class'];
- $valid[] = ['class A {} A::CLASS'];
- $valid[] = ['A::class'];
- $valid[] = ['A::CLASS'];
- }
- return $valid;
- }
- }
|