/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.rest; import org.opensearch.client.Request; import org.opensearch.client.RequestOptions; import org.opensearch.client.Response; import org.opensearch.client.ResponseException; import org.opensearch.common.settings.Setting; import org.opensearch.common.settings.Settings; import org.opensearch.core.common.unit.ByteSizeValue; import org.opensearch.http.HttpTransportSettings; import org.opensearch.test.rest.OpenSearchRestTestCase; import org.opensearch.test.rest.yaml.ObjectPath; import java.io.IOException; import java.nio.charset.Charset; import java.util.Map; import static org.opensearch.core.rest.RestStatus.BAD_REQUEST; import static org.opensearch.test.hamcrest.RegexMatcher.matches; import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.hasToString; public class Netty4BadRequestIT extends OpenSearchRestTestCase { public void testBadRequest() throws IOException { final Response response = client().performRequest(new Request("GET", "/_nodes/settings")); final ObjectPath objectPath = ObjectPath.createFromResponse(response); final Map map = objectPath.evaluate("nodes"); int maxMaxInitialLineLength = Integer.MIN_VALUE; final Setting httpMaxInitialLineLength = HttpTransportSettings.SETTING_HTTP_MAX_INITIAL_LINE_LENGTH; final String key = httpMaxInitialLineLength.getKey().substring("http.".length()); for (Map.Entry entry : map.entrySet()) { @SuppressWarnings("unchecked") final Map settings = (Map) ((Map) entry.getValue()).get("settings"); final int maxIntialLineLength; if (settings.containsKey("http")) { @SuppressWarnings("unchecked") final Map httpSettings = (Map) settings.get("http"); if (httpSettings.containsKey(key)) { maxIntialLineLength = ByteSizeValue.parseBytesSizeValue((String) httpSettings.get(key), key).bytesAsInt(); } else { maxIntialLineLength = httpMaxInitialLineLength.getDefault(Settings.EMPTY).bytesAsInt(); } } else { maxIntialLineLength = httpMaxInitialLineLength.getDefault(Settings.EMPTY).bytesAsInt(); } maxMaxInitialLineLength = Math.max(maxMaxInitialLineLength, maxIntialLineLength); } final String path = "/" + new String(new byte[maxMaxInitialLineLength], Charset.forName("UTF-8")).replace('\0', 'a'); final ResponseException e = expectThrows( ResponseException.class, () -> client().performRequest(new Request(randomFrom("GET", "POST", "PUT"), path)) ); assertThat(e.getResponse().getStatusLine().getStatusCode(), equalTo(BAD_REQUEST.getStatus())); assertThat(e, hasToString(containsString("too_long_http_line_exception"))); assertThat(e, hasToString(matches("An HTTP line is larger than \\d+ bytes"))); } public void testInvalidParameterValue() throws IOException { final Request request = new Request("GET", "/_cluster/settings"); request.addParameter("pretty", "neither-true-nor-false"); final ResponseException e = expectThrows(ResponseException.class, () -> client().performRequest(request)); final Response response = e.getResponse(); assertThat(response.getStatusLine().getStatusCode(), equalTo(400)); final ObjectPath objectPath = ObjectPath.createFromResponse(response); final Map map = objectPath.evaluate("error"); assertThat(map.get("type"), equalTo("illegal_argument_exception")); assertThat(map.get("reason"), equalTo("Failed to parse value [neither-true-nor-false] as only [true] or [false] are allowed.")); } public void testInvalidHeaderValue() throws IOException { final Request request = new Request("GET", "/_cluster/settings"); final RequestOptions.Builder options = request.getOptions().toBuilder(); options.addHeader("Content-Type", "\t"); request.setOptions(options); final ResponseException e = expectThrows(ResponseException.class, () -> client().performRequest(request)); final Response response = e.getResponse(); assertThat(response.getStatusLine().getStatusCode(), equalTo(400)); final ObjectPath objectPath = ObjectPath.createFromResponse(response); final Map map = objectPath.evaluate("error"); assertThat(map.get("type"), equalTo("content_type_header_exception")); assertThat(map.get("reason"), equalTo("java.lang.IllegalArgumentException: invalid Content-Type header []")); } }