Completed
Push — master ( 4eb4a8...a52438 )
by Henry
07:48
created

RecoverTest::testProcess()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 41

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 41
c 0
b 0
f 0
rs 9.264
cc 2
nc 2
nop 3
1
<?php
2
namespace Redaxscript\Tests\Controller;
3
4
use Redaxscript\Controller;
5
use Redaxscript\Tests\TestCaseAbstract;
6
7
/**
8
 * RecoverTest
9
 *
10
 * @since 3.0.0
11
 *
12
 * @package Redaxscript
13
 * @category Tests
14
 * @author Henry Ruhs
15
 * @author Balázs Szilágyi
16
 *
17
 * @covers Redaxscript\Controller\ControllerAbstract
18
 * @covers Redaxscript\Controller\Recover
19
 *
20
 * @requires OS Linux
21
 */
22
23
class RecoverTest extends TestCaseAbstract
24
{
25
	/**
26
	 * setUp
27
	 *
28
	 * @since 3.1.0
29
	 */
30
31
	public function setUp() : void
32
	{
33
		parent::setUp();
34
		$optionArray = $this->getOptionArray();
35
		$installer = $this->installerFactory();
36
		$installer->init();
37
		$installer->rawCreate();
38
		$installer->insertSettings($optionArray);
39
		$installer->insertUsers($optionArray);
40
		$setting = $this->settingFactory();
41
		$setting->set('captcha', 1);
42
	}
43
44
	/**
45
	 * tearDown
46
	 *
47
	 * @since 3.1.0
48
	 */
49
50
	public function tearDown() : void
51
	{
52
		$this->dropDatabase();
53
	}
54
55
	/**
56
	 * testProcess
57
	 *
58
	 * @since 3.0.0
59
	 *
60
	 * @param array $postArray
61
	 * @param string $method
62
	 * @param string $expect
63
	 *
64
	 * @dataProvider providerAutoloader
65
	 */
66
67
	public function testProcess(array $postArray = [], string $method = null, string $expect = null) : void
68
	{
69
		/* setup */
70
71
		$this->_request->set('post', $postArray);
72
		if ($method)
0 ignored issues
show
Bug Best Practice introduced by
The expression $method of type null|string is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
73
		{
74
			$recoverController = $this
0 ignored issues
show
Deprecated Code introduced by
The method PHPUnit\Framework\MockOb...ckBuilder::setMethods() has been deprecated with message: https://github.com/sebastianbergmann/phpunit/pull/3687

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
75
				->getMockBuilder('Redaxscript\Controller\Recover')
76
				->setConstructorArgs(
77
				[
78
					$this->_registry,
79
					$this->_request,
80
					$this->_language,
81
					$this->_config
82
				])
83
				->setMethods(
84
				[
85
					$method
86
				])
87
				->getMock();
88
89
			/* override */
90
91
			$recoverController
92
				->expects($this->any())
93
				->method($method);
94
		}
95
		else
96
		{
97
			$recoverController = new Controller\Recover($this->_registry, $this->_request, $this->_language, $this->_config);
98
		}
99
100
		/* actual */
101
102
		$actual = $recoverController->process();
0 ignored issues
show
Bug introduced by
The method process does only exist in Redaxscript\Controller\Recover, but not in PHPUnit\Framework\MockObject\MockObject.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
103
104
		/* compare */
105
106
		$this->assertEquals($expect, $actual);
107
	}
108
}
109