blob: eb33fd3895a4c710a6aa71a3a910a4cd524706e4 [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.sdk.io.gcp.pubsub;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.Assert.assertThat;
import java.nio.charset.StandardCharsets;
import java.util.Map;
import org.apache.beam.sdk.coders.Coder;
import org.apache.beam.sdk.testing.CoderProperties;
import org.apache.beam.sdk.util.SerializableUtils;
import org.apache.beam.sdk.values.TypeDescriptor;
import org.apache.beam.vendor.guava.v26_0_jre.com.google.common.collect.ImmutableMap;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Unit tests for {@link PubsubMessageWithAttributesCoder}. */
@RunWith(JUnit4.class)
public class PubsubMessageWithAttributesCoderTest {
private static final String DATA = "testData";
private static final Map<String, String> ATTRIBUTES =
new ImmutableMap.Builder<String, String>().put("1", "hello").build();
private static final Coder<PubsubMessage> TEST_CODER = PubsubMessageWithAttributesCoder.of();
private static final PubsubMessage TEST_VALUE =
new PubsubMessage(DATA.getBytes(StandardCharsets.UTF_8), ATTRIBUTES);
@Test
public void testValueEncodable() throws Exception {
SerializableUtils.ensureSerializableByCoder(TEST_CODER, TEST_VALUE, "error");
}
@Test
public void testCoderDecodeEncodeEqual() throws Exception {
CoderProperties.structuralValueDecodeEncodeEqual(TEST_CODER, TEST_VALUE);
}
@Test
public void testEncodedTypeDescriptor() throws Exception {
TypeDescriptor<PubsubMessage> typeDescriptor = new TypeDescriptor<PubsubMessage>() {};
assertThat(TEST_CODER.getEncodedTypeDescriptor(), equalTo(typeDescriptor));
}
}