StaticConstructorPassTest.php
2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
/*
* This file is part of Psy Shell.
*
* (c) 2012-2015 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\StaticConstructorPass;
class StaticConstructorPassTest extends CodeCleanerTestCase
{
protected function setUp()
{
$this->setPass(new StaticConstructorPass());
}
/**
* @dataProvider invalidStatements
* @expectedException \Psy\Exception\FatalErrorException
*/
public function testProcessInvalidStatement($code)
{
$stmts = $this->parse($code);
$this->traverser->traverse($stmts);
}
/**
* @dataProvider invalidParserStatements
* @expectedException \Psy\Exception\ParseErrorException
*/
public function testProcessInvalidStatementCatchedByParser($code)
{
$stmts = $this->parse($code);
$this->traverser->traverse($stmts);
}
public function invalidStatements()
{
$statements = array(
array('class A { public static function A() {}}'),
array('class A { private static function A() {}}'),
);
if (version_compare(PHP_VERSION, '5.3.3', '<')) {
$statements[] = array('namespace B; class A { private static function A() {}}');
}
return $statements;
}
public function invalidParserStatements()
{
$statements = array(
array('class A { public static function __construct() {}}'),
array('class A { private static function __construct() {}}'),
array('class A { private static function __construct() {} public function A() {}}'),
array('namespace B; class A { private static function __construct() {}}'),
);
return $statements;
}
/**
* @dataProvider validStatements
*/
public function testProcessValidStatement($code)
{
$stmts = $this->parse($code);
$this->traverser->traverse($stmts);
}
public function validStatements()
{
$statements = array(
array('class A { public static function A() {} public function __construct() {}}'),
array('class A { private function __construct() {} public static function A() {}}'),
);
if (version_compare(PHP_VERSION, '5.3.3', '>=')) {
$statements[] = array('namespace B; class A { private static function A() {}}');
}
return $statements;
}
}