|
1 | 1 | /*
|
2 |
| - * Copyright 2014-2020 the original author or authors. |
| 2 | + * Copyright 2014-2021 the original author or authors. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
@@ -1095,6 +1095,49 @@ public void shouldReturnSimilarResultsGivenMoreLikeThisQuery() {
|
1095 | 1095 | assertThat(content).contains(sampleEntity);
|
1096 | 1096 | }
|
1097 | 1097 |
|
| 1098 | + @Test // #1787 |
| 1099 | + @DisplayName("should use Pageable on MoreLikeThis queries") |
| 1100 | + void shouldUsePageableOnMoreLikeThisQueries() { |
| 1101 | + |
| 1102 | + String sampleMessage = "So we build a web site or an application and want to add search to it, " |
| 1103 | + + "and then it hits us: getting search working is hard. We want our search solution to be fast," |
| 1104 | + + " we want a painless setup and a completely free search schema, we want to be able to index data simply using JSON over HTTP, " |
| 1105 | + + "we want our search server to be always available, we want to be able to start with one machine and scale to hundreds, " |
| 1106 | + + "we want real-time search, we want simple multi-tenancy, and we want a solution that is built for the cloud."; |
| 1107 | + String referenceId = nextIdAsString(); |
| 1108 | + Collection<String> ids = IntStream.rangeClosed(1, 10).mapToObj(i -> nextIdAsString()).collect(Collectors.toList()); |
| 1109 | + ids.add(referenceId); |
| 1110 | + ids.stream() |
| 1111 | + .map(id -> getIndexQuery(SampleEntity.builder().id(id).message(sampleMessage).version(System.currentTimeMillis()).build())) |
| 1112 | + .forEach(indexQuery -> operations.index(indexQuery, index)); |
| 1113 | + indexOperations.refresh(); |
| 1114 | + |
| 1115 | + MoreLikeThisQuery moreLikeThisQuery = new MoreLikeThisQuery(); |
| 1116 | + moreLikeThisQuery.setId(referenceId); |
| 1117 | + moreLikeThisQuery.addFields("message"); |
| 1118 | + moreLikeThisQuery.setMinDocFreq(1); |
| 1119 | + moreLikeThisQuery.setPageable(PageRequest.of(0, 5)); |
| 1120 | + |
| 1121 | + SearchHits<SampleEntity> searchHits = operations.search(moreLikeThisQuery, SampleEntity.class, index); |
| 1122 | + |
| 1123 | + assertThat(searchHits.getTotalHits()).isEqualTo(10); |
| 1124 | + assertThat(searchHits.getSearchHits()).hasSize(5); |
| 1125 | + |
| 1126 | + Collection<String> returnedIds = searchHits.getSearchHits().stream().map(SearchHit::getId).collect(Collectors.toList()); |
| 1127 | + |
| 1128 | + moreLikeThisQuery.setPageable(PageRequest.of(1, 5)); |
| 1129 | + |
| 1130 | + searchHits = operations.search(moreLikeThisQuery, SampleEntity.class, index); |
| 1131 | + |
| 1132 | + assertThat(searchHits.getTotalHits()).isEqualTo(10); |
| 1133 | + assertThat(searchHits.getSearchHits()).hasSize(5); |
| 1134 | + |
| 1135 | + searchHits.getSearchHits().stream().map(SearchHit::getId).forEach(returnedIds::add); |
| 1136 | + |
| 1137 | + assertThat(returnedIds).hasSize(10); |
| 1138 | + assertThat(ids).containsAll(returnedIds); |
| 1139 | + } |
| 1140 | + |
1098 | 1141 | @Test // DATAES-167
|
1099 | 1142 | public void shouldReturnResultsWithScanAndScrollForGivenCriteriaQuery() {
|
1100 | 1143 |
|
@@ -3822,4 +3865,5 @@ static class SampleJoinEntity {
|
3822 | 3865 | @JoinTypeRelation(parent = "question", children = { "answer" }) }) private JoinField<String> myJoinField;
|
3823 | 3866 | @Field(type = Text) private String text;
|
3824 | 3867 | }
|
| 3868 | + //endregion |
3825 | 3869 | }
|
0 commit comments