Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.7.0-SNAPSHOT</version>
<version>2.7.0-GH-2204-SNAPSHOT</version>

<name>Spring Data Redis</name>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ public static byte[][] mergeArrays(byte[] firstArray, byte[]... additionalArrays
}

/**
* Extract a byte array from {@link ByteBuffer} without consuming it.
* Extract a byte array from {@link ByteBuffer} without consuming it. The resulting {@code byte[]} is a copy of the
* buffer's contents and not updated upon changes within the buffer.
*
* @param byteBuffer must not be {@literal null}.
* @return
Expand All @@ -139,10 +140,6 @@ public static byte[] getBytes(ByteBuffer byteBuffer) {

Assert.notNull(byteBuffer, "ByteBuffer must not be null!");

if (byteBuffer.hasArray()) {
return byteBuffer.array();
}

ByteBuffer duplicate = byteBuffer.duplicate();
byte[] bytes = new byte[duplicate.remaining()];
duplicate.get(bytes);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Copyright 2021 the original author or authors.
*
* Licensed 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
*
* https://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.
*/
package org.springframework.data.redis.util;

import static org.assertj.core.api.Assertions.*;

import java.nio.ByteBuffer;
import java.nio.charset.StandardCharsets;

import org.junit.jupiter.api.Test;

/**
* Unit tests for {@link ByteUtils}.
*
* @author Mark Paluch
*/
class ByteUtilsUnitTests {

@Test // GH-2204
void getBytesShouldUseCorrectHeapBufferSpace() {

ByteBuffer buffer = ByteBuffer.allocate(16);
buffer.put("hello".getBytes(StandardCharsets.US_ASCII));
buffer.flip();

byte[] bytes = ByteUtils.getBytes(buffer);

assertThat(bytes).hasSize(5);
}

@Test // GH-2204
void getBytesShouldUseCorrectDirectBufferSpace() {

ByteBuffer buffer = ByteBuffer.allocateDirect(16);
buffer.put("hello".getBytes(StandardCharsets.US_ASCII));
buffer.flip();

byte[] bytes = ByteUtils.getBytes(buffer);

assertThat(bytes).hasSize(5);
}
}