Skip to content

Library containing highly intelligent MongoDB mocks for unit testing

License

Notifications You must be signed in to change notification settings

hpaknia/php-mongomock

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MongoDB mock classes

Build Status

Author and license

Martin Helmich This library is MIT-licenced.

Synopsis and motivation

This class contains implementations of the MongoDB\Collection and MongoDB\Database classes (not to be confused with the Mongo\Collection class from the deprecated mongo extension) that can store, modify and filter documents in memory, together with a set of (optional) PHPUnit assertions.

I wrote this library because I wanted to unit-test a library that used MongoDB collections intensively and felt that mocking the MongoDB\Collection class using PHPUnit's built-in mock builders was too restrictive.

Note: Currently, this implementation contains only a subset of the actual MongoDB collection API. I've only implemented the parts of the API that I needed for my use case. If you need additional functionality, feel free to open an issue, or (better yet) a pull request.

Usage

You can use this library exactly as you'd use the MongoDB\Collection or MongoDB\Database classes (in theory, at least -- remember, this package is not API-complete):

use Helmich\MongoMock\MockCollection;

$collection = new MockCollection();
$collection->createIndex(['foo' => 1]);

$documentId = $collection->insertOne(['foo' => 'bar'])->insertedId();
$collection->updateOne(['_id' => $documentId], ['$set' => ['foo' => 'baz']]);

Differences

In some aspects, the MongoDB\Collection's API was extended to allow for better testability:

  1. Filter operands may contain callback functions that are applied to document properties:

    $r = $collection->find([
        'someProperty' => function($p) {
            return $p == 'bar';
        }
    ]);
  2. Filter operands may contain PHPUnit constraints (meaning instances of the PHPUnit_Framework_Constraint class). You can easily build these using the factory functions in the PHPUnit_Framework_Assert class.

    $r = $collection->find([
        'someProperty' => \PHPUnit_Framework_Assert::isInstanceOf(\MongoDB\BSON\Binary::class)
    ]);

Testing

To run the tests on Ubuntu

[sudo] apt-get install libpcre3-dev php-curl composer php-pear php-dev libcurl4-openssl-dev pkg-config php-curl
[sudo] pecl install mongodb zip
echo "extension=mongodb.so" | [sudo] tee -a /etc/php/7.0/cli/conf.d/mongodb.ini
echo "extension=zip.so" | [sudo] tee -a /etc/php/7.0/cli/conf.d/zip.ini
composer install
composer run-script test

About

Library containing highly intelligent MongoDB mocks for unit testing

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%