Blame view

vendor/psy/psysh/test/Psy/Test/CodeCleaner/InstanceOfPassTest.php 1.96 KB
6c4edfa3   Alexandre   First Commit LabI...
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
<?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\InstanceOfPass;

class InstanceOfPassTest extends CodeCleanerTestCase
{
    protected function setUp()
    {
        $this->setPass(new InstanceOfPass());
    }

    /**
     * @dataProvider invalidStatements
     * @expectedException \Psy\Exception\FatalErrorException
     */
    public function testProcessInvalidStatement($code)
    {
        $stmts = $this->parse($code);
        $this->traverser->traverse($stmts);
    }

    public function invalidStatements()
    {
        return array(
            array('null instanceof stdClass'),
            array('true instanceof stdClass'),
            array('9 instanceof stdClass'),
            array('1.0 instanceof stdClass'),
            array('"foo" instanceof stdClass'),
            array('__DIR__ instanceof stdClass'),
            array('PHP_SAPI instanceof stdClass'),
            array('1+1 instanceof stdClass'),
            array('true && false instanceof stdClass'),
            array('"a"."b" instanceof stdClass'),
            array('!5 instanceof stdClass'),
        );
    }

    /**
     * @dataProvider validStatements
     */
    public function testProcessValidStatement($code)
    {
        $stmts = $this->parse($code);
        $this->traverser->traverse($stmts);
    }

    public function validStatements()
    {
        $data = array(
            array('$a instanceof stdClass'),
            array('strtolower("foo") instanceof stdClass'),
            array('array(1) instanceof stdClass'),
            array('(string) "foo" instanceof stdClass'),
            array('(1+1) instanceof stdClass'),
            array('"foo ${foo} $bar" instanceof stdClass'),
            array('DateTime::ISO8601 instanceof stdClass'),

        );

        return $data;
    }
}