blob: 7696c71d5d1e6a5b7efb096db6588a663dc19184 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.
*/
package org.apache.pulsar.functions.instance.state;
import static java.nio.charset.StandardCharsets.UTF_8;
import static org.mockito.Mockito.any;
import static org.mockito.Mockito.anyLong;
import static org.mockito.Mockito.eq;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.assertTrue;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import java.nio.ByteBuffer;
import java.util.concurrent.CompletableFuture;
import org.apache.bookkeeper.api.kv.Table;
import org.apache.bookkeeper.api.kv.options.Options;
import org.apache.bookkeeper.api.kv.result.DeleteResult;
import org.apache.bookkeeper.api.kv.result.KeyValue;
import org.apache.bookkeeper.common.concurrent.FutureUtils;
import org.apache.pulsar.functions.api.state.StateValue;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
/**
* Unit test {@link BKStateStoreImpl}.
*/
public class BKStateStoreImplTest {
private final String TENANT = "test-tenant";
private final String NS = "test-ns";
private final String NAME = "test-name";
private final String FQSN = "test-tenant/test-ns/test-name";
private Table<ByteBuf, ByteBuf> mockTable;
private BKStateStoreImpl stateContext;
@BeforeMethod
public void setup() {
this.mockTable = mock(Table.class);
this.stateContext = new BKStateStoreImpl(
TENANT, NS, NAME,
mockTable);
}
@Test
public void testGetter() {
assertEquals(stateContext.tenant(), TENANT);
assertEquals(stateContext.namespace(), NS);
assertEquals(stateContext.name(), NAME);
assertEquals(stateContext.fqsn(), FQSN);
}
@Test
public void testIncr() throws Exception {
when(mockTable.increment(any(ByteBuf.class), anyLong()))
.thenReturn(FutureUtils.Void());
stateContext.incrCounter("test-key", 10L);
verify(mockTable, times(1)).increment(
eq(Unpooled.copiedBuffer("test-key", UTF_8)),
eq(10L)
);
}
@Test
public void testPut() throws Exception {
when(mockTable.put(any(ByteBuf.class), any(ByteBuf.class)))
.thenReturn(FutureUtils.Void());
stateContext.put("test-key", ByteBuffer.wrap("test-value".getBytes(UTF_8)));
verify(mockTable, times(1)).put(
eq(Unpooled.copiedBuffer("test-key", UTF_8)),
eq(Unpooled.copiedBuffer("test-value", UTF_8))
);
}
@Test
public void testDelete() throws Exception {
DeleteResult<ByteBuf, ByteBuf> result = mock(DeleteResult.class);
when(mockTable.delete(any(ByteBuf.class), eq(Options.delete())))
.thenReturn(FutureUtils.value(result));
stateContext.delete("test-key");
verify(mockTable, times(1)).delete(
eq(Unpooled.copiedBuffer("test-key", UTF_8)),
eq(Options.delete())
);
}
@Test
public void testGetValue() throws Exception {
ByteBuf returnedValue = Unpooled.copiedBuffer("test-value", UTF_8);
when(mockTable.get(any(ByteBuf.class)))
.thenReturn(FutureUtils.value(returnedValue));
ByteBuffer result = stateContext.get("test-key");
assertEquals("test-value", new String(result.array(), UTF_8));
verify(mockTable, times(1)).get(
eq(Unpooled.copiedBuffer("test-key", UTF_8))
);
}
@Test
public void testGetStateValue() throws Exception {
KeyValue returnedKeyValue = mock(KeyValue.class);
ByteBuf returnedValue = Unpooled.copiedBuffer("test-value", UTF_8);
when(returnedKeyValue.value()).thenReturn(returnedValue);
when(returnedKeyValue.version()).thenReturn(1l);
when(returnedKeyValue.isNumber()).thenReturn(false);
when(mockTable.getKv(any(ByteBuf.class)))
.thenReturn(FutureUtils.value(returnedKeyValue));
StateValue result = stateContext.getStateValue("test-key");
assertEquals("test-value", new String(result.getValue(), UTF_8));
assertEquals(1l, result.getVersion().longValue());
assertEquals(false, result.getIsNumber().booleanValue());
verify(mockTable, times(1)).getKv(
eq(Unpooled.copiedBuffer("test-key", UTF_8))
);
}
@Test
public void testGetAmount() throws Exception {
when(mockTable.getNumber(any(ByteBuf.class)))
.thenReturn(FutureUtils.value(10L));
assertEquals(10L, stateContext.getCounter("test-key"));
verify(mockTable, times(1)).getNumber(
eq(Unpooled.copiedBuffer("test-key", UTF_8))
);
}
@Test
public void testGetKeyNotPresent() throws Exception {
when(mockTable.get(any(ByteBuf.class)))
.thenReturn(FutureUtils.value(null));
CompletableFuture<ByteBuffer> result = stateContext.getAsync("test-key");
assertTrue(result != null);
assertEquals(result.get(), null);
when(mockTable.getKv(any(ByteBuf.class)))
.thenReturn(FutureUtils.value(null));
CompletableFuture<StateValue> stateValueResult = stateContext.getStateValueAsync("test-key");
assertTrue(stateValueResult != null);
assertEquals(stateValueResult.get(), null);
}
}