/checklistbank-search/src/test/java/org/gbif/checklistbank/search/NameUsageSearchTestIT.java

http://gbif-ecat.googlecode.com/ · Java · 91 lines · 59 code · 13 blank · 19 comment · 12 complexity · 2dcf29695581dd2da53b0e2ecaa2ad1e MD5 · raw file

  1. /*
  2. * Copyright 2011 Global Biodiversity Information Facility (GBIF)
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. * Unless required by applicable law or agreed to in writing, software
  8. * distributed under the License is distributed on an "AS IS" BASIS,
  9. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. * See the License for the specific language governing permissions and
  11. * limitations under the License.
  12. */
  13. package org.gbif.checklistbank.search;
  14. import org.gbif.api.search.SearchRequest;
  15. import org.gbif.api.search.SearchResponse;
  16. import org.gbif.checklistbank.api.model.search.NameUsageFacetParameter;
  17. import org.gbif.checklistbank.api.service.NameUsageSearchService;
  18. import org.gbif.checklistbank.search.inject.SearchModule;
  19. import org.gbif.checklistbank.search.model.NameUsageSolrSearchResult;
  20. import com.google.inject.Guice;
  21. import com.google.inject.Injector;
  22. import com.google.inject.Key;
  23. import com.google.inject.TypeLiteral;
  24. import org.junit.Assert;
  25. import org.junit.BeforeClass;
  26. import org.junit.Test;
  27. /**
  28. * Integration tests using an embedded solr server with the mybatis squirrels test dataset as an prebuild test index.
  29. * To regenerate this index please @see SolrIndexBuildIT.
  30. */
  31. public class NameUsageSearchTestIT {
  32. private static NameUsageSearchService<NameUsageSolrSearchResult> searchService;
  33. private static Injector injector;
  34. @BeforeClass
  35. public static void init() {
  36. injector = Guice.createInjector(new SearchModule());
  37. searchService = injector.getInstance(Key.get(new TypeLiteral<NameUsageSearchService<NameUsageSolrSearchResult>>() {
  38. }));
  39. }
  40. private void assertSearch(String q, NameUsageFacetParameter facet, String facetFilter, Long expectedCount,
  41. String expectedFacetCounts) {
  42. // build request
  43. SearchRequest searchRequest = new SearchRequest(0L, 10);
  44. searchRequest.setQ(q);
  45. if (facetFilter != null) {
  46. searchRequest.addFacetedParameter(facet, facetFilter);
  47. }
  48. if (facet != null) {
  49. searchRequest.addFacets(facet);
  50. }
  51. // query
  52. SearchResponse<NameUsageSolrSearchResult> response = searchService.search(searchRequest);
  53. // assert
  54. if (expectedCount != null) {
  55. Assert.assertEquals(expectedCount, response.getCount());
  56. }
  57. if (facet != null && expectedFacetCounts != null) {
  58. Assert.assertEquals(1, response.getFacets().size());
  59. Assert.assertEquals(expectedFacetCounts, response.getFacets().get(0).getCounts().size());
  60. }
  61. if (facet == null) {
  62. Assert.assertTrue(response.getFacets().isEmpty());
  63. }
  64. }
  65. private void assertSearch(String q, Long expectedCount) {
  66. assertSearch(q, null, null, expectedCount, null);
  67. }
  68. @Test
  69. public void testSearchScientificNameNoFacets() {
  70. assertSearch("Rodentia", 42l);
  71. assertSearch("Rodentia Bowdich, 1821", 2l);
  72. }
  73. @Test
  74. public void testSearchScientificNameWithRankFacet() {
  75. assertSearch("vulgaris", NameUsageFacetParameter.RANK, null, 10l, null);
  76. assertSearch("Sciurus vulgaris", NameUsageFacetParameter.RANK, null, 14l, null);
  77. }
  78. }