tomaszdurka / mocka
Installs: 27 272
Dependents: 4
Suggesters: 0
Security: 0
Stars: 6
Watchers: 4
Forks: 8
Open Issues: 3
Requires
- lstrojny/functional-php: ^1.0
- tomaszdurka/codegenerator: ~0.5.0
Requires (Dev)
- phpunit/phpunit: ~3.7.10
- satooshi/php-coveralls: ~0.6.1
- dev-master
- 0.14.0
- 0.13.1
- 0.13.0
- 0.12.3
- 0.12.2
- 0.12.1
- 0.12.0
- 0.11.1
- 0.11.0
- 0.10.1
- 0.10.0
- 0.9.0
- 0.8.4
- 0.8.3
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.0
- 0.6.1
- 0.6.0
- 0.5.0
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.0
- 0.2.1
- 0.2.0
- 0.1.0
- dev-upgrade-functional-php
- dev-allow-mocking-unclonable
- dev-introduce-overrides
- dev-issue-40
- dev-issue-37
- dev-issue-36
- dev-issue-35
- dev-issue-34
- dev-issue-33
- dev-issue-29
- dev-issue-31
- dev-issue-30
- dev-issue-26
- dev-issue-24
- dev-issue-23
- dev-internal-classes-mocking
- dev-issue-8
- dev-issue-22
- dev-issue-20
- dev-issue-19
- dev-issue-17
- dev-issue-18
- dev-issue-16
- dev-issue-15
- dev-issue-13
- dev-issue-12
- dev-issue-11
- dev-issue-10
- dev-issue-9
- dev-issue-7
- dev-issue-6
- dev-issue-5
- dev-issue-4
- dev-issue-3
- dev-issue-2
- dev-issue-1
This package is auto-updated.
Last update: 2024-11-05 15:31:50 UTC
README
About
Mocka is clean, structured, but still very flexible mocking framework. It follows object-oriented guidelines to create mock classes, objects and their methods. Mocks can be modified during runtime before and once created or used. It has no assertion, expectations framework built-in - still fits well into any testing framework.
Installation
Mocka is registered as composer package on packagist.
"tomaszdurka/mocka": "dev-master"
Library usage
Mocking classes
$parentClassName = 'Exception'; $class = new ClassMock('MockedException', $parentClassName); $exception1 = $class->newInstance(['exception message as constructor argument']); $exception2 = $class->newInstanceWithoutConstructor();
Creating object of mocked classes
$class = new ClassMock('MockedException', 'Exception'); $object = $class->newInstance('message'); $object->getMessage();
Mocking methods
$class = new ClassMock('MockedException', 'Exception'); $class->mockMethod('getMessage'); // It's also possible to mock method only for generated object $object = $class->newInstance('message'); $object->mockMethod('getMessage'); // It's possible to mock non-existent methods - they will work once mocked $class->mockMethod('foo'); // It's also possible to mock static methods $class->mockStaticMethod('bar');
Modifying method behaviour
// Each method returned by any above mock methods return MethodMock object which can be manipulated $class = new ClassMock('MockedException', 'Exception'); $mockedMethod = $class->mockMethod('getMessage'); // Set closure which will be executed when mocked method is called $class->mockMethod('getMessage')->set(function () { return 'modified message'; }); // Set numbered callbacks $class->mockMethod('getMessage') ->set(function () { return 'default message'; }) ->at(0, function () { return 'first message'; }) ->at(2, function () { return 'third message'; }); // There is also shortcut to make method return certain value $class->mockMethod('getMessages')->set('default')->at(0, 'first message'); // To check how many times method has been called simply use mocked method object $mockedMethod = $class->mockMethod('getMessage'); // call method... echo $mockedMethod->getCallCount();
Mocking interfaces
$countableClass = new ClassMock('Collection', null, ['Countable']);
Referring back to original method
// It's a way to add extra behaviour to original method functionality $class = new ClassMock('MockedException', 'Exception'); $object = $class->newInstanceWithoutConstructor(); $object->mockMethod('getMessage')->set(function() use ($object) { return 'prefix-' . $object->callOriginalMethod('getMessage', func_get_args()); });
Using with test framework like PHPUnit
class TestCase extends \PHPUnit_Framework_TestCase { use \Mocka\MockaTrait; public function testFoo() { // When using mocka trait there are two shortcut methods added to create mocked objects $countableExceptionClass = $this->mockClass('DateTime', ['Countable']); $dateTimeObject = $this->mockObject('DateTime', ['29-12-1984']); } public function testMockingMethod() { $dateTimeObject = $this->mockObject('DateTime', ['29-12-1984']); $this->assertSame('29', $dateTimeObject->format('d')); $mockedFormatMethod = $dateTimeObject->mockMethod('format')->set('foo'); $this->assertSame(0, $mockedFormatMethod->getCallCount()); $this->assertSame('foo', $dateTimeObject->format('d')); $this->assertSame(1, $mockedFormatMethod->getCallCount()); } public function testMethodAssertions() { $pdo = $this->mockClass('PDO')->newInstanceWithoutConstructor(); $pdo->mockMethod('exec')->set(function ($statement) { $this->assertInstanceOf('PDOStatement', $statement); }); } }