12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
- namespace lithium\tests\mocks\data\source;
- use MongoId;
- use lithium\tests\mocks\data\source\mongo_db\MockResult;
- class MockMongoSource extends \lithium\core\Object {
- public $resultSets = array();
- public $queries = array();
- public function __get($name) {
- return $this;
- }
- public function insert(&$data, $options) {
- $this->queries[] = compact('data', 'options');
- $result = current($this->resultSets);
- next($this->resultSets);
- $data['_id'] = new MongoId();
- return $result;
- }
- public function find($conditions, $fields) {
- $this->queries[] = compact('conditions', 'fields');
- $result = new MockResult(array('data' => current($this->resultSets)));
- next($this->resultSets);
- return $result;
- }
- }
- ?>
|