X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=third-party%2Fatomix%2Futils%2Fsrc%2Ftest%2Fjava%2Fio%2Fatomix%2Futils%2Fserializer%2FKryoInputPoolTest.java;fp=third-party%2Fatomix%2Futils%2Fsrc%2Ftest%2Fjava%2Fio%2Fatomix%2Futils%2Fserializer%2FKryoInputPoolTest.java;h=0000000000000000000000000000000000000000;hb=88b2fe8c90d9c5b2bd6b811d88396cafc5427011;hp=e6dcdc505b3a7e553f6b047615e2b631d2dd8918;hpb=7561eca547631ad4816b8f322b6aacb9e6a5ddb7;p=controller.git diff --git a/third-party/atomix/utils/src/test/java/io/atomix/utils/serializer/KryoInputPoolTest.java b/third-party/atomix/utils/src/test/java/io/atomix/utils/serializer/KryoInputPoolTest.java deleted file mode 100644 index e6dcdc505b..0000000000 --- a/third-party/atomix/utils/src/test/java/io/atomix/utils/serializer/KryoInputPoolTest.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright 2017-present Open Networking Foundation - * - * 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 - * - * 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. - */ -package io.atomix.utils.serializer; - -import com.esotericsoftware.kryo.io.Input; -import org.junit.Before; -import org.junit.Test; - -import static org.junit.Assert.assertArrayEquals; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; - -public class KryoInputPoolTest { - - private KryoInputPool kryoInputPool; - - @Before - public void setUp() throws Exception { - kryoInputPool = new KryoInputPool(); - } - - @Test - public void discardOutput() { - final Input[] result = new Input[2]; - kryoInputPool.run(input -> { - result[0] = input; - return null; - }, KryoInputPool.MAX_POOLED_BUFFER_SIZE + 1); - kryoInputPool.run(input -> { - result[1] = input; - return null; - }, 0); - assertTrue(result[0] != result[1]); - } - - @Test - public void recycleOutput() { - final Input[] result = new Input[2]; - kryoInputPool.run(input -> { - assertEquals(0, input.position()); - byte[] payload = new byte[]{1, 2, 3, 4}; - input.setBuffer(payload); - assertArrayEquals(payload, input.readBytes(4)); - result[0] = input; - return null; - }, 0); - assertNull(result[0].getInputStream()); - assertEquals(0, result[0].position()); - kryoInputPool.run(input -> { - result[1] = input; - return null; - }, 0); - assertTrue(result[0] == result[1]); - } -}