blob: 9104307651c9c9a3bd75dc423c023cee6a0091bf [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.flink.statefun.flink.common.protobuf;
import static org.hamcrest.CoreMatchers.not;
import static org.hamcrest.MatcherAssert.assertThat;
import com.google.protobuf.DescriptorProtos;
import java.io.IOException;
import java.io.InputStream;
import java.util.Optional;
import org.hamcrest.Description;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;
import org.junit.BeforeClass;
import org.junit.Test;
public class ProtobufDescriptorMapTest {
private static final String TEST_DESCRIPTOR_NAME = "test.desc";
private static DescriptorProtos.FileDescriptorSet FILE_DESCRIPTOR_SET;
@BeforeClass
public static void setup() throws IOException {
// Load the test file descriptor set
InputStream descriptorStream =
ProtobufDescriptorMap.class.getClassLoader().getResourceAsStream(TEST_DESCRIPTOR_NAME);
FILE_DESCRIPTOR_SET = DescriptorProtos.FileDescriptorSet.parseFrom(descriptorStream);
}
@Test
public void exampleUsage() {
ProtobufDescriptorMap map = ProtobufDescriptorMap.from(FILE_DESCRIPTOR_SET);
assertThat(map.getDescriptorByName("org.apache.flink.test.NestedMessage"), isPresent());
assertThat(
map.getDescriptorByName("org.apache.flink.test.Non Existing Type"), not(isPresent()));
}
@Test
public void includedTypeIsVisible() {
ProtobufDescriptorMap map = ProtobufDescriptorMap.from(FILE_DESCRIPTOR_SET);
assertThat(map.getDescriptorByName("google.protobuf.Any"), isPresent());
}
@Test
public void enumsAreVisible() {
ProtobufDescriptorMap map = ProtobufDescriptorMap.from(FILE_DESCRIPTOR_SET);
assertThat(map.getDescriptorByName("org.apache.flink.test.Letter"), isPresent());
}
private static <T> Matcher<Optional<T>> isPresent() {
return new TypeSafeMatcher<Optional<T>>() {
@Override
protected boolean matchesSafely(Optional<T> t) {
return t.isPresent();
}
@Override
public void describeTo(Description description) {
description.appendText("A present j.u.Optional");
}
};
}
}