2017-02-15 15:48:53 -08:00
|
|
|
package com.baeldung.solrjava;
|
|
|
|
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
import org.apache.solr.client.solrj.SolrQuery;
|
|
|
|
import org.apache.solr.client.solrj.SolrServerException;
|
|
|
|
import org.apache.solr.client.solrj.response.QueryResponse;
|
|
|
|
import org.apache.solr.common.SolrDocument;
|
|
|
|
import org.apache.solr.common.SolrDocumentList;
|
|
|
|
import org.junit.Before;
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
public class SolrJavaIntegrationTest {
|
|
|
|
|
2017-02-20 17:28:16 -08:00
|
|
|
private SolrJavaIntegration solrJavaIntegration;
|
2017-02-15 15:48:53 -08:00
|
|
|
|
|
|
|
@Before
|
|
|
|
public void setUp() throws Exception {
|
|
|
|
|
2017-02-20 17:28:16 -08:00
|
|
|
solrJavaIntegration = new SolrJavaIntegration("http://localhost:8983/solr/bigboxstore");
|
|
|
|
solrJavaIntegration.addSolrDocument("123456", "Kenmore Dishwasher", "599.99");
|
2017-02-16 19:59:06 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void whenAdd_thenVerifyAdded() throws SolrServerException, IOException {
|
2017-02-15 15:48:53 -08:00
|
|
|
|
|
|
|
SolrQuery query = new SolrQuery();
|
|
|
|
query.set("q", "id:123456");
|
|
|
|
QueryResponse response = null;
|
|
|
|
|
2017-02-20 17:28:16 -08:00
|
|
|
response = solrJavaIntegration.getSolrClient().query(query);
|
2017-02-15 15:48:53 -08:00
|
|
|
|
|
|
|
SolrDocumentList docList = response.getResults();
|
|
|
|
assertEquals(docList.getNumFound(), 1);
|
|
|
|
|
|
|
|
for (SolrDocument doc : docList) {
|
|
|
|
assertEquals((String) doc.getFieldValue("id"), "123456");
|
|
|
|
assertEquals((Double) doc.getFieldValue("price"), (Double) 599.99);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2017-02-16 19:59:06 -08:00
|
|
|
public void whenDelete_thenVerifyDeleted() throws SolrServerException, IOException {
|
2017-02-15 15:48:53 -08:00
|
|
|
|
2017-02-20 17:28:16 -08:00
|
|
|
solrJavaIntegration.deleteSolrDocument("123456");
|
2017-02-15 15:48:53 -08:00
|
|
|
|
|
|
|
SolrQuery query = new SolrQuery();
|
|
|
|
query.set("q", "id:123456");
|
|
|
|
QueryResponse response = null;
|
|
|
|
|
2017-02-20 17:28:16 -08:00
|
|
|
response = solrJavaIntegration.getSolrClient().query(query);
|
2017-02-15 15:48:53 -08:00
|
|
|
|
|
|
|
SolrDocumentList docList = response.getResults();
|
|
|
|
assertEquals(docList.getNumFound(), 0);
|
|
|
|
}
|
|
|
|
}
|