ServiceTest.php 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119
  1. <?php
  2. /**
  3. * Copyright (c) 2007-2011, Servigistics, Inc.
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions are met:
  8. *
  9. * - Redistributions of source code must retain the above copyright notice,
  10. * this list of conditions and the following disclaimer.
  11. * - Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * - Neither the name of Servigistics, Inc. nor the names of
  15. * its contributors may be used to endorse or promote products derived from
  16. * this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  19. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  22. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  23. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  24. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  25. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  26. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  27. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  28. * POSSIBILITY OF SUCH DAMAGE.
  29. *
  30. * @copyright Copyright 2007-2011 Servigistics, Inc. (http://servigistics.com)
  31. * @license http://solr-php-client.googlecode.com/svn/trunk/COPYING New BSD
  32. *
  33. * @package Apache
  34. * @subpackage Solr
  35. * @author Donovan Jimenez <djimenez@conduit-it.com>
  36. */
  37. /**
  38. * Apache_Solr_Service Unit Test
  39. */
  40. class Apache_Solr_ServiceTest extends Apache_Solr_ServiceAbstractTest
  41. {
  42. public function getFixture()
  43. {
  44. return new Apache_Solr_Service();
  45. }
  46. public function getMockHttpTransportInterface()
  47. {
  48. return $this->getMock(
  49. 'Apache_Solr_HttpTransport_Interface',
  50. array(
  51. 'getDefaultTimeout',
  52. 'setDefaultTimeout',
  53. 'performGetRequest',
  54. 'performHeadRequest',
  55. 'performPostRequest',
  56. )
  57. );
  58. }
  59. //================================================================//
  60. // ATTEMPT TO MOVE THESE TO ServiceAbstractTest AT SOME POINT //
  61. // Apache_Solr_Service_Balancer will need functions added //
  62. //================================================================//
  63. public function testGetHttpTransportWithDefaultConstructor()
  64. {
  65. $fixture = new Apache_Solr_Service();
  66. $httpTransport = $fixture->getHttpTransport();
  67. $this->assertInstanceOf('Apache_Solr_HttpTransport_Interface', $httpTransport, 'Default http transport does not implement interface');
  68. $this->assertInstanceOf('Apache_Solr_HttpTransport_FileGetContents', $httpTransport, 'Default http transport is not URL Wrapper implementation');
  69. }
  70. public function testSetHttpTransport()
  71. {
  72. $newTransport = new Apache_Solr_HttpTransport_Curl();
  73. $fixture = new Apache_Solr_Service();
  74. $fixture->setHttpTransport($newTransport);
  75. $httpTransport = $fixture->getHttpTransport();
  76. $this->assertInstanceOf('Apache_Solr_HttpTransport_Interface', $httpTransport);
  77. $this->assertInstanceOf('Apache_Solr_HttpTransport_Curl', $httpTransport);
  78. $this->assertEquals($newTransport, $httpTransport);
  79. }
  80. public function testSetHttpTransportWithConstructor()
  81. {
  82. $newTransport = new Apache_Solr_HttpTransport_Curl();
  83. $fixture = new Apache_Solr_Service('localhost', 8180, '/solr/', $newTransport);
  84. $fixture->setHttpTransport($newTransport);
  85. $httpTransport = $fixture->getHttpTransport();
  86. $this->assertInstanceOf('Apache_Solr_HttpTransport_Interface', $httpTransport);
  87. $this->assertInstanceOf('Apache_Solr_HttpTransport_Curl', $httpTransport);
  88. $this->assertEquals($newTransport, $httpTransport);
  89. }
  90. public function testGetCollapseSingleValueArraysWithDefaultConstructor()
  91. {
  92. $fixture = $this->getFixture();
  93. $this->assertTrue($fixture->getCollapseSingleValueArrays());
  94. }
  95. public function testSetCollapseSingleValueArrays()
  96. {
  97. $fixture = $this->getFixture();
  98. $fixture->setCollapseSingleValueArrays(false);
  99. $this->assertFalse($fixture->getCollapseSingleValueArrays());
  100. }
  101. public function testGetNamedListTreatmetnWithDefaultConstructor()
  102. {
  103. $fixture = $this->getFixture();
  104. $this->assertEquals(Apache_Solr_Service::NAMED_LIST_MAP, $fixture->getNamedListTreatment());
  105. }
  106. public function testSetNamedListTreatment()
  107. {
  108. $fixture = $this->getFixture();
  109. $fixture->setNamedListTreatment(Apache_Solr_Service::NAMED_LIST_FLAT);
  110. $this->assertEquals(Apache_Solr_Service::NAMED_LIST_FLAT, $fixture->getNamedListTreatment());
  111. $fixture->setNamedListTreatment(Apache_Solr_Service::NAMED_LIST_MAP);
  112. $this->assertEquals(Apache_Solr_Service::NAMED_LIST_MAP, $fixture->getNamedListTreatment());
  113. }
  114. /**
  115. * @expectedException Apache_Solr_InvalidArgumentException
  116. */
  117. public function testSetNamedListTreatmentInvalidArgumentException()
  118. {
  119. $fixture = $this->getFixture();
  120. $fixture->setNamedListTreatment("broken");
  121. }
  122. //================================================================//
  123. // END SECTION OF CODE THAT SHOULD BE MOVED //
  124. // Apache_Solr_Service_Balancer will need functions added //
  125. //================================================================//
  126. public function testConstructorDefaultArguments()
  127. {
  128. $fixture = new Apache_Solr_Service();
  129. $this->assertInstanceOf('Apache_Solr_Service', $fixture);
  130. }
  131. public function testGetHostWithDefaultConstructor()
  132. {
  133. $fixture = new Apache_Solr_Service();
  134. $host = $fixture->getHost();
  135. $this->assertEquals("localhost", $host);
  136. }
  137. public function testSetHost()
  138. {
  139. $newHost = "example.com";
  140. $fixture = new Apache_Solr_Service();
  141. $fixture->setHost($newHost);
  142. $host = $fixture->getHost();
  143. $this->assertEquals($newHost, $host);
  144. }
  145. /**
  146. * @expectedException Apache_Solr_InvalidArgumentException
  147. */
  148. public function testSetEmptyHost()
  149. {
  150. $fixture = new Apache_Solr_Service();
  151. // should throw an invalid argument exception
  152. $fixture->setHost("");
  153. }
  154. public function testSetHostWithConstructor()
  155. {
  156. $newHost = "example.com";
  157. $fixture = new Apache_Solr_Service($newHost);
  158. $host = $fixture->getHost();
  159. $this->assertEquals($newHost, $host);
  160. }
  161. public function testGetPortWithDefaultConstructor()
  162. {
  163. $fixture = new Apache_Solr_Service();
  164. $port = $fixture->getPort();
  165. $this->assertEquals(8180, $port);
  166. }
  167. public function testSetPort()
  168. {
  169. $newPort = 12345;
  170. $fixture = new Apache_Solr_Service();
  171. $fixture->setPort($newPort);
  172. $port = $fixture->getPort();
  173. $this->assertEquals($newPort, $port);
  174. }
  175. /**
  176. * @expectedException Apache_Solr_InvalidArgumentException
  177. */
  178. public function testSetPortWithInvalidArgument()
  179. {
  180. $fixture = new Apache_Solr_Service();
  181. $fixture->setPort("broken");
  182. }
  183. public function testSetPortWithConstructor()
  184. {
  185. $newPort = 12345;
  186. $fixture = new Apache_Solr_Service('locahost', $newPort);
  187. $port = $fixture->getPort();
  188. $this->assertEquals($newPort, $port);
  189. }
  190. public function testGetPathWithDefaultConstructor()
  191. {
  192. $fixture = new Apache_Solr_Service();
  193. $path = $fixture->getPath();
  194. $this->assertEquals("/solr/", $path);
  195. }
  196. public function testSetPath()
  197. {
  198. $newPath = "/new/path/";
  199. $fixture = new Apache_Solr_Service();
  200. $fixture->setPath($newPath);
  201. $path = $fixture->getPath();
  202. $this->assertEquals($path, $newPath);
  203. }
  204. public function testSetPathWillAddContainingSlashes()
  205. {
  206. $newPath = "new/path";
  207. $containedPath = "/{$newPath}/";
  208. $fixture = new Apache_Solr_Service();
  209. $fixture->setPath($newPath);
  210. $path = $fixture->getPath();
  211. $this->assertEquals($containedPath, $path, 'setPath did not ensure propertly wrapped with slashes');
  212. }
  213. public function testSetPathWithConstructor()
  214. {
  215. $newPath = "/new/path/";
  216. $fixture = new Apache_Solr_Service('localhost', 8180, $newPath);
  217. $path = $fixture->getPath();
  218. $this->assertEquals($newPath, $path);
  219. }
  220. public function testGetDefaultTimeoutCallsThroughToTransport()
  221. {
  222. $fixture = new Apache_Solr_Service();
  223. // set a mock transport
  224. $mockTransport = $this->getMockHttpTransportInterface();
  225. // setup expected call
  226. $mockTransport->expects($this->once())->method('getDefaultTimeout');
  227. $fixture->setHttpTransport($mockTransport);
  228. $fixture->getDefaultTimeout();
  229. }
  230. public function testSetDefaultTimeoutCallsThroughToTransport()
  231. {
  232. $timeout = 12345;
  233. $fixture = new Apache_Solr_Service();
  234. // set a mock transport
  235. $mockTransport = $this->getMockHttpTransportInterface();
  236. // setup expected call
  237. $mockTransport->expects($this->once())->method('setDefaultTimeout')->with($this->equalTo($timeout));
  238. $fixture->setHttpTransport($mockTransport);
  239. $fixture->setDefaultTimeout($timeout);
  240. }
  241. public function testPing()
  242. {
  243. $expectedUrl = "http://localhost:8180/solr/admin/ping";
  244. $expectedTimeout = 2;
  245. // set a mock transport
  246. $mockTransport = $this->getMockHttpTransportInterface();
  247. // setup expected call and response
  248. $mockTransport->expects($this->once())
  249. ->method('performHeadRequest')
  250. ->with($this->equalTo($expectedUrl), $this->equalTo($expectedTimeout))
  251. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  252. // call ping
  253. $fixture = new Apache_Solr_service();
  254. $fixture->setHttpTransport($mockTransport);
  255. $time = $fixture->ping();
  256. $this->assertGreaterThan(0, $time);
  257. }
  258. public function testPingReturnsFalse()
  259. {
  260. $expectedUrl = "http://localhost:8180/solr/admin/ping";
  261. $expectedTimeout = 2;
  262. // set a mock transport
  263. $mockTransport = $this->getMockHttpTransportInterface();
  264. // setup expected call and response
  265. $mockTransport->expects($this->once())
  266. ->method('performHeadRequest')
  267. ->with($this->equalTo($expectedUrl), $this->equalTo($expectedTimeout))
  268. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get0Response()));
  269. // call ping
  270. $fixture = new Apache_Solr_service();
  271. $fixture->setHttpTransport($mockTransport);
  272. $this->assertFalse($fixture->ping());
  273. }
  274. public function testThreads()
  275. {
  276. $expectedUrl = "http://localhost:8180/solr/admin/threads?wt=json";
  277. $expectedTimeout = false;
  278. // set a mock transport
  279. $mockTransport = $this->getMockHttpTransportInterface();
  280. // setup expected call and response
  281. $mockTransport->expects($this->once())
  282. ->method('performGetRequest')
  283. ->with($this->equalTo($expectedUrl), $this->equalTo($expectedTimeout))
  284. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  285. // call threads
  286. $fixture = new Apache_Solr_service();
  287. $fixture->setHttpTransport($mockTransport);
  288. $fixture->threads();
  289. }
  290. /**
  291. * @expectedException Apache_Solr_HttpTransportException
  292. */
  293. public function testThreads404()
  294. {
  295. $expectedUrl = "http://localhost:8180/solr/admin/threads?wt=json";
  296. $expectedTimeout = false;
  297. // set a mock transport
  298. $mockTransport = $this->getMockHttpTransportInterface();
  299. // setup expected call and response
  300. $mockTransport->expects($this->once())
  301. ->method('performGetRequest')
  302. ->with($this->equalTo($expectedUrl), $this->equalTo($expectedTimeout))
  303. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get404Response()));
  304. // call threads
  305. $fixture = new Apache_Solr_service();
  306. $fixture->setHttpTransport($mockTransport);
  307. $fixture->threads();
  308. }
  309. public function testAdd()
  310. {
  311. $postData = "does not have to be valid";
  312. $expectedUrl = "http://localhost:8180/solr/update?wt=json";
  313. $expectedTimeout = false;
  314. $expectedPostData = $postData;
  315. $expectedContentType = "text/xml; charset=UTF-8"; // default for _sendRawPost
  316. // set a mock transport
  317. $mockTransport = $this->getMockHttpTransportInterface();
  318. // setup expected call and response
  319. $mockTransport->expects($this->once())
  320. ->method('performPostRequest')
  321. ->with($this->equalTo($expectedUrl), $this->equalTo($postData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
  322. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  323. // call add
  324. $fixture = new Apache_Solr_service();
  325. $fixture->setHttpTransport($mockTransport);
  326. $fixture->add($postData);
  327. }
  328. /**
  329. * @expectedException Apache_Solr_HttpTransportException
  330. */
  331. public function testAdd400()
  332. {
  333. $postData = "does not have to be valid";
  334. $expectedUrl = "http://localhost:8180/solr/update?wt=json";
  335. $expectedTimeout = false;
  336. $expectedPostData = $postData;
  337. $expectedContentType = "text/xml; charset=UTF-8"; // default for _sendRawPost
  338. // set a mock transport
  339. $mockTransport = $this->getMockHttpTransportInterface();
  340. // setup expected call and response
  341. $mockTransport->expects($this->once())
  342. ->method('performPostRequest')
  343. ->with($this->equalTo($expectedUrl), $this->equalTo($postData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
  344. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get400Response()));
  345. // call add
  346. $fixture = new Apache_Solr_service();
  347. $fixture->setHttpTransport($mockTransport);
  348. $fixture->add($postData);
  349. }
  350. public function testAddDocument()
  351. {
  352. // set a mock transport
  353. $mockTransport = $this->getMockHttpTransportInterface();
  354. // setup expected call and response
  355. $mockTransport->expects($this->once())
  356. ->method('performPostRequest')
  357. ->with(
  358. // url
  359. $this->equalTo('http://localhost:8180/solr/update?wt=json'),
  360. // raw post
  361. $this->equalTo('<add allowDups="false" overwritePending="true" overwriteCommitted="true"><doc></doc></add>'),
  362. // content type
  363. $this->equalTo('text/xml; charset=UTF-8'),
  364. // timeout
  365. $this->equalTo(false)
  366. )
  367. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  368. $fixture = new Apache_Solr_service();
  369. $fixture->setHttpTransport($mockTransport);
  370. $document = new Apache_Solr_Document();
  371. $fixture->addDocument($document);
  372. }
  373. public function testAddDocumentWithNonDefaultParameters()
  374. {
  375. // set a mock transport
  376. $mockTransport = $this->getMockHttpTransportInterface();
  377. // setup expected call and response
  378. $mockTransport->expects($this->once())
  379. ->method('performPostRequest')
  380. ->with(
  381. // url
  382. $this->equalTo('http://localhost:8180/solr/update?wt=json'),
  383. // raw post
  384. $this->equalTo('<add allowDups="true" overwritePending="false" overwriteCommitted="false" commitWithin="3600"><doc></doc></add>'),
  385. // content type
  386. $this->equalTo('text/xml; charset=UTF-8'),
  387. // timeout
  388. $this->equalTo(false)
  389. )
  390. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  391. $fixture = new Apache_Solr_service();
  392. $fixture->setHttpTransport($mockTransport);
  393. $document = new Apache_Solr_Document();
  394. $fixture->addDocument($document, true, false, false, 3600);
  395. }
  396. public function testAddDocumentWithFields()
  397. {
  398. // set a mock transport
  399. $mockTransport = $this->getMockHttpTransportInterface();
  400. // setup expected call and response
  401. $mockTransport->expects($this->once())
  402. ->method('performPostRequest')
  403. ->with(
  404. // url
  405. $this->equalTo('http://localhost:8180/solr/update?wt=json'),
  406. // raw post
  407. $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>'),
  408. // content type
  409. $this->equalTo('text/xml; charset=UTF-8'),
  410. // timeout
  411. $this->equalTo(false)
  412. )
  413. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  414. $fixture = new Apache_Solr_service();
  415. $fixture->setHttpTransport($mockTransport);
  416. $document = new Apache_Solr_Document();
  417. $document->guid = "global unique id";
  418. $document->field = "value";
  419. $document->multivalue = array("value 1", "value 2");
  420. $fixture->addDocument($document);
  421. }
  422. public function testAddDocumentWithFieldBoost()
  423. {
  424. // set a mock transport
  425. $mockTransport = $this->getMockHttpTransportInterface();
  426. // setup expected call and response
  427. $mockTransport->expects($this->once())
  428. ->method('performPostRequest')
  429. ->with(
  430. // url
  431. $this->equalTo('http://localhost:8180/solr/update?wt=json'),
  432. // raw post
  433. $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>'),
  434. // content type
  435. $this->equalTo('text/xml; charset=UTF-8'),
  436. // timeout
  437. $this->equalTo(false)
  438. )
  439. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  440. $fixture = new Apache_Solr_service();
  441. $fixture->setHttpTransport($mockTransport);
  442. $document = new Apache_Solr_Document();
  443. $document->guid = "global unique id";
  444. $document->field = "value";
  445. $document->setFieldBoost('field', 2);
  446. $document->multivalue = array("value 1", "value 2");
  447. $document->setFieldBoost('multivalue', 3);
  448. $fixture->addDocument($document);
  449. }
  450. public function testAddDocumentWithDocumentBoost()
  451. {
  452. // set a mock transport
  453. $mockTransport = $this->getMockHttpTransportInterface();
  454. // setup expected call and response
  455. $mockTransport->expects($this->once())
  456. ->method('performPostRequest')
  457. ->with(
  458. // url
  459. $this->equalTo('http://localhost:8180/solr/update?wt=json'),
  460. // raw post
  461. $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>'),
  462. // content type
  463. $this->equalTo('text/xml; charset=UTF-8'),
  464. // timeout
  465. $this->equalTo(false)
  466. )
  467. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  468. $fixture = new Apache_Solr_service();
  469. $fixture->setHttpTransport($mockTransport);
  470. $document = new Apache_Solr_Document();
  471. $document->setBoost(2);
  472. $document->guid = "global unique id";
  473. $document->field = "value";
  474. $fixture->addDocument($document);
  475. }
  476. public function testAddDocuments()
  477. {
  478. // set a mock transport
  479. $mockTransport = $this->getMockHttpTransportInterface();
  480. // setup expected call and response
  481. $mockTransport->expects($this->once())
  482. ->method('performPostRequest')
  483. ->with(
  484. // url
  485. $this->equalTo('http://localhost:8180/solr/update?wt=json'),
  486. // raw post
  487. $this->equalTo('<add allowDups="false" overwritePending="true" overwriteCommitted="true"><doc></doc><doc></doc></add>'),
  488. // content type
  489. $this->equalTo('text/xml; charset=UTF-8'),
  490. // timeout
  491. $this->equalTo(false)
  492. )
  493. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  494. $fixture = new Apache_Solr_service();
  495. $fixture->setHttpTransport($mockTransport);
  496. $documents = array(
  497. new Apache_Solr_Document(),
  498. new Apache_Solr_Document()
  499. );
  500. $fixture->addDocuments($documents);
  501. }
  502. public function testAddDocumentsWithNonDefaultParameters()
  503. {
  504. // set a mock transport
  505. $mockTransport = $this->getMockHttpTransportInterface();
  506. // setup expected call and response
  507. $mockTransport->expects($this->once())
  508. ->method('performPostRequest')
  509. ->with(
  510. // url
  511. $this->equalTo('http://localhost:8180/solr/update?wt=json'),
  512. // raw post
  513. $this->equalTo('<add allowDups="true" overwritePending="false" overwriteCommitted="false" commitWithin="3600"><doc></doc><doc></doc></add>'),
  514. // content type
  515. $this->equalTo('text/xml; charset=UTF-8'),
  516. // timeout
  517. $this->equalTo(false)
  518. )
  519. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  520. $fixture = new Apache_Solr_service();
  521. $fixture->setHttpTransport($mockTransport);
  522. $documents = array(
  523. new Apache_Solr_Document(),
  524. new Apache_Solr_Document()
  525. );
  526. $fixture->addDocuments($documents, true, false, false, 3600);
  527. }
  528. public function testCommit()
  529. {
  530. // set a mock transport
  531. $mockTransport = $this->getMockHttpTransportInterface();
  532. // setup expected call and response
  533. $mockTransport->expects($this->once())
  534. ->method('performPostRequest')
  535. ->with(
  536. // url
  537. $this->equalTo('http://localhost:8180/solr/update?wt=json'),
  538. // raw post
  539. $this->equalTo('<commit expungeDeletes="false" waitFlush="true" waitSearcher="true" />'),
  540. // content type
  541. $this->equalTo('text/xml; charset=UTF-8'),
  542. // timeout
  543. $this->equalTo(3600)
  544. )
  545. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  546. $fixture = new Apache_Solr_Service();
  547. $fixture->setHttpTransport($mockTransport);
  548. $fixture->commit();
  549. }
  550. public function testCommitWithNonDefaultParameters()
  551. {
  552. // set a mock transport
  553. $mockTransport = $this->getMockHttpTransportInterface();
  554. // setup expected call and response
  555. $mockTransport->expects($this->once())
  556. ->method('performPostRequest')
  557. ->with(
  558. // url
  559. $this->equalTo('http://localhost:8180/solr/update?wt=json'),
  560. // raw post
  561. $this->equalTo('<commit expungeDeletes="true" waitFlush="false" waitSearcher="false" />'),
  562. // content type
  563. $this->equalTo('text/xml; charset=UTF-8'),
  564. // timeout
  565. $this->equalTo(7200)
  566. )
  567. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  568. $fixture = new Apache_Solr_Service();
  569. $fixture->setHttpTransport($mockTransport);
  570. $fixture->commit(true, false, false, 7200);
  571. }
  572. public function testDelete()
  573. {
  574. $postData = "does not have to be valid";
  575. $expectedUrl = "http://localhost:8180/solr/update?wt=json";
  576. $expectedTimeout = 3600; // default for delete
  577. $expectedPostData = $postData;
  578. $expectedContentType = "text/xml; charset=UTF-8"; // default for _sendRawPost
  579. // set a mock transport
  580. $mockTransport = $this->getMockHttpTransportInterface();
  581. // setup expected call and response
  582. $mockTransport->expects($this->once())
  583. ->method('performPostRequest')
  584. ->with($this->equalTo($expectedUrl), $this->equalTo($postData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
  585. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  586. // call add
  587. $fixture = new Apache_Solr_service();
  588. $fixture->setHttpTransport($mockTransport);
  589. $fixture->delete($postData);
  590. }
  591. public function testDeleteById()
  592. {
  593. // set a mock transport
  594. $mockTransport = $this->getMockHttpTransportInterface();
  595. // setup expected call and response
  596. $mockTransport->expects($this->once())
  597. ->method('performPostRequest')
  598. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  599. $fixture = new Apache_Solr_Service();
  600. $fixture->setHttpTransport($mockTransport);
  601. $fixture->deleteById("does not exist");
  602. }
  603. public function testDeleteByMultipleIds()
  604. {
  605. // set a mock transport
  606. $mockTransport = $this->getMockHttpTransportInterface();
  607. // setup expected call and response
  608. $mockTransport->expects($this->once())
  609. ->method('performPostRequest')
  610. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  611. $fixture = new Apache_Solr_Service();
  612. $fixture->setHttpTransport($mockTransport);
  613. $fixture->deleteByMultipleIds(array(1, 2, 3));
  614. }
  615. public function testDeleteByQuery()
  616. {
  617. // set a mock transport
  618. $mockTransport = $this->getMockHttpTransportInterface();
  619. // setup expected call and response
  620. $mockTransport->expects($this->once())
  621. ->method('performPostRequest')
  622. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  623. $fixture = new Apache_Solr_Service();
  624. $fixture->setHttpTransport($mockTransport);
  625. $fixture->deleteByQuery("*:*");
  626. }
  627. public function testExtracts()
  628. {
  629. $extractFile = __FILE__;
  630. $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=ServiceTest.php&wt=json&json.nl=map";
  631. $expectedPostData = file_get_contents($extractFile);
  632. $expectedContentType = 'application/octet-stream'; // default for extract
  633. $expectedTimeout = false;
  634. // set a mock transport
  635. $mockTransport = $this->getMockHttpTransportInterface();
  636. // setup expected call and response
  637. $mockTransport->expects($this->once())
  638. ->method('performPostRequest')
  639. ->with($this->equalTo($expectedUrl), $this->equalTo($expectedPostData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
  640. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  641. $fixture = new Apache_Solr_Service();
  642. $fixture->setHttpTransport($mockTransport);
  643. $fixture->extract($extractFile);
  644. }
  645. /**
  646. * @expectedException Apache_Solr_InvalidArgumentException
  647. */
  648. public function testExtractWithInvalidParams()
  649. {
  650. $extractFile = __FILE__;
  651. // set a mock transport
  652. $mockTransport = $this->getMockHttpTransportInterface();
  653. $fixture = new Apache_Solr_Service();
  654. $fixture->setHttpTransport($mockTransport);
  655. $fixture->extract($extractFile, "invalid");
  656. }
  657. /**
  658. * @expectedException Apache_Solr_InvalidArgumentException
  659. */
  660. public function testExtractFromStringWithInvalidParams()
  661. {
  662. $extractFileData = "does not matter what it is";
  663. // set a mock transport
  664. $mockTransport = $this->getMockHttpTransportInterface();
  665. $fixture = new Apache_Solr_Service();
  666. $fixture->setHttpTransport($mockTransport);
  667. $fixture->extractFromString($extractFileData, "invalid");
  668. }
  669. public function testExtractsWithNullParams()
  670. {
  671. $extractFile = __FILE__;
  672. $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=ServiceTest.php&wt=json&json.nl=map";
  673. $expectedPostData = file_get_contents($extractFile);
  674. $expectedContentType = 'application/octet-stream'; // default for extract
  675. $expectedTimeout = false;
  676. // set a mock transport
  677. $mockTransport = $this->getMockHttpTransportInterface();
  678. // setup expected call and response
  679. $mockTransport->expects($this->once())
  680. ->method('performPostRequest')
  681. ->with($this->equalTo($expectedUrl), $this->equalTo($expectedPostData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
  682. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  683. $fixture = new Apache_Solr_Service();
  684. $fixture->setHttpTransport($mockTransport);
  685. $fixture->extract($extractFile, null);
  686. }
  687. /**
  688. * @expectedException Apache_Solr_InvalidArgumentException
  689. */
  690. public function testExtractWithEmptyFile()
  691. {
  692. $extractFile = "iDontExist.txt";
  693. // set a mock transport
  694. $mockTransport = $this->getMockHttpTransportInterface();
  695. $fixture = new Apache_Solr_Service();
  696. $fixture->setHttpTransport($mockTransport);
  697. $fixture->extract($extractFile);
  698. }
  699. public function testExtractsWithDocument()
  700. {
  701. $extractFile = __FILE__;
  702. $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=ServiceTest.php&wt=json&json.nl=map&boost.field=2&literal.field=literal+value";
  703. $expectedPostData = file_get_contents($extractFile);
  704. $expectedContentType = 'application/octet-stream'; // default for extract
  705. $expectedTimeout = false;
  706. // set a mock transport
  707. $mockTransport = $this->getMockHttpTransportInterface();
  708. // setup expected call and response
  709. $mockTransport->expects($this->once())
  710. ->method('performPostRequest')
  711. ->with($this->equalTo($expectedUrl), $this->equalTo($expectedPostData), $this->equalTo($expectedContentType), $this->equalTo($expectedTimeout))
  712. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  713. $fixture = new Apache_Solr_Service();
  714. $fixture->setHttpTransport($mockTransport);
  715. $literals = new Apache_Solr_Document();
  716. $literals->field = "literal value";
  717. $literals->setFieldBoost('field', 2);
  718. $fixture->extract($extractFile, null, $literals);
  719. }
  720. public function testExtractWithUrlDefers()
  721. {
  722. $extractUrl = "http://example.com";
  723. $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=http%3A%2F%2Fexample.com&wt=json&json.nl=map";
  724. $expectedPostData = Apache_Solr_HttpTransport_ResponseTest::BODY_200;
  725. $expectedContentType = 'application/octet-stream'; // default for extract
  726. $expectedTimeout = false;
  727. // set a mock transport
  728. $mockTransport = $this->getMockHttpTransportInterface();
  729. // setup expected call and response
  730. $mockTransport->expects($this->once())
  731. ->method('performGetRequest')
  732. ->with(
  733. $this->equalTo($extractUrl)
  734. )
  735. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  736. $mockTransport->expects($this->once())
  737. ->method('performPostRequest')
  738. ->with(
  739. $this->equalTo($expectedUrl),
  740. $this->equalTo($expectedPostData),
  741. $this->equalTo($expectedContentType),
  742. $this->equalTo($expectedTimeout)
  743. )
  744. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  745. $fixture = new Apache_Solr_Service();
  746. $fixture->setHttpTransport($mockTransport);
  747. $fixture->extract($extractUrl);
  748. }
  749. public function testExtractFromUrl()
  750. {
  751. $extractUrl = "http://example.com";
  752. $expectedUrl = "http://localhost:8180/solr/update/extract?resource.name=http%3A%2F%2Fexample.com&wt=json&json.nl=map";
  753. $expectedPostData = Apache_Solr_HttpTransport_ResponseTest::BODY_200;
  754. $expectedContentType = 'application/octet-stream'; // default for extract
  755. $expectedTimeout = false;
  756. // set a mock transport
  757. $mockTransport = $this->getMockHttpTransportInterface();
  758. // setup expected call and response
  759. $mockTransport->expects($this->once())
  760. ->method('performGetRequest')
  761. ->with(
  762. $this->equalTo($extractUrl)
  763. )
  764. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  765. $mockTransport->expects($this->once())
  766. ->method('performPostRequest')
  767. ->with(
  768. $this->equalTo($expectedUrl),
  769. $this->equalTo($expectedPostData),
  770. $this->equalTo($expectedContentType),
  771. $this->equalTo($expectedTimeout)
  772. )
  773. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  774. $fixture = new Apache_Solr_Service();
  775. $fixture->setHttpTransport($mockTransport);
  776. $fixture->extractFromUrl($extractUrl);
  777. }
  778. /**
  779. * @expectedException Apache_Solr_InvalidArgumentException
  780. */
  781. public function testExtractFromUrlWithInvalidParams()
  782. {
  783. $extractUrl = "http://example.com";
  784. // set a mock transport
  785. $mockTransport = $this->getMockHttpTransportInterface();
  786. $fixture = new Apache_Solr_Service();
  787. $fixture->setHttpTransport($mockTransport);
  788. $fixture->extractFromUrl($extractUrl, "invalid");
  789. }
  790. public function testOptimize()
  791. {
  792. // set a mock transport
  793. $mockTransport = $this->getMockHttpTransportInterface();
  794. // setup expected call and response
  795. $mockTransport->expects($this->once())
  796. ->method('performPostRequest')
  797. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  798. $fixture = new Apache_Solr_Service();
  799. $fixture->setHttpTransport($mockTransport);
  800. $fixture->optimize();
  801. }
  802. public function testSearch()
  803. {
  804. // set a mock transport
  805. $mockTransport = $this->getMockHttpTransportInterface();
  806. // setup expected call and response
  807. $mockTransport->expects($this->once())
  808. ->method('performGetRequest')
  809. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  810. $fixture = new Apache_Solr_service();
  811. $fixture->setHttpTransport($mockTransport);
  812. $fixture->search("solr");
  813. }
  814. /**
  815. * @expectedException Apache_Solr_InvalidArgumentException
  816. */
  817. public function testSearchWithInvalidParams()
  818. {
  819. // set a mock transport
  820. $mockTransport = $this->getMockHttpTransportInterface();
  821. $fixture = new Apache_Solr_service();
  822. $fixture->setHttpTransport($mockTransport);
  823. $fixture->search("solr", 0, 10, "invalid");
  824. $this->fail("Should have through InvalidArgumentException");
  825. }
  826. public function testSearchWithEmptyParams()
  827. {
  828. // set a mock transport
  829. $mockTransport = $this->getMockHttpTransportInterface();
  830. // setup expected call and response
  831. $mockTransport->expects($this->once())
  832. ->method('performGetRequest')
  833. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  834. $fixture = new Apache_Solr_service();
  835. $fixture->setHttpTransport($mockTransport);
  836. $fixture->search("solr", 0, 10, null);
  837. }
  838. public function testSearchWithPostMethod()
  839. {
  840. // set a mock transport
  841. $mockTransport = $this->getMockHttpTransportInterface();
  842. // setup expected call and response
  843. $mockTransport->expects($this->once())
  844. ->method('performPostRequest')
  845. ->will($this->returnValue(Apache_Solr_HttpTransport_ResponseTest::get200Response()));
  846. $fixture = new Apache_Solr_service();
  847. $fixture->setHttpTransport($mockTransport);
  848. $fixture->search("solr", 0, 10, array(), Apache_Solr_Service::METHOD_POST);
  849. }
  850. /**
  851. * @expectedException Apache_Solr_InvalidArgumentException
  852. */
  853. public function testSearchWithInvalidMethod()
  854. {
  855. $fixture = new Apache_Solr_service();
  856. $fixture->search("solr", 0, 10, array(), "INVALID METHOD");
  857. }
  858. }