File: MockCaseInsensitivityTest.php

package info (click to toggle)
php-mock 2.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: php: 1,703; makefile: 18; xml: 17; sh: 7
file content (86 lines) | stat: -rw-r--r-- 2,173 bytes parent folder | download
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
<?php

namespace phpmock;

use phpmock\functions\FixedValueFunction;
use PHPUnit\Framework\TestCase;

/**
 * Tests Mock's case insensitivity.
 *
 * @author Markus Malkusch <markus@malkusch.de>
 * @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
 * @license http://www.wtfpl.net/txt/copying/ WTFPL
 * @see Mock
 */
class MockCaseInsensitivityTest extends TestCase
{
    use TestCaseTrait;

    /**
     * @var Mock
     */
    private $mock;

    protected function tearDownCompat()
    {
        if (isset($this->mock)) {
            $this->mock->disable();
        }
    }

    /**
     * @param string $mockName  The mock function name.
     *
     * @dataProvider provideTestCaseSensitivity
     */
    public function testFailEnable($mockName)
    {
        $builder = new MockBuilder();
        $builder->setNamespace(__NAMESPACE__)
                ->setName(strtolower($mockName))
                ->setFunctionProvider(new FixedValueFunction(1234));

        $this->mock = $builder->build();
        $this->mock->enable();

        $failingMock = $builder->setName($mockName)->build();
        $this->expectException(MockEnabledException::class);
        $failingMock->enable();
    }

    /**
     * Tests case insensitive mocks.
     *
     * @param string $mockName  The mock function name.
     * @dataProvider provideTestCaseSensitivity
     */
    public function testCaseSensitivity($mockName)
    {
        $builder = new MockBuilder();
        $builder->setNamespace(__NAMESPACE__)
                ->setName($mockName)
                ->setFunctionProvider(new FixedValueFunction(1234));

        $this->mock = $builder->build();
        $this->mock->enable();

        $this->assertEquals(1234, time(), "time() is not mocked");
        $this->assertEquals(1234, Time(), "Time() is not mocked");
        $this->assertEquals(1234, TIME(), "TIME() is not mocked");
    }

    /**
     * Returns test cases for testCaseSensitivity().
     *
     * @return string[][] Test cases.
     */
    public static function provideTestCaseSensitivity()
    {
        return [
            ["TIME"],
            ["Time"],
            ["time"],
        ];
    }
}