/* * 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.common.bytes; import org.apache.lucene.util.BytesRef; import org.opensearch.common.settings.Settings; import org.opensearch.common.util.MockBigArrays; import org.opensearch.common.util.MockPageCacheRecycler; import org.opensearch.core.indices.breaker.NoneCircuitBreakerService; import org.opensearch.test.OpenSearchTestCase; import java.io.IOException; import java.nio.charset.StandardCharsets; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.sameInstance; public class RecyclingBytesStreamOutputTests extends OpenSearchTestCase { public void testReturnsWrittenBytesAndRecyclesBufferIfPossible() throws IOException { final byte[] source = randomUnicodeOfLength(scaledRandomIntBetween(0, 20000)).getBytes(StandardCharsets.UTF_8); final byte[] buffer = new byte[scaledRandomIntBetween(0, 20000)]; final MockBigArrays bigArrays = new MockBigArrays(new MockPageCacheRecycler(Settings.EMPTY), new NoneCircuitBreakerService()); try (RecyclingBytesStreamOutput output = new RecyclingBytesStreamOutput(buffer, bigArrays)) { int position = 0; while (position < source.length) { if (randomBoolean()) { output.writeByte(source[position++]); } else { final int length = randomIntBetween(1, source.length - position); final int sliceStart = randomIntBetween(0, position); final int sliceEnd = randomIntBetween(position + length, source.length); final byte[] slice = new byte[sliceEnd - sliceStart]; System.arraycopy(source, sliceStart, slice, 0, slice.length); output.writeBytes(slice, position - sliceStart, length); position += length; } } final BytesRef bytesRef; if (randomBoolean()) { bytesRef = output.toBytesRef(); assertThat(bytesRef.offset, equalTo(0)); if (source.length <= buffer.length) { assertThat("should have re-used the same buffer", bytesRef.bytes, sameInstance(buffer)); } else { assertThat("new buffer should be the right size", bytesRef.bytes.length, equalTo(source.length)); } } else { bytesRef = output.bytes().toBytesRef(); } assertThat(bytesRef.length, equalTo(source.length)); final byte[] trimmed = new byte[source.length]; System.arraycopy(bytesRef.bytes, bytesRef.offset, trimmed, 0, bytesRef.length); assertArrayEquals(source, trimmed); } } }