/* * 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.utils.Bytes; import org.apache.kafka.common.utils.Utils; import org.apache.kafka.streams.KeyValue; import org.apache.kafka.streams.state.KeyValueIterator; import org.junit.Before; import org.junit.Test; import java.util.List; import static org.apache.kafka.test.StreamsTestUtils.toList; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class FilteredCacheIteratorTest { @SuppressWarnings("unchecked") private final InMemoryKeyValueStore<Bytes, LRUCacheEntry> store = new InMemoryKeyValueStore("name", null, null); private final KeyValue<Bytes, LRUCacheEntry> firstEntry = KeyValue.pair(Bytes.wrap("a".getBytes()), new LRUCacheEntry("1".getBytes())); private final List<KeyValue<Bytes, LRUCacheEntry>> entries = Utils.mkList( firstEntry, KeyValue.pair(Bytes.wrap("b".getBytes()), new LRUCacheEntry("2".getBytes())), KeyValue.pair(Bytes.wrap("c".getBytes()), new LRUCacheEntry("3".getBytes()))); private FilteredCacheIterator allIterator; private FilteredCacheIterator firstEntryIterator; @Before public void before() { store.putAll(entries); final HasNextCondition allCondition = new HasNextCondition() { @Override public boolean hasNext(final KeyValueIterator<Bytes, ?> iterator) { return iterator.hasNext(); } }; allIterator = new FilteredCacheIterator( new DelegatingPeekingKeyValueIterator<>("", store.all()), allCondition); final HasNextCondition firstEntryCondition = new HasNextCondition() { @Override public boolean hasNext(final KeyValueIterator<Bytes, ?> iterator) { return iterator.hasNext() && iterator.peekNextKey().equals(firstEntry.key); } }; firstEntryIterator = new FilteredCacheIterator( new DelegatingPeekingKeyValueIterator<>("", store.all()), firstEntryCondition); } @Test public void shouldAllowEntryMatchingHasNextCondition() throws Exception { final List<KeyValue<Bytes, LRUCacheEntry>> keyValues = toList(allIterator); assertThat(keyValues, equalTo(entries)); } @Test public void shouldPeekNextKey() throws Exception { while (allIterator.hasNext()) { final Bytes nextKey = allIterator.peekNextKey(); final KeyValue<Bytes, LRUCacheEntry> next = allIterator.next(); assertThat(next.key, equalTo(nextKey)); } } @Test public void shouldPeekNext() throws Exception { while (allIterator.hasNext()) { final KeyValue<Bytes, LRUCacheEntry> peeked = allIterator.peekNext(); final KeyValue<Bytes, LRUCacheEntry> next = allIterator.next(); assertThat(peeked, equalTo(next)); } } @Test public void shouldNotHaveNextIfHasNextConditionNotMet() throws Exception { assertTrue(firstEntryIterator.hasNext()); firstEntryIterator.next(); assertFalse(firstEntryIterator.hasNext()); } @Test public void shouldFilterEntriesNotMatchingHasNextCondition() throws Exception { final List<KeyValue<Bytes, LRUCacheEntry>> keyValues = toList(firstEntryIterator); assertThat(keyValues, equalTo(Utils.mkList(firstEntry))); } @Test(expected = UnsupportedOperationException.class) public void shouldThrowUnsupportedOperationExeceptionOnRemove() throws Exception { allIterator.remove(); } }