blob: 1592ec4939a3b8acbaa7f31ba5d473dc211c7531 [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.beam.fn.harness.state;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import java.io.IOException;
import org.apache.beam.model.fnexecution.v1.BeamFnApi.StateKey;
import org.apache.beam.sdk.coders.StringUtf8Coder;
import org.apache.beam.vendor.grpc.v1p13p1.com.google.protobuf.ByteString;
import org.apache.beam.vendor.guava.v20_0.com.google.common.collect.ImmutableMap;
import org.apache.beam.vendor.guava.v20_0.com.google.common.collect.Iterables;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Tests for {@link BagUserState}. */
@RunWith(JUnit4.class)
public class BagUserStateTest {
@Rule public ExpectedException thrown = ExpectedException.none();
@Test
public void testGet() throws Exception {
FakeBeamFnStateClient fakeClient =
new FakeBeamFnStateClient(ImmutableMap.of(key("A"), encode("A1", "A2", "A3")));
BagUserState<String> userState =
new BagUserState<>(
fakeClient,
"instructionId",
"ptransformId",
"stateId",
ByteString.copyFromUtf8("encodedWindow"),
encode("A"),
StringUtf8Coder.of());
assertArrayEquals(
new String[] {"A1", "A2", "A3"}, Iterables.toArray(userState.get(), String.class));
userState.asyncClose();
thrown.expect(IllegalStateException.class);
userState.get();
}
@Test
public void testAppend() throws Exception {
FakeBeamFnStateClient fakeClient =
new FakeBeamFnStateClient(ImmutableMap.of(key("A"), encode("A1")));
BagUserState<String> userState =
new BagUserState<>(
fakeClient,
"instructionId",
"ptransformId",
"stateId",
ByteString.copyFromUtf8("encodedWindow"),
encode("A"),
StringUtf8Coder.of());
userState.append("A2");
Iterable<String> stateBeforeA3 = userState.get();
assertArrayEquals(new String[] {"A1", "A2"}, Iterables.toArray(stateBeforeA3, String.class));
userState.append("A3");
assertArrayEquals(new String[] {"A1", "A2"}, Iterables.toArray(stateBeforeA3, String.class));
assertArrayEquals(
new String[] {"A1", "A2", "A3"}, Iterables.toArray(userState.get(), String.class));
userState.asyncClose();
assertEquals(encode("A1", "A2", "A3"), fakeClient.getData().get(key("A")));
thrown.expect(IllegalStateException.class);
userState.append("A4");
}
@Test
public void testClear() throws Exception {
FakeBeamFnStateClient fakeClient =
new FakeBeamFnStateClient(ImmutableMap.of(key("A"), encode("A1", "A2", "A3")));
BagUserState<String> userState =
new BagUserState<>(
fakeClient,
"instructionId",
"ptransformId",
"stateId",
ByteString.copyFromUtf8("encodedWindow"),
encode("A"),
StringUtf8Coder.of());
assertArrayEquals(
new String[] {"A1", "A2", "A3"}, Iterables.toArray(userState.get(), String.class));
userState.clear();
assertFalse(userState.get().iterator().hasNext());
userState.append("A4");
assertArrayEquals(new String[] {"A4"}, Iterables.toArray(userState.get(), String.class));
userState.clear();
assertFalse(userState.get().iterator().hasNext());
userState.asyncClose();
assertNull(fakeClient.getData().get(key("A")));
thrown.expect(IllegalStateException.class);
userState.clear();
}
private StateKey key(String id) throws IOException {
return StateKey.newBuilder()
.setBagUserState(
StateKey.BagUserState.newBuilder()
.setPtransformId("ptransformId")
.setUserStateId("stateId")
.setWindow(ByteString.copyFromUtf8("encodedWindow"))
.setKey(encode(id)))
.build();
}
private ByteString encode(String... values) throws IOException {
ByteString.Output out = ByteString.newOutput();
for (String value : values) {
StringUtf8Coder.of().encode(value, out);
}
return out.toByteString();
}
}