public function testSearchDocumentsRegenerateWhenDefinedPredicateChanged()
 {
     // First make a change that affects a search document
     $tripod = $this->getMock('\\Tripod\\Mongo\\Driver', array('getSearchIndexer', 'getDataUpdater'), array('CBD_testing', 'tripod_php_testing', array('defaultContext' => 'http://talisaspire.com/', 'async' => array(OP_VIEWS => true, OP_TABLES => true, OP_SEARCH => false))));
     $tripodUpdate = $this->getMock('\\Tripod\\Mongo\\Updates', array('storeChanges'), array($tripod, array('defaultContext' => 'http://talisaspire.com/', 'async' => array(OP_VIEWS => true, OP_TABLES => true, OP_SEARCH => false))));
     $labeller = new \Tripod\Mongo\Labeller();
     $subjectsAndPredicatesOfChange = array($labeller->uri_to_alias("http://talisaspire.com/authors/1") => array("foaf:name"));
     $tripodUpdate->expects($this->atLeastOnce())->method('storeChanges')->will($this->returnValue(array("subjectsAndPredicatesOfChange" => $subjectsAndPredicatesOfChange, "transaction_id" => "t1234")));
     $tripod->expects($this->atLeastOnce())->method('getDataUpdater')->will($this->returnValue($tripodUpdate));
     $searchIndexer = $this->getMock('\\Tripod\\Mongo\\Composites\\SearchIndexer', array('getSearchProvider', 'getImpactedSubjects'), array($tripod));
     $searchProvider = $this->getMock('\\Tripod\\Mongo\\MongoSearchProvider', array('deleteDocument', 'indexDocument'), array($tripod));
     $searchProvider->expects($this->exactly(3))->method('deleteDocument')->with($this->matchesRegularExpression("/http:\\/\\/talisaspire\\.com\\/resources\\/doc(1|2|3)\$/"), 'http://talisaspire.com/', $this->equalTo(array('i_search_resource')));
     $searchProvider->expects($this->exactly(3))->method('indexDocument');
     $searchIndexer->expects($this->atLeastOnce())->method('getSearchProvider')->will($this->returnValue($searchProvider));
     $impactedSubjects = array($this->getMockBuilder('\\Tripod\\Mongo\\ImpactedSubject')->setConstructorArgs(array(array(_ID_RESOURCE => 'http://talisaspire.com/resources/doc1', _ID_CONTEXT => 'http://talisaspire.com/'), OP_SEARCH, 'tripod_php_testing', 'CBD_testing', array('i_search_resource')))->setMethods(array('getTripod'))->getMock(), $this->getMockBuilder('\\Tripod\\Mongo\\ImpactedSubject')->setConstructorArgs(array(array(_ID_RESOURCE => 'http://talisaspire.com/resources/doc2', _ID_CONTEXT => 'http://talisaspire.com/'), OP_SEARCH, 'tripod_php_testing', 'CBD_testing', array('i_search_resource')))->setMethods(array('getTripod'))->getMock(), $this->getMockBuilder('\\Tripod\\Mongo\\ImpactedSubject')->setConstructorArgs(array(array(_ID_RESOURCE => 'http://talisaspire.com/resources/doc3', _ID_CONTEXT => 'http://talisaspire.com/'), OP_SEARCH, 'tripod_php_testing', 'CBD_testing', array('i_search_resource')))->setMethods(array('getTripod'))->getMock());
     $impactedSubjects[0]->expects($this->once())->method('getTripod')->will($this->returnValue($tripod));
     $impactedSubjects[1]->expects($this->once())->method('getTripod')->will($this->returnValue($tripod));
     $impactedSubjects[2]->expects($this->once())->method('getTripod')->will($this->returnValue($tripod));
     $searchIndexer->expects($this->once())->method('getImpactedSubjects')->with($subjectsAndPredicatesOfChange, 'http://talisaspire.com/')->will($this->returnValue($impactedSubjects));
     $tripod->expects($this->atLeastOnce())->method('getSearchIndexer')->will($this->returnValue($searchIndexer));
     $g1 = $tripod->describeResource("http://talisaspire.com/authors/1");
     $g2 = $tripod->describeResource("http://talisaspire.com/authors/1");
     $g2->add_literal_triple("http://talisaspire.com/authors/1", $g2->qname_to_uri("foaf:name"), "Bill Shakespeare");
     $tripod->saveChanges($g1, $g2);
     // Now make a change that affects a different search document - Create new document
     $tripod = $this->getMock('\\Tripod\\Mongo\\Driver', array('getSearchIndexer'), array('CBD_testing', 'tripod_php_testing', array('defaultContext' => 'http://talisaspire.com/', 'async' => array(OP_VIEWS => true, OP_TABLES => true, OP_SEARCH => false))));
     $searchIndexer = $this->getMock('\\Tripod\\Mongo\\Composites\\SearchIndexer', array('getSearchProvider', 'getImpactedSubjects'), array($tripod));
     $searchProvider = $this->getMock('\\Tripod\\Mongo\\MongoSearchProvider', array('deleteDocument', 'indexDocument'), array($tripod));
     $searchProvider->expects($this->exactly(1))->method('deleteDocument')->with($this->equalTo("http://talisaspire.com/lists/1234"), 'http://talisaspire.com/', $this->isEmpty());
     $searchProvider->expects($this->exactly(1))->method('indexDocument');
     $searchIndexer->expects($this->atLeastOnce())->method('getSearchProvider')->will($this->returnValue($searchProvider));
     $impactedSubject = $this->getMockBuilder('\\Tripod\\Mongo\\ImpactedSubject')->setConstructorArgs(array(array(_ID_RESOURCE => 'http://talisaspire.com/lists/1234', _ID_CONTEXT => 'http://talisaspire.com/'), OP_SEARCH, 'tripod_php_testing', 'CBD_testing'))->setMethods(array('getTripod'))->getMock();
     $impactedSubject->expects($this->once())->method('getTripod')->will($this->returnValue($tripod));
     $searchIndexer->expects($this->once())->method('getImpactedSubjects')->will($this->returnValue(array($impactedSubject)));
     $tripod->expects($this->atLeastOnce())->method('getSearchIndexer')->will($this->returnValue($searchIndexer));
     $list = new \Tripod\ExtendedGraph();
     $list->add_resource_triple("http://talisaspire.com/lists/1234", RDF_TYPE, "http://purl.org/vocab/resourcelist/schema#List");
     $list->add_literal_triple("http://talisaspire.com/lists/1234", "http://rdfs.org/sioc/spec/name", "Testing list");
     $tripod->saveChanges(new \Tripod\ExtendedGraph(), $list);
     // Regen our search docs for real since this step was overridden in the stub
     $this->tripod->getSearchIndexer()->generateAndIndexSearchDocuments("http://talisaspire.com/lists/1234", "http://talisaspire.com/", 'CBD_testing');
     // Now make a change to the last document
     $tripod = $this->getMock('\\Tripod\\Mongo\\Driver', array('getSearchIndexer'), array('CBD_testing', 'tripod_php_testing', array('defaultContext' => 'http://talisaspire.com/', 'async' => array(OP_VIEWS => true, OP_TABLES => true, OP_SEARCH => false))));
     $searchIndexer = $this->getMock('\\Tripod\\Mongo\\Composites\\SearchIndexer', array('getSearchProvider', 'getImpactedSubjects'), array($tripod));
     $searchProvider = $this->getMock('\\Tripod\\Mongo\\MongoSearchProvider', array('deleteDocument', 'indexDocument'), array($tripod));
     $impactedSubject = $this->getMockBuilder('\\Tripod\\Mongo\\ImpactedSubject')->setConstructorArgs(array(array(_ID_RESOURCE => 'http://talisaspire.com/lists/1234', _ID_CONTEXT => 'http://talisaspire.com/'), OP_SEARCH, 'tripod_php_testing', 'CBD_testing', array('i_search_list')))->setMethods(array('getTripod'))->getMock();
     $impactedSubject->expects($this->once())->method('getTripod')->will($this->returnValue($tripod));
     $searchProvider->expects($this->exactly(1))->method('deleteDocument')->with($this->equalTo("http://talisaspire.com/lists/1234"), 'http://talisaspire.com/', array('i_search_list'));
     $searchProvider->expects($this->exactly(1))->method('indexDocument');
     $searchIndexer->expects($this->atLeastOnce())->method('getSearchProvider')->will($this->returnValue($searchProvider));
     $searchIndexer->expects($this->once())->method('getImpactedSubjects')->will($this->returnValue(array($impactedSubject)));
     $tripod->expects($this->atLeastOnce())->method('getSearchIndexer')->will($this->returnValue($searchIndexer));
     $oldList = $tripod->describeResource("http://talisaspire.com/lists/1234");
     $list = $tripod->describeResource("http://talisaspire.com/lists/1234");
     /** @var ExtendedGraph $list */
     $list->remove_property_values("http://talisaspire.com/lists/1234", "http://rdfs.org/sioc/spec/name");
     $list->add_literal_triple("http://talisaspire.com/lists/1234", "http://rdfs.org/sioc/spec/name", "IMPROVED testing list");
     $tripod->saveChanges($oldList, $list);
     // Regen our search docs for real since this step was overridden in the stub again
     $this->tripod->getSearchIndexer()->generateAndIndexSearchDocuments("http://talisaspire.com/lists/1234", "http://talisaspire.com/", 'CBD_testing');
 }
 /**
  * Test that a change to a resource that isn't covered by a viewspec or in an impact index still triggers the discover
  * impacted subjects operation and returns nothing
  */
 public function testResourceUpdateNotCoveredBySpecStillTriggersOperations()
 {
     $context = 'http://talisaspire.com/';
     $labeller = new \Tripod\Mongo\Labeller();
     // First add a graph
     $originalGraph = new \Tripod\ExtendedGraph();
     $uri1 = 'http://example.com/resources/' . uniqid();
     $originalGraph->add_resource_triple($uri1, RDF_TYPE, $labeller->qname_to_uri('bibo:Document'));
     $originalGraph->add_literal_triple($uri1, $labeller->qname_to_uri('dct:title'), 'How to speak American like a native');
     $originalGraph->add_literal_triple($uri1, $labeller->qname_to_uri('dct:subject'), 'Languages -- \'Murrican');
     $originalSubjectsAndPredicatesOfChange = array($labeller->uri_to_alias($uri1) => array('rdf:type', 'dct:title', 'dct:subject'));
     $updatedSubjectsAndPredicatesOfChange = array($labeller->uri_to_alias($uri1) => array('dct:subject'));
     /** @var \Tripod\Mongo\Driver|PHPUnit_Framework_MockObject_MockObject $mockTripod */
     $mockTripod = $this->getMock('\\Tripod\\Mongo\\Driver', array('getDataUpdater', 'getComposite'), array('CBD_testing', 'tripod_php_testing', array('defaultContext' => $context, OP_ASYNC => array(OP_TABLES => true, OP_VIEWS => false, OP_SEARCH => true))));
     $mockTripodUpdates = $this->getMock('\\Tripod\\Mongo\\Updates', array('processSyncOperations', 'queueAsyncOperations'), array($mockTripod, array(OP_ASYNC => array(OP_TABLES => true, OP_VIEWS => false, OP_SEARCH => true))));
     $mockViews = $this->getMock('\\Tripod\\Mongo\\Composites\\Views', array('generateViewsForResourcesOfType'), array('tripod_php_testing', \Tripod\Mongo\Config::getInstance()->getCollectionForCBD('tripod_php_testing', 'CBD_testing'), $context));
     $mockTripod->expects($this->exactly(2))->method('getDataUpdater')->will($this->returnValue($mockTripodUpdates));
     $mockTripod->expects($this->exactly(2))->method('getComposite')->with(OP_VIEWS)->will($this->returnValue($mockViews));
     $mockTripodUpdates->expects($this->exactly(2))->method('processSyncOperations')->withConsecutive(array($this->equalTo($originalSubjectsAndPredicatesOfChange), $this->equalTo($context)), array($this->equalTo($updatedSubjectsAndPredicatesOfChange), $this->equalTo($context)));
     $mockTripodUpdates->expects($this->exactly(2))->method('queueAsyncOperations')->withConsecutive(array($this->equalTo($originalSubjectsAndPredicatesOfChange), $this->equalTo($context)), array($this->equalTo($updatedSubjectsAndPredicatesOfChange), $this->equalTo($context)));
     $mockViews->expects($this->never())->method('generateViewsForResourcesOfType');
     $mockTripod->saveChanges(new \Tripod\ExtendedGraph(), $originalGraph);
     /** @var \Tripod\Mongo\Composites\Views $view */
     $view = $mockTripod->getComposite(OP_VIEWS);
     $this->assertInstanceOf('\\Tripod\\Mongo\\Composites\\Views', $view);
     $impactedSubjects = $view->getImpactedSubjects($originalSubjectsAndPredicatesOfChange, $context);
     $this->assertEmpty($impactedSubjects);
     $newGraph = $originalGraph->get_subject_subgraph($uri1);
     $newGraph->replace_literal_triple($uri1, $labeller->qname_to_uri('dct:subject'), 'Languages -- \'Murrican', 'Languages -- English, American');
     $mockTripod->saveChanges($originalGraph, $newGraph);
     /** @var \Tripod\Mongo\Composites\Views $view */
     $view = $mockTripod->getComposite(OP_VIEWS);
     $this->assertInstanceOf('\\Tripod\\Mongo\\Composites\\Views', $view);
     $impactedSubjects = $view->getImpactedSubjects($updatedSubjectsAndPredicatesOfChange, $context);
     $this->assertEmpty($impactedSubjects);
 }
 public function testSaveChangesWithInvalidCardinality()
 {
     $this->setExpectedException('\\Tripod\\Exceptions\\CardinalityException', "Cardinality failed on http://foo/bar/1 for 'rdf:type' - should only have 1 value and has: http://foo/bar#Class1, http://foo/bar#Class2");
     $config = array();
     $config['namespaces'] = array('rdf' => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#');
     $config["defaultContext"] = "http://talisaspire.com/";
     $config["transaction_log"] = array("database" => "transactions", "collection" => "transaction_log", "data_source" => "tlog");
     $config["data_sources"] = array("db" => array("type" => "mongo", "connection" => "mongodb://localhost"), "tlog" => array("type" => "mongo", "connection" => "mongodb://*****:*****@localhost:27018"));
     $config["stores"] = array("tripod_php_testing" => array("data_source" => "db", "pods" => array("CBD_testing" => array("cardinality" => array("rdf:type" => 1)))));
     $config['queue'] = array("database" => "queue", "collection" => "q_queue", "data_source" => "db");
     // Override the config defined in base test class as we need specific config here.
     \Tripod\Mongo\Config::setConfig($config);
     $tripod = new \Tripod\Mongo\Driver('CBD_testing', 'tripod_php_testing', array('defaultContext' => 'http://talisaspire.com/'));
     $oldGraph = new \Tripod\ExtendedGraph();
     $newGraph = new \Tripod\ExtendedGraph();
     $newGraph->add_resource_triple('http://foo/bar/1', 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type', 'http://foo/bar#Class1');
     $newGraph->add_resource_triple('http://foo/bar/1', 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type', 'http://foo/bar#Class2');
     $tripod->saveChanges($oldGraph, $newGraph, "http://talisaspire.com/");
 }
 public function testDeleteResourceCreatesImpactedSubjects()
 {
     $uri = 'http://example.com/users/' . uniqid();
     $labeller = new \Tripod\Mongo\Labeller();
     $uriAlias = $labeller->uri_to_alias($uri);
     $graph = new \Tripod\ExtendedGraph();
     $graph->add_resource_triple($uri, RDF_TYPE, $labeller->qname_to_uri('spec:User'));
     $graph->add_literal_triple($uri, $labeller->qname_to_uri('foaf:firstName'), 'Anne');
     $graph->add_literal_triple($uri, $labeller->qname_to_uri('foaf:surname'), 'Onymous');
     $uri2 = 'http://example.com/users/' . uniqid();
     $uriAlias2 = $labeller->uri_to_alias($uri2);
     $graph2 = new \Tripod\ExtendedGraph();
     $graph2->add_resource_triple($uri2, RDF_TYPE, $labeller->qname_to_uri('spec:User'));
     $graph2->add_literal_triple($uri2, $labeller->qname_to_uri('foaf:firstName'), 'Ann');
     $graph2->add_literal_triple($uri2, $labeller->qname_to_uri('foaf:surname'), 'O\'ther');
     // Save the graphs and ensure that table rows are generated
     $tripod = new \Tripod\Mongo\Driver($this->defaultPodName, $this->defaultStoreName, array('defaultContext' => $this->defaultContext, OP_ASYNC => array(OP_VIEWS => false, OP_TABLES => false, OP_SEARCH => false)));
     $tripod->saveChanges(new \Tripod\ExtendedGraph(), $graph);
     $tableRows = $tripod->getTableRows('t_users', array(_ID_KEY . '.' . _ID_RESOURCE => $uriAlias, _ID_KEY . '.' . _ID_CONTEXT => $this->defaultContext));
     $this->assertEquals(1, $tableRows['head']['count']);
     $tripod->saveChanges(new \Tripod\ExtendedGraph(), $graph2);
     $tableRows = $tripod->getTableRows('t_users', array(_ID_KEY . '.' . _ID_RESOURCE => $uriAlias2, _ID_KEY . '.' . _ID_CONTEXT => $this->defaultContext));
     $this->assertEquals(1, $tableRows['head']['count']);
     /** @var \Tripod\Mongo\Driver|PHPUnit_Framework_MockObject_MockObject $mockTripod */
     $mockTripod = $this->getMockBuilder('\\Tripod\\Mongo\\Driver')->setMethods(array('getDataUpdater'))->setConstructorArgs(array($this->defaultPodName, $this->defaultStoreName, array('defaultContext' => $this->defaultContext, OP_ASYNC => array(OP_VIEWS => false, OP_TABLES => false, OP_SEARCH => false))))->getMock();
     /** @var \Tripod\Mongo\Updates|PHPUnit_Framework_MockObject_MockObject $mockUpdates */
     $mockTripodUpdates = $this->getMockBuilder('\\Tripod\\Mongo\\Updates')->setConstructorArgs(array($mockTripod, array('defaultContext' => $this->defaultContext, OP_ASYNC => array(OP_VIEWS => false, OP_TABLES => false, OP_SEARCH => false))))->setMethods(array('processSyncOperations'))->getMock();
     $mockTripod->expects($this->once())->method('getDataUpdater')->will($this->returnValue($mockTripodUpdates));
     $expectedSubjectsAndPredicatesOfChange = array($uriAlias => array('rdf:type', 'foaf:firstName', 'foaf:surname'), $uriAlias2 => array('rdf:type', 'foaf:firstName', 'foaf:surname'));
     $mockTripodUpdates->expects($this->once())->method('processSyncOperations')->with($expectedSubjectsAndPredicatesOfChange, $this->defaultContext);
     $graph->add_graph($graph2);
     // Delete both user resources
     $mockTripod->saveChanges($graph, new \Tripod\ExtendedGraph());
     $deletedGraph = $mockTripod->describeResources(array($uri, $uri2));
     $this->assertTrue($deletedGraph->is_empty());
     // Manually walk through the tables operation
     /** @var \Tripod\Mongo\Composites\Tables $tables */
     $tables = $mockTripod->getComposite(OP_TABLES);
     $expectedImpactedSubjects = array(new \Tripod\Mongo\ImpactedSubject(array(_ID_RESOURCE => $uriAlias, _ID_CONTEXT => $this->defaultContext), OP_TABLES, $this->defaultStoreName, $this->defaultPodName, array('t_users')), new \Tripod\Mongo\ImpactedSubject(array(_ID_RESOURCE => $uriAlias2, _ID_CONTEXT => $this->defaultContext), OP_TABLES, $this->defaultStoreName, $this->defaultPodName, array('t_users')));
     $this->assertEquals($expectedImpactedSubjects, $tables->getImpactedSubjects($expectedSubjectsAndPredicatesOfChange, $this->defaultContext));
     foreach ($expectedImpactedSubjects as $subject) {
         $tables->update($subject);
     }
     $tableRows = $tripod->getTableRows('t_users', array(_ID_KEY . '.' . _ID_RESOURCE => $uriAlias, _ID_KEY . '.' . _ID_CONTEXT => $this->defaultContext));
     $this->assertEquals(0, $tableRows['head']['count']);
     $tableRows = $tripod->getTableRows('t_users', array(_ID_KEY . '.' . _ID_RESOURCE => $uriAlias2, _ID_KEY . '.' . _ID_CONTEXT => $this->defaultContext));
     $this->assertEquals(0, $tableRows['head']['count']);
 }
 public function testDeleteResourceCreatesImpactedSubjects()
 {
     $uri = 'http://example.com/resources/' . uniqid();
     $labeller = new Tripod\Mongo\Labeller();
     $uriAlias = $labeller->uri_to_alias($uri);
     $creatorUri = 'http://example.com/identities/oscar-wilde';
     $creatorUriAlias = $labeller->uri_to_alias($creatorUri);
     $graph = new \Tripod\ExtendedGraph();
     $graph->add_resource_triple($uri, RDF_TYPE, $labeller->qname_to_uri('acorn:Resource'));
     $graph->add_resource_triple($uri, RDF_TYPE, $labeller->qname_to_uri('bibo:Book'));
     $graph->add_literal_triple($uri, $labeller->qname_to_uri('dct:title'), 'The Importance of Being Earnest');
     $graph->add_literal_triple($uri, $labeller->qname_to_uri('dct:subject'), 'Plays -- Satire');
     $graph->add_resource_triple($uri, $labeller->qname_to_uri('dct:creator'), $creatorUri);
     $uri2 = 'http://example.com/resources/' . uniqid();
     $uriAlias2 = $labeller->uri_to_alias($uri2);
     $graph2 = new \Tripod\ExtendedGraph();
     $graph2->add_resource_triple($uri2, RDF_TYPE, $labeller->qname_to_uri('acorn:Resource'));
     $graph2->add_resource_triple($uri2, RDF_TYPE, $labeller->qname_to_uri('bibo:Book'));
     $graph2->add_literal_triple($uri2, $labeller->qname_to_uri('dct:title'), 'The Picture of Dorian Gray');
     $graph2->add_literal_triple($uri2, $labeller->qname_to_uri('dct:subject'), 'Portraits -- Fiction');
     $graph2->add_resource_triple($uri2, $labeller->qname_to_uri('dct:creator'), $creatorUri);
     $graph3 = new \Tripod\ExtendedGraph();
     $graph3->add_resource_triple($creatorUri, RDF_TYPE, $labeller->qname_to_uri('foaf:Person'));
     $graph3->add_literal_triple($creatorUri, $labeller->qname_to_uri('foaf:name'), 'Oscar Wilde');
     // Save the graphs and ensure that table rows are generated
     $tripod = new \Tripod\Mongo\Driver($this->defaultPodName, $this->defaultStoreName, array('defaultContext' => $this->defaultContext, OP_ASYNC => array(OP_VIEWS => false, OP_TABLES => false, OP_SEARCH => false)));
     // Save the author graph first so the joins work
     $tripod->saveChanges(new \Tripod\ExtendedGraph(), $graph3);
     $tripod->saveChanges(new \Tripod\ExtendedGraph(), $graph);
     $collection = \Tripod\Mongo\Config::getInstance()->getCollectionForSearchDocument($this->defaultStoreName, 'i_search_resource');
     $query = array(_ID_KEY => array(_ID_RESOURCE => $uriAlias, _ID_CONTEXT => $this->defaultContext, _ID_TYPE => 'i_search_resource'));
     $this->assertEquals(1, $collection->count($query));
     $tripod->saveChanges(new \Tripod\ExtendedGraph(), $graph2);
     $query[_ID_KEY][_ID_RESOURCE] = $uriAlias2;
     $this->assertEquals(1, $collection->count($query));
     $impactQuery = array(_ID_KEY . '.' . _ID_TYPE => 'i_search_resource', '_impactIndex' => array(_ID_RESOURCE => $creatorUriAlias, _ID_CONTEXT => $this->defaultContext), 'result.author' => 'Oscar Wilde');
     $this->assertEquals(2, $collection->count($impactQuery));
     /** @var \Tripod\Mongo\Driver|PHPUnit_Framework_MockObject_MockObject $mockTripod */
     $mockTripod = $this->getMockBuilder('\\Tripod\\Mongo\\Driver')->setMethods(array('getDataUpdater'))->setConstructorArgs(array($this->defaultPodName, $this->defaultStoreName, array('defaultContext' => $this->defaultContext, OP_ASYNC => array(OP_VIEWS => false, OP_TABLES => false, OP_SEARCH => false))))->getMock();
     $mockTripodUpdates = $this->getMockBuilder('\\Tripod\\Mongo\\Updates')->setConstructorArgs(array($mockTripod, array('defaultContext' => $this->defaultContext, OP_ASYNC => array(OP_VIEWS => false, OP_TABLES => false, OP_SEARCH => false))))->setMethods(array('processSyncOperations'))->getMock();
     $mockTripod->expects($this->once())->method('getDataUpdater')->will($this->returnValue($mockTripodUpdates));
     $expectedSubjectsAndPredicatesOfChange = array($creatorUriAlias => array('rdf:type', 'foaf:name'));
     $mockTripodUpdates->expects($this->once())->method('processSyncOperations')->with($expectedSubjectsAndPredicatesOfChange, $this->defaultContext);
     // Delete creator resource
     $mockTripod->saveChanges($graph3, new \Tripod\ExtendedGraph());
     $deletedGraph = $mockTripod->describeResource($creatorUri);
     $this->assertTrue($deletedGraph->is_empty());
     // Manually walk through the tables operation
     /** @var \Tripod\Mongo\Composites\SearchIndexer $search */
     $search = $mockTripod->getComposite(OP_SEARCH);
     $expectedImpactedSubjects = array(new \Tripod\Mongo\ImpactedSubject(array(_ID_RESOURCE => $uriAlias, _ID_CONTEXT => $this->defaultContext), OP_SEARCH, $this->defaultStoreName, $this->defaultPodName, array('i_search_resource')), new \Tripod\Mongo\ImpactedSubject(array(_ID_RESOURCE => $uriAlias2, _ID_CONTEXT => $this->defaultContext), OP_SEARCH, $this->defaultStoreName, $this->defaultPodName, array('i_search_resource')));
     $this->assertEquals($expectedImpactedSubjects, $search->getImpactedSubjects($expectedSubjectsAndPredicatesOfChange, $this->defaultContext));
     foreach ($expectedImpactedSubjects as $subject) {
         $search->update($subject);
     }
     $query = array(_ID_KEY => array(_ID_RESOURCE => $uriAlias, _ID_CONTEXT => $this->defaultContext, _ID_TYPE => 'i_search_resource'));
     $this->assertEquals(1, $collection->count($query));
     $query[_ID_KEY][_ID_RESOURCE] = $uriAlias2;
     $this->assertEquals(1, $collection->count($query));
     // Deleted resource will still be impact indexes because join still exists
     $impactQuery = array(_ID_KEY . '.' . _ID_TYPE => 'i_search_resource', '_impactIndex' => array(_ID_RESOURCE => $creatorUriAlias, _ID_CONTEXT => $this->defaultContext));
     $this->assertEquals(2, $collection->count($impactQuery));
     // But the document should have been regenerated without the value
     $impactQuery['result.author'] = 'Oscar Wilde';
     $this->assertEquals(0, $collection->count($impactQuery));
 }