|
45 | 45 | import org.junit.jupiter.api.DisplayName;
|
46 | 46 | import org.junit.jupiter.api.Order;
|
47 | 47 | import org.junit.jupiter.api.Test;
|
| 48 | +import org.junit.jupiter.api.condition.DisabledIf; |
48 | 49 | import org.skyscreamer.jsonassert.JSONAssert;
|
49 | 50 | import org.springframework.beans.factory.annotation.Autowired;
|
50 | 51 | import org.springframework.dao.DataAccessException;
|
|
54 | 55 | import org.springframework.data.domain.PageRequest;
|
55 | 56 | import org.springframework.data.domain.Pageable;
|
56 | 57 | import org.springframework.data.domain.Sort;
|
| 58 | +import org.springframework.data.elasticsearch.NewElasticsearchClientDevelopment; |
57 | 59 | import org.springframework.data.elasticsearch.RestStatusException;
|
58 | 60 | import org.springframework.data.elasticsearch.annotations.Document;
|
59 | 61 | import org.springframework.data.elasticsearch.annotations.Field;
|
|
88 | 90 | */
|
89 | 91 | @SuppressWarnings("SpringJavaAutowiredMembersInspection")
|
90 | 92 | @SpringIntegrationTest
|
91 |
| -public abstract class ReactiveElasticsearchIntegrationTests { |
| 93 | +public abstract class ReactiveElasticsearchIntegrationTests implements NewElasticsearchClientDevelopment { |
92 | 94 |
|
93 | 95 | @Autowired private ReactiveElasticsearchOperations operations;
|
94 | 96 | @Autowired private IndexNameProvider indexNameProvider;
|
@@ -1072,6 +1074,7 @@ void shouldReturnExplanationWhenRequested() {
|
1072 | 1074 | }).verifyComplete();
|
1073 | 1075 | }
|
1074 | 1076 |
|
| 1077 | + @DisabledIf(value = "newElasticsearchClient", disabledReason = "todo #2165, ES issue 286") |
1075 | 1078 | @Test // #1646, #1718
|
1076 | 1079 | @DisplayName("should return a list of info for specific index")
|
1077 | 1080 | void shouldReturnInformationListOfAllIndices() {
|
|
0 commit comments