123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119 |
- <?php
- /**
- * Copyright (c) 2007-2011, Servigistics, Inc.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * - Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * - Neither the name of Servigistics, Inc. nor the names of
- * its contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- *
- * @copyright Copyright 2007-2011 Servigistics, Inc. (http://servigistics.com)
- * @license http://solr-php-client.googlecode.com/svn/trunk/COPYING New BSD
- *
- * @package Apache
- * @subpackage Solr
- * @author Donovan Jimenez <djimenez@conduit-it.com>
- */
- /**
- * Apache_Solr_Service Unit Test
- */
- class Apache_Solr_ServiceTest extends Apache_Solr_ServiceAbstractTest
- {
- public function getFixture()
- {
- return new Apache_Solr_Service();
- }
-
- public function getMockHttpTransportInterface()
- {
- return $this->getMock(
- 'Apache_Solr_HttpTransport_Interface',
- array(
- 'getDefaultTimeout',
- 'setDefaultTimeout',
- 'performGetRequest',
- 'performHeadRequest',
- 'performPostRequest',
- )
- );
- }
-
- //================================================================//
- // ATTEMPT TO MOVE THESE TO ServiceAbstractTest AT SOME POINT //
- // Apache_Solr_Service_Balancer will need functions added //
- //================================================================//
- public function testGetHttpTransportWithDefaultConstructor()
- {
- $fixture = new Apache_Solr_Service();
-
- $httpTransport = $fixture->getHttpTransport();
-
- $this->assertInstanceOf('Apache_Solr_HttpTransport_Interface', $httpTransport, 'Default http transport does not implement interface');
- $this->assertInstanceOf('Apache_Solr_HttpTransport_FileGetContents', $httpTransport, 'Default http transport is not URL Wrapper implementation');
- }
-
-
- public function testSetHttpTransport()
- {
- $newTransport = new Apache_Solr_HttpTransport_Curl();
- $fixture = new Apache_Solr_Service();
-
- $fixture->setHttpTransport($newTransport);
- $httpTransport = $fixture->getHttpTransport();
-
- $this->assertInstanceOf('Apache_Solr_HttpTransport_Interface', $httpTransport);
- $this->assertInstanceOf('Apache_Solr_HttpTransport_Curl', $httpTransport);
- $this->assertEquals($newTransport, $httpTransport);
-
- }
-
- public function testSetHttpTransportWithConstructor()
- {
- $newTransport = new Apache_Solr_HttpTransport_Curl();
-
- $fixture = new Apache_Solr_Service('localhost', 8180, '/solr/', $newTransport);
-
- $fixture->setHttpTransport($newTransport);
- $httpTransport = $fixture->getHttpTransport();
-
- $this->assertInstanceOf('Apache_Solr_HttpTransport_Interface', $httpTransport);
- $this->assertInstanceOf('Apache_Solr_HttpTransport_Curl', $httpTransport);
- $this->assertEquals($newTransport, $httpTransport);
- }
- public function testGetCollapseSingleValueArraysWithDefaultConstructor()
- {
- $fixture = $this->getFixture();
-
- $this->assertTrue($fixture->getCollapseSingleValueArrays());
- }
-
- public function testSetCollapseSingleValueArrays()
- {
- $fixture = $this->getFixture();
-
- $fixture->setCollapseSingleValueArrays(false);
- $this->assertFalse($fixture->getCollapseSingleValueArrays());
- }
-
- public function testGetNamedListTreatmetnWithDefaultConstructor()
- {
- $fixture = $this->getFixture();
-
- $this->assertEquals(Apache_Solr_Service::NAMED_LIST_MAP, $fixture->getNamedListTreatment());
- }
-
- public function testSetNamedListTreatment()
- {
- $fixture = $this->getFixture();
-
- $fixture->setNamedListTreatment(Apache_Solr_Service::NAMED_LIST_FLAT);
- $this->assertEquals(Apache_Solr_Service::NAMED_LIST_FLAT, $fixture->getNamedListTreatment());
-
- $fixture->setNamedListTreatment(Apache_Solr_Service::NAMED_LIST_MAP);
- $this->assertEquals(Apache_Solr_Service::NAMED_LIST_MAP, $fixture->getNamedListTreatment());
- }
-
- /**
- * @expectedException Apache_Solr_InvalidArgumentException
- */
- public function testSetNamedListTreatmentInvalidArgumentException()
- {
- $fixture = $this->getFixture();
-
- $fixture->setNamedListTreatment("broken");
- }
-
- //================================================================//
- // END SECTION OF CODE THAT SHOULD BE MOVED //
- // Apache_Solr_Service_Balancer will need functions added //
- //================================================================//
-
- public function testConstructorDefaultArguments()
- {
- $fixture = new Apache_Solr_Service();
-
- $this->assertInstanceOf('Apache_Solr_Service', $fixture);
- }
- public function testGetHostWithDefaultConstructor()
- {
- $fixture = new Apache_Solr_Service();
- $host = $fixture->getHost();
-
- $this->assertEquals("localhost", $host);
- }
-
- public function testSetHost()
- {
- $newHost = "example.com";
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHost($newHost);
- $host = $fixture->getHost();
-
- $this->assertEquals($newHost, $host);
- }
-
- /**
- * @expectedException Apache_Solr_InvalidArgumentException
- */
- public function testSetEmptyHost()
- {
- $fixture = new Apache_Solr_Service();
-
- // should throw an invalid argument exception
- $fixture->setHost("");
- }
-
- public function testSetHostWithConstructor()
- {
- $newHost = "example.com";
-
- $fixture = new Apache_Solr_Service($newHost);
- $host = $fixture->getHost();
-
- $this->assertEquals($newHost, $host);
- }
-
- public function testGetPortWithDefaultConstructor()
- {
- $fixture = new Apache_Solr_Service();
- $port = $fixture->getPort();
-
- $this->assertEquals(8180, $port);
- }
-
- public function testSetPort()
- {
- $newPort = 12345;
-
- $fixture = new Apache_Solr_Service();
- $fixture->setPort($newPort);
- $port = $fixture->getPort();
-
- $this->assertEquals($newPort, $port);
- }
-
- /**
- * @expectedException Apache_Solr_InvalidArgumentException
- */
- public function testSetPortWithInvalidArgument()
- {
- $fixture = new Apache_Solr_Service();
-
- $fixture->setPort("broken");
- }
-
- public function testSetPortWithConstructor()
- {
- $newPort = 12345;
-
- $fixture = new Apache_Solr_Service('locahost', $newPort);
- $port = $fixture->getPort();
-
- $this->assertEquals($newPort, $port);
- }
-
- public function testGetPathWithDefaultConstructor()
- {
- $fixture = new Apache_Solr_Service();
- $path = $fixture->getPath();
-
- $this->assertEquals("/solr/", $path);
- }
-
- public function testSetPath()
- {
- $newPath = "/new/path/";
-
- $fixture = new Apache_Solr_Service();
- $fixture->setPath($newPath);
- $path = $fixture->getPath();
-
- $this->assertEquals($path, $newPath);
- }
-
- public function testSetPathWillAddContainingSlashes()
- {
- $newPath = "new/path";
- $containedPath = "/{$newPath}/";
-
- $fixture = new Apache_Solr_Service();
- $fixture->setPath($newPath);
- $path = $fixture->getPath();
-
- $this->assertEquals($containedPath, $path, 'setPath did not ensure propertly wrapped with slashes');
- }
-
- public function testSetPathWithConstructor()
- {
- $newPath = "/new/path/";
-
- $fixture = new Apache_Solr_Service('localhost', 8180, $newPath);
- $path = $fixture->getPath();
-
- $this->assertEquals($newPath, $path);
- }
-
-
- public function testGetDefaultTimeoutCallsThroughToTransport()
- {
- $fixture = new Apache_Solr_Service();
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call
- $mockTransport->expects($this->once())->method('getDefaultTimeout');
-
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->getDefaultTimeout();
- }
-
- public function testSetDefaultTimeoutCallsThroughToTransport()
- {
- $timeout = 12345;
- $fixture = new Apache_Solr_Service();
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call
- $mockTransport->expects($this->once())->method('setDefaultTimeout')->with($this->equalTo($timeout));
-
- $fixture->setHttpTransport($mockTransport);
- $fixture->setDefaultTimeout($timeout);
- }
-
- public function testPing()
- {
- $expectedUrl = "http://localhost:8180/solr/admin/ping";
- $expectedTimeout = 2;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performHeadRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- // call ping
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
- $time = $fixture->ping();
-
- $this->assertGreaterThan(0, $time);
- }
-
- public function testPingReturnsFalse()
- {
- $expectedUrl = "http://localhost:8180/solr/admin/ping";
- $expectedTimeout = 2;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performHeadRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get0Response()));
-
- // call ping
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $this->assertFalse($fixture->ping());
- }
-
- public function testThreads()
- {
- $expectedUrl = "http://localhost:8180/solr/admin/threads?wt=json";
- $expectedTimeout = false;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performGetRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- // call threads
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
- $fixture->threads();
- }
-
- /**
- * @expectedException Apache_Solr_HttpTransportException
- */
- public function testThreads404()
- {
- $expectedUrl = "http://localhost:8180/solr/admin/threads?wt=json";
- $expectedTimeout = false;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performGetRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get404Response()));
-
- // call threads
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
- $fixture->threads();
- }
-
- public function testAdd()
- {
- $postData = "does not have to be valid";
-
- $expectedUrl = "http://localhost:8180/solr/update?wt=json";
- $expectedTimeout = false;
- $expectedPostData = $postData;
- $expectedContentType = "text/xml; charset=UTF-8"; // default for _sendRawPost
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($postData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- // call add
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
- $fixture->add($postData);
- }
-
- /**
- * @expectedException Apache_Solr_HttpTransportException
- */
- public function testAdd400()
- {
- $postData = "does not have to be valid";
-
- $expectedUrl = "http://localhost:8180/solr/update?wt=json";
- $expectedTimeout = false;
- $expectedPostData = $postData;
- $expectedContentType = "text/xml; charset=UTF-8"; // default for _sendRawPost
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($postData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get400Response()));
-
- // call add
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
- $fixture->add($postData);
- }
-
- public function testAddDocument()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- // url
- $this->equalTo('http://localhost:8180/solr/update?wt=json'),
-
- // raw post
- $this->equalTo('<add allowDups="false" overwritePending="true" overwriteCommitted="true"><doc></doc></add>'),
-
- // content type
- $this->equalTo('text/xml; charset=UTF-8'),
-
- // timeout
- $this->equalTo(false)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $document = new Apache_Solr_Document();
-
- $fixture->addDocument($document);
- }
-
- public function testAddDocumentWithNonDefaultParameters()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- // url
- $this->equalTo('http://localhost:8180/solr/update?wt=json'),
-
- // raw post
- $this->equalTo('<add allowDups="true" overwritePending="false" overwriteCommitted="false" commitWithin="3600"><doc></doc></add>'),
-
- // content type
- $this->equalTo('text/xml; charset=UTF-8'),
-
- // timeout
- $this->equalTo(false)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $document = new Apache_Solr_Document();
-
- $fixture->addDocument($document, true, false, false, 3600);
- }
-
- public function testAddDocumentWithFields()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- // url
- $this->equalTo('http://localhost:8180/solr/update?wt=json'),
-
- // raw post
- $this->equalTo('<add allowDups="false" overwritePending="true" overwriteCommitted="true"><doc><field name="guid">global unique id</field><field name="field">value</field><field name="multivalue">value 1</field><field name="multivalue">value 2</field></doc></add>'),
-
- // content type
- $this->equalTo('text/xml; charset=UTF-8'),
-
- // timeout
- $this->equalTo(false)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $document = new Apache_Solr_Document();
- $document->guid = "global unique id";
- $document->field = "value";
- $document->multivalue = array("value 1", "value 2");
-
- $fixture->addDocument($document);
- }
-
- public function testAddDocumentWithFieldBoost()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- // url
- $this->equalTo('http://localhost:8180/solr/update?wt=json'),
-
- // raw post
- $this->equalTo('<add allowDups="false" overwritePending="true" overwriteCommitted="true"><doc><field name="guid">global unique id</field><field name="field" boost="2">value</field><field name="multivalue" boost="3">value 1</field><field name="multivalue">value 2</field></doc></add>'),
-
- // content type
- $this->equalTo('text/xml; charset=UTF-8'),
-
- // timeout
- $this->equalTo(false)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $document = new Apache_Solr_Document();
- $document->guid = "global unique id";
-
- $document->field = "value";
- $document->setFieldBoost('field', 2);
-
- $document->multivalue = array("value 1", "value 2");
- $document->setFieldBoost('multivalue', 3);
-
- $fixture->addDocument($document);
- }
-
- public function testAddDocumentWithDocumentBoost()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- // url
- $this->equalTo('http://localhost:8180/solr/update?wt=json'),
-
- // raw post
- $this->equalTo('<add allowDups="false" overwritePending="true" overwriteCommitted="true"><doc boost="2"><field name="guid">global unique id</field><field name="field">value</field></doc></add>'),
-
- // content type
- $this->equalTo('text/xml; charset=UTF-8'),
-
- // timeout
- $this->equalTo(false)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $document = new Apache_Solr_Document();
- $document->setBoost(2);
- $document->guid = "global unique id";
- $document->field = "value";
-
- $fixture->addDocument($document);
- }
-
- public function testAddDocuments()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- // url
- $this->equalTo('http://localhost:8180/solr/update?wt=json'),
-
- // raw post
- $this->equalTo('<add allowDups="false" overwritePending="true" overwriteCommitted="true"><doc></doc><doc></doc></add>'),
-
- // content type
- $this->equalTo('text/xml; charset=UTF-8'),
-
- // timeout
- $this->equalTo(false)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $documents = array(
- new Apache_Solr_Document(),
- new Apache_Solr_Document()
- );
-
- $fixture->addDocuments($documents);
- }
-
- public function testAddDocumentsWithNonDefaultParameters()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- // url
- $this->equalTo('http://localhost:8180/solr/update?wt=json'),
-
- // raw post
- $this->equalTo('<add allowDups="true" overwritePending="false" overwriteCommitted="false" commitWithin="3600"><doc></doc><doc></doc></add>'),
-
- // content type
- $this->equalTo('text/xml; charset=UTF-8'),
-
- // timeout
- $this->equalTo(false)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $documents = array(
- new Apache_Solr_Document(),
- new Apache_Solr_Document()
- );
-
- $fixture->addDocuments($documents, true, false, false, 3600);
- }
-
- public function testCommit()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- // url
- $this->equalTo('http://localhost:8180/solr/update?wt=json'),
-
- // raw post
- $this->equalTo('<commit expungeDeletes="false" waitFlush="true" waitSearcher="true" />'),
-
- // content type
- $this->equalTo('text/xml; charset=UTF-8'),
-
- // timeout
- $this->equalTo(3600)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->commit();
- }
-
- public function testCommitWithNonDefaultParameters()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- // url
- $this->equalTo('http://localhost:8180/solr/update?wt=json'),
-
- // raw post
- $this->equalTo('<commit expungeDeletes="true" waitFlush="false" waitSearcher="false" />'),
-
- // content type
- $this->equalTo('text/xml; charset=UTF-8'),
-
- // timeout
- $this->equalTo(7200)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->commit(true, false, false, 7200);
- }
-
- public function testDelete()
- {
- $postData = "does not have to be valid";
-
- $expectedUrl = "http://localhost:8180/solr/update?wt=json";
- $expectedTimeout = 3600; // default for delete
- $expectedPostData = $postData;
- $expectedContentType = "text/xml; charset=UTF-8"; // default for _sendRawPost
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($postData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- // call add
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
- $fixture->delete($postData);
- }
-
- public function testDeleteById()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->deleteById("does not exist");
- }
-
- public function testDeleteByMultipleIds()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->deleteByMultipleIds(array(1, 2, 3));
- }
-
- public function testDeleteByQuery()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->deleteByQuery("*:*");
- }
-
- public function testExtracts()
- {
- $extractFile = __FILE__;
-
- $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=ServiceTest.php&wt=json&json.nl=map";
- $expectedPostData = file_get_contents($extractFile);
- $expectedContentType = 'application/octet-stream'; // default for extract
- $expectedTimeout = false;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($expectedPostData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->extract($extractFile);
- }
-
- /**
- * @expectedException Apache_Solr_InvalidArgumentException
- */
- public function testExtractWithInvalidParams()
- {
- $extractFile = __FILE__;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->extract($extractFile, "invalid");
- }
-
- /**
- * @expectedException Apache_Solr_InvalidArgumentException
- */
- public function testExtractFromStringWithInvalidParams()
- {
- $extractFileData = "does not matter what it is";
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->extractFromString($extractFileData, "invalid");
- }
-
- public function testExtractsWithNullParams()
- {
- $extractFile = __FILE__;
-
- $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=ServiceTest.php&wt=json&json.nl=map";
- $expectedPostData = file_get_contents($extractFile);
- $expectedContentType = 'application/octet-stream'; // default for extract
- $expectedTimeout = false;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($expectedPostData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->extract($extractFile, null);
- }
-
- /**
- * @expectedException Apache_Solr_InvalidArgumentException
- */
- public function testExtractWithEmptyFile()
- {
- $extractFile = "iDontExist.txt";
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->extract($extractFile);
- }
-
- public function testExtractsWithDocument()
- {
- $extractFile = __FILE__;
-
- $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=ServiceTest.php&wt=json&json.nl=map&boost.field=2&literal.field=literal+value";
- $expectedPostData = file_get_contents($extractFile);
- $expectedContentType = 'application/octet-stream'; // default for extract
- $expectedTimeout = false;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with($this->equalTo($expectedUrl), $this->equalTo($expectedPostData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $literals = new Apache_Solr_Document();
- $literals->field = "literal value";
- $literals->setFieldBoost('field', 2);
-
- $fixture->extract($extractFile, null, $literals);
- }
-
- public function testExtractWithUrlDefers()
- {
- $extractUrl = "http://example.com";
-
- $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=http%3A%2F%2Fexample.com&wt=json&json.nl=map";
- $expectedPostData = Apache_Solr_HttpTransport_ResponseTest::BODY_200;
- $expectedContentType = 'application/octet-stream'; // default for extract
- $expectedTimeout = false;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performGetRequest')
- ->with(
- $this->equalTo($extractUrl)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- $this->equalTo($expectedUrl),
- $this->equalTo($expectedPostData),
- $this->equalTo($expectedContentType),
- $this->equalTo($expectedTimeout)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->extract($extractUrl);
- }
-
- public function testExtractFromUrl()
- {
- $extractUrl = "http://example.com";
-
- $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=http%3A%2F%2Fexample.com&wt=json&json.nl=map";
- $expectedPostData = Apache_Solr_HttpTransport_ResponseTest::BODY_200;
- $expectedContentType = 'application/octet-stream'; // default for extract
- $expectedTimeout = false;
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performGetRequest')
- ->with(
- $this->equalTo($extractUrl)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->with(
- $this->equalTo($expectedUrl),
- $this->equalTo($expectedPostData),
- $this->equalTo($expectedContentType),
- $this->equalTo($expectedTimeout)
- )
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->extractFromUrl($extractUrl);
- }
-
- /**
- * @expectedException Apache_Solr_InvalidArgumentException
- */
- public function testExtractFromUrlWithInvalidParams()
- {
- $extractUrl = "http://example.com";
-
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->extractFromUrl($extractUrl, "invalid");
- }
-
- public function testOptimize()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_Service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->optimize();
- }
-
- public function testSearch()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performGetRequest')
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->search("solr");
- }
-
- /**
- * @expectedException Apache_Solr_InvalidArgumentException
- */
- public function testSearchWithInvalidParams()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->search("solr", 0, 10, "invalid");
-
- $this->fail("Should have through InvalidArgumentException");
- }
-
- public function testSearchWithEmptyParams()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performGetRequest')
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->search("solr", 0, 10, null);
- }
-
- public function testSearchWithPostMethod()
- {
- // set a mock transport
- $mockTransport = $this->getMockHttpTransportInterface();
-
- // setup expected call and response
- $mockTransport->expects($this->once())
- ->method('performPostRequest')
- ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
-
- $fixture = new Apache_Solr_service();
- $fixture->setHttpTransport($mockTransport);
-
- $fixture->search("solr", 0, 10, array(), Apache_Solr_Service::METHOD_POST);
- }
-
- /**
- * @expectedException Apache_Solr_InvalidArgumentException
- */
- public function testSearchWithInvalidMethod()
- {
- $fixture = new Apache_Solr_service();
-
- $fixture->search("solr", 0, 10, array(), "INVALID METHOD");
- }
- }
|