/* * 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.kafka.streams.state.internals; import org.apache.kafka.common.metrics.Metrics; import org.apache.kafka.common.serialization.Serdes; import org.apache.kafka.common.serialization.Serializer; import org.apache.kafka.common.utils.Bytes; import org.apache.kafka.streams.KeyValue; import org.apache.kafka.streams.processor.internals.MockStreamsMetrics; import org.apache.kafka.test.MockProcessorContext; import org.apache.kafka.test.NoOpRecordCollector; import org.apache.kafka.test.TestUtils; import org.junit.After; import org.junit.Before; import org.junit.Test; import java.util.Arrays; import java.util.HashMap; import java.util.Map; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.nullValue; import static org.hamcrest.MatcherAssert.assertThat; public class ChangeLoggingKeyValueBytesStoreTest { private MockProcessorContext context; private final InMemoryKeyValueStore<Bytes, byte[]> inner = new InMemoryKeyValueStore<>("kv", Serdes.Bytes(), Serdes.ByteArray()); private final ChangeLoggingKeyValueBytesStore store = new ChangeLoggingKeyValueBytesStore(inner); private final Map sent = new HashMap<>(); private final Bytes hi = Bytes.wrap("hi".getBytes()); private final Bytes hello = Bytes.wrap("hello".getBytes()); private final byte[] there = "there".getBytes(); private final byte[] world = "world".getBytes(); @Before public void before() { final NoOpRecordCollector collector = new NoOpRecordCollector() { @Override public <K, V> void send(final String topic, K key, V value, Integer partition, Long timestamp, Serializer<K> keySerializer, Serializer<V> valueSerializer) { sent.put(key, value); } }; context = new MockProcessorContext( TestUtils.tempDirectory(), Serdes.String(), Serdes.Long(), collector, new ThreadCache("testCache", 0, new MockStreamsMetrics(new Metrics()))); context.setTime(0); store.init(context, store); } @After public void after() { context.close(); store.close(); } @Test public void shouldWriteKeyValueBytesToInnerStoreOnPut() throws Exception { store.put(hi, there); assertThat(inner.get(hi), equalTo(there)); } @Test public void shouldLogChangeOnPut() throws Exception { store.put(hi, there); assertThat((byte[]) sent.get(hi), equalTo(there)); } @Test public void shouldWriteAllKeyValueToInnerStoreOnPutAll() throws Exception { store.putAll(Arrays.asList(KeyValue.pair(hi, there), KeyValue.pair(hello, world))); assertThat(inner.get(hi), equalTo(there)); assertThat(inner.get(hello), equalTo(world)); } @Test public void shouldLogChangesOnPutAll() throws Exception { store.putAll(Arrays.asList(KeyValue.pair(hi, there), KeyValue.pair(hello, world))); assertThat((byte[]) sent.get(hi), equalTo(there)); assertThat((byte[]) sent.get(hello), equalTo(world)); } @Test public void shouldPutNullOnDelete() throws Exception { store.put(hi, there); store.delete(hi); assertThat(inner.get(hi), nullValue()); } @Test public void shouldReturnOldValueOnDelete() throws Exception { store.put(hi, there); assertThat(store.delete(hi), equalTo(there)); } @Test public void shouldLogKeyNullOnDelete() throws Exception { store.put(hi, there); store.delete(hi); assertThat(sent.get(hi), nullValue()); } @Test public void shouldWriteToInnerOnPutIfAbsentNoPreviousValue() throws Exception { store.putIfAbsent(hi, there); assertThat(inner.get(hi), equalTo(there)); } @Test public void shouldNotWriteToInnerOnPutIfAbsentWhenValueForKeyExists() throws Exception { store.put(hi, there); store.putIfAbsent(hi, world); assertThat(inner.get(hi), equalTo(there)); } @Test public void shouldWriteToChangelogOnPutIfAbsentWhenNoPreviousValue() throws Exception { store.putIfAbsent(hi, there); assertThat((byte[]) sent.get(hi), equalTo(there)); } @Test public void shouldNotWriteToChangeLogOnPutIfAbsentWhenValueForKeyExists() throws Exception { store.put(hi, there); store.putIfAbsent(hi, world); assertThat((byte[]) sent.get(hi), equalTo(there)); } @Test public void shouldReturnCurrentValueOnPutIfAbsent() throws Exception { store.put(hi, there); assertThat(store.putIfAbsent(hi, world), equalTo(there)); } @Test public void shouldReturnNullOnPutIfAbsentWhenNoPreviousValue() throws Exception { assertThat(store.putIfAbsent(hi, there), is(nullValue())); } @Test public void shouldReturnValueOnGetWhenExists() throws Exception { store.put(hello, world); assertThat(store.get(hello), equalTo(world)); } @Test public void shouldReturnNullOnGetWhenDoesntExist() throws Exception { assertThat(store.get(hello), is(nullValue())); } }