|
11 | 11 | import org.opensearch.client.Client;
|
12 | 12 | import org.opensearch.client.node.NodeClient;
|
13 | 13 | import org.opensearch.core.action.ActionListener;
|
14 |
| -import org.opensearch.core.common.bytes.BytesArray; |
15 | 14 | import org.opensearch.core.rest.RestStatus;
|
16 |
| -import org.opensearch.core.xcontent.MediaTypeRegistry; |
17 | 15 | import org.opensearch.flowframework.common.FlowFrameworkSettings;
|
18 | 16 | import org.opensearch.flowframework.exception.FlowFrameworkException;
|
19 | 17 | import org.opensearch.flowframework.indices.FlowFrameworkIndicesHandler;
|
@@ -85,19 +83,6 @@ public void testRestGetWorkflowStepActionRoutes() {
|
85 | 83 | assertEquals(this.getPath, routes.get(0).getPath());
|
86 | 84 | }
|
87 | 85 |
|
88 |
| - public void testInvalidRequestWithContent() { |
89 |
| - RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.GET) |
90 |
| - .withPath(this.getPath) |
91 |
| - .withContent(new BytesArray("request body"), MediaTypeRegistry.JSON) |
92 |
| - .build(); |
93 |
| - |
94 |
| - FakeRestChannel channel = new FakeRestChannel(request, false, 1); |
95 |
| - IllegalArgumentException ex = expectThrows(IllegalArgumentException.class, () -> { |
96 |
| - restGetWorkflowStepAction.handleRequest(request, channel, nodeClient); |
97 |
| - }); |
98 |
| - assertEquals("request [GET /_plugins/_flow_framework/workflow/_steps] does not support having a body", ex.getMessage()); |
99 |
| - } |
100 |
| - |
101 | 86 | public void testWorkflowSteps() throws Exception {
|
102 | 87 | RestRequest request = new FakeRestRequest.Builder(xContentRegistry()).withMethod(RestRequest.Method.GET)
|
103 | 88 | .withPath(this.getPath + "?workflow_step=create_connector")
|
|
0 commit comments