Sometimes when writing tests you need to test something that depends on an object being in a certain state.
Say for example you're testing a model - you want to make sure that the model is running the correct query, but you don't want it to run on a real database server. You can create a mock database connection which responds in the way the model expects, but doesn't actually connect to a physical database.
The createMock()
and getMockBuilder()
methods provided by PHPUnit can be used to automatically generate an object that can act as a test double for the specified original interface or class name.
Most of the time you'll only need to use the createMock() method, i.e.:
$mock = $this->createMock('ORM');
The creation of this mock is performed using best practice defaults. The __construct
and __clone
methods of the original class are not executed and the arguments passed to a method of the test double will not be cloned. If these defaults don't match your needs then you can use the getMockBuilder()
method to customize the test double generation. Here is a list of methods provided by the Mock Builder:
setMethods(array $methods)
can be called on the Mock Builder object to specify the methods that are to be replaced with a configurable test double. The behavior of the other methods is not changed. If you call setMethods(null)
, then no methods will be replaced.setMethodsExcept(array $methods)
can be called on the Mock Builder object to specify the methods that will not be replaced with a configurable test double while replacing all other public methods. This works inverse to setMethods()
.setConstructorArgs(array $args)
can be called to provide a parameter array that is passed to the original class’ constructor (which is not replaced with a dummy implementation by default).setMockClassName($name)
can be used to specify a class name for the generated test double class.disableOriginalConstructor()
can be used to disable the call to the original class’ constructor.disableOriginalClone()
can be used to disable the call to the original class’ clone constructor.disableAutoload()
can be used to disable __autoload()
during the generation of the test double class.You start off by telling PHPUnit how many times the method should be called by calling expects() on the mock object:
$mock->expects($matcher);
expects()
takes one argument, an invoker matcher which you can create using factory methods defined in PHPUnit_Framework_TestCase
:
$this->any()
$this->never()
$this->once()
$this->atLeastOnce()
$this->exactly($count)
$count
times.$this->at($index)
$index
.In our example we want check()
to be called once on our mock object, so if we update it accordingly:
$mock = $this->getMockBuilder('ORM')
->setMethods(['check'])
->getMock();
$mock->expects($this->once());
Although we told PHPUnit what methods we want to mock, we haven't actually told it what method these rules we're specifiying apply to.
You do this by calling method()
on the returned from expects()
:
$mock->expects($matcher)
->method($methodName);
As you can probably guess, method()
takes one parameter, the name of the method you're mocking.
There's nothing very fancy about this function.
$mock = $this->getMockBuilder('ORM')
->setMethods(['check'])
->getMock();
$mock->expects($this->once())
->method('check');
There are two ways to do this, either
The former can be achieved by calling withAnyParameters()
on the object returned from method()
.
$mock->expects($matcher)
->method($methodName)
->withAnyParameters();
To only allow specific parameters you can use the with()
method which accepts any number of parameters.
The order in which you define the parameters is the order that it expects them to be in when called.
$mock->expects($matcher)
->method($methodName)
->with($param1, $param2);
Calling with()
without any parameters will force the mock method to accept no parameters.
PHPUnit has a fairly complex way of comparing parameters passed to the mock method with the expected values, which can be summarised like so -
Sometimes you need to be more specific about how PHPUnit should compare parameters, i.e. if you want to make sure that one of the parameters is an instance of an object, yet isn't necessarily identical to a particular instance.
In PHPUnit, the logic for validating objects and datatypes has been refactored into "constraint objects". If you look in any of the assertX() methods you can see that they are nothing more than wrappers for associating constraint objects with tests.
If a parameter passed to with()
is not an instance of a constraint object (one which extends PHPUnit_Framework_Constraint
) then PHPUnit creates a new IsEqual
comparision object for it.
i.e., the following methods produce the same result:
->with('foo', 1);
->with($this->equalTo('foo'), $this->equalTo(1));
Here are some of the wrappers PHPUnit provides for creating constraint objects:
$this->arrayHasKey($key)
$key
.$this->attribute(PHPUnit_Framework_Constraint $constraint, $attributeName)
$attributeName
of the parameter will satisfy $constraint
, where constraint is an instance of a constraint (i.e. $this->equalTo()
).$this->fileExists()
file_exists() === true
).$this->greaterThan($value)
$value
.$this->anything()
$this->equalTo($value, $delta = 0, $canonicalizeEOL = false, $ignoreCase = false)
$value
(same as not passing a constraint object to with()
).$delta
is the degree of accuracy to use when comparing numbers. i.e. 0 means numbers need to be identical, 1 means numbers can be within a distance of one from each other.$canonicalizeEOL
is true then all newlines in string values will be converted to \n
before comparision.$ignoreCase
is true then both strings will be converted to lowercase before comparision.$this->identicalTo($value)
$value
.$this->isType($type)
$type
, where $type
is a string representation of the core PHP data types.$this->isInstanceOf($className)
$className
.$this->lessThan($value)
$value
.$this->objectHasAttribute($attribute)
$attribute
.$this->matchesRegularExpression($pattern)
$pattern
(using preg_match()
).$this->stringContains($string, $ignoreCase = false)
$string
. If $ignoreCase
is true then a case insensitive comparision is done.$this->stringEndsWith($suffix)
$suffix
(assumes parameter is a string).$this->stringStartsWith($prefix)
$prefix
(assumes parameter is a string).$this->contains($value)
$value
(assumes parameter is array or SplObjectStorage
).$this->containsOnly($type, $isNativeType = true)
$type
. $isNativeType
should be set to true when $type
refers to a built in PHP data type (i.e. int, string etc.) (assumes parameter is array).There are more constraint objects than listed here, look in PHPUnit_Framework_Assert
and PHPUnit/Framework/Constraint
if you need more constraints.
If we continue our example, we have the following:
$mock->expects($this->once())
->method('check')
->with();
So far PHPUnit knows that we want the check()
method to be called once, with no parameters. Now we just need to get it to return something.
This is the final stage of mocking a method.
By default PHPUnit can return either
Specifying a return value is easy, just call will()
on the object returned by either method()
or with()
.
The function is defined like so:
public function will(PHPUnit_Framework_MockObject_Stub $stub)
PHPUnit provides some MockObject stubs out of the box, you can access them via (when called from a testcase):
$this->returnValue($value)
$value
when the mocked method is called.$this->returnArgument($argumentIndex)
$argumentIndex
th argument that was passed to the mocked method.$this->returnCallback($callback)
$callback
should a valid callback (i.e. is_callable($callback) === true
). PHPUnit will pass the callback all of the parameters that the mocked method was passed, in the same order / argument index (i.e. the callback is invoked by call_user_func_array()
).Obviously if you really want to you can create your own MockObject stub, but these three should cover most situations.
Updating our example gives:
$mock->expects($this->once())
->method('check')
->with()
->will($this->returnValue(true));
And we're done!
If you now call $mock->check()
the value true should be returned.
If you don't call a mocked method and PHPUnit expects it to be called then the test the mock was generated for will fail.