-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Rest Api Compatibility] Typed and xpack graph explore api (#74185)
adds back the typed and xpack endpoints for graph explore api prevoiusly removed in #46935 relates main meta issue #51816 relates types removal issue #54160
- Loading branch information
Showing
2 changed files
with
86 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
...n/graph/src/test/java/org/elasticsearch/xpack/graph/rest/action/RestGraphActionTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
package org.elasticsearch.xpack.graph.rest.action; | ||
|
||
import org.elasticsearch.common.bytes.BytesArray; | ||
import org.elasticsearch.common.xcontent.XContentType; | ||
import org.elasticsearch.core.RestApiVersion; | ||
import org.elasticsearch.core.Tuple; | ||
import org.elasticsearch.protocol.xpack.graph.GraphExploreRequest; | ||
import org.elasticsearch.protocol.xpack.graph.GraphExploreResponse; | ||
import org.elasticsearch.rest.RestRequest; | ||
import org.elasticsearch.test.rest.FakeRestRequest; | ||
import org.elasticsearch.test.rest.RestActionTestCase; | ||
import org.junit.Before; | ||
import org.mockito.Mockito; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import static org.hamcrest.Matchers.instanceOf; | ||
|
||
public class RestGraphActionTests extends RestActionTestCase { | ||
private final List<String> compatibleMediaType = Collections.singletonList(randomCompatibleMediaType(RestApiVersion.V_7)); | ||
|
||
@Before | ||
public void setUpAction() { | ||
controller().registerHandler(new RestGraphAction()); | ||
verifyingClient.setExecuteVerifier((actionType, request) -> { | ||
assertThat(request, instanceOf(GraphExploreRequest.class)); | ||
return Mockito.mock(GraphExploreResponse.class); | ||
}); | ||
} | ||
|
||
public void testTypeInPath() { | ||
for (Tuple<RestRequest.Method, String> methodAndPath : | ||
List.of( | ||
Tuple.tuple(RestRequest.Method.GET, "/some_index/some_type/_graph/explore"), | ||
Tuple.tuple(RestRequest.Method.POST, "/some_index/some_type/_graph/explore"), | ||
Tuple.tuple(RestRequest.Method.GET, "/some_index/some_type/_xpack/graph/_explore"), | ||
Tuple.tuple(RestRequest.Method.POST, "/some_index/some_type/_xpack/graph/_explore") | ||
)) { | ||
|
||
RestRequest request = new FakeRestRequest.Builder(xContentRegistry()) | ||
.withHeaders(Map.of("Accept", compatibleMediaType, "Content-Type", | ||
Collections.singletonList(compatibleMediaType(XContentType.VND_JSON, RestApiVersion.V_7)))) | ||
.withMethod(methodAndPath.v1()) | ||
.withPath(methodAndPath.v2()) | ||
.withContent(new BytesArray("{}"), null) | ||
.build(); | ||
|
||
dispatchRequest(request); | ||
assertWarnings(RestGraphAction.TYPES_DEPRECATION_MESSAGE); | ||
} | ||
} | ||
} |