use of io.cdap.cdap.data2.metadata.dataset.MetadataEntry in project cdap by caskdata.
the class DefaultValueIndexerTest method testSingleSimpleTags.
@Test
public void testSingleSimpleTags() {
MetadataEntry entry = new MetadataEntry(NamespaceId.DEFAULT.app("a"), MetadataConstants.TAGS_KEY, "tag");
Set<String> expected = new HashSet<>();
expected.add("tag");
expected.add(MetadataConstants.TAGS_KEY + ":tag");
Assert.assertEquals(expected, indexer.getIndexes(entry));
}
use of io.cdap.cdap.data2.metadata.dataset.MetadataEntry in project cdap by caskdata.
the class DefaultValueIndexerTest method testMultipleSplitTags.
@Test
public void testMultipleSplitTags() {
MetadataEntry entry = new MetadataEntry(NamespaceId.DEFAULT.app("a"), MetadataConstants.TAGS_KEY, "foo,bar baz");
Set<String> expected = new HashSet<>();
expected.add("foo");
expected.add("bar");
expected.add("baz");
expected.add(MetadataConstants.TAGS_KEY + ":foo");
expected.add(MetadataConstants.TAGS_KEY + ":bar");
expected.add(MetadataConstants.TAGS_KEY + ":baz");
Assert.assertEquals(expected, indexer.getIndexes(entry));
}
use of io.cdap.cdap.data2.metadata.dataset.MetadataEntry in project cdap by caskdata.
the class DefaultValueIndexerTest method testMultipleTags.
@Test
public void testMultipleTags() {
MetadataEntry entry = new MetadataEntry(NamespaceId.DEFAULT.app("a"), MetadataConstants.TAGS_KEY, "t1,t2,t3");
Set<String> expected = new HashSet<>();
expected.add("t1");
expected.add("t2");
expected.add("t3");
expected.add(MetadataConstants.TAGS_KEY + ":t1");
expected.add(MetadataConstants.TAGS_KEY + ":t2");
expected.add(MetadataConstants.TAGS_KEY + ":t3");
Assert.assertEquals(expected, indexer.getIndexes(entry));
}
use of io.cdap.cdap.data2.metadata.dataset.MetadataEntry in project cdap by caskdata.
the class SchemaIndexerTest method testSimpleRecord.
@Test
public void testSimpleRecord() {
Schema simpleSchema = Schema.recordOf("record1", // String x
Schema.Field.of("x", Schema.of(Schema.Type.STRING)), // String[] y
Schema.Field.of("y", Schema.arrayOf(Schema.of(Schema.Type.STRING))), // Map<byte[],double> z
Schema.Field.of("z", Schema.mapOf(Schema.of(Schema.Type.BYTES), Schema.of(Schema.Type.DOUBLE))));
Set<String> expected = ImmutableSet.of("record1", "record1:RECORD", "x", "x:STRING", "y", "y:ARRAY", "z", "z:MAP");
SchemaIndexer indexer = new SchemaIndexer();
DatasetId datasetInstance = new DatasetId("ns1", "ds1");
Set<String> actual = indexer.getIndexes(new MetadataEntry(datasetInstance, KEY, simpleSchema.toString()));
Assert.assertEquals(addKeyPrefixAndPropertiesField(expected), actual);
}
use of io.cdap.cdap.data2.metadata.dataset.MetadataEntry in project cdap by caskdata.
the class SchemaIndexerTest method testComplexRecord.
@Test
public void testComplexRecord() {
Schema complexSchema = Schema.recordOf("record1", Schema.Field.of("map1", Schema.mapOf(Schema.recordOf("record21", // String x
Schema.Field.of("x", Schema.of(Schema.Type.STRING)), // String[] y
Schema.Field.of("y", Schema.arrayOf(Schema.of(Schema.Type.STRING))), // Map<byte[],double> z
Schema.Field.of("z", Schema.mapOf(Schema.of(Schema.Type.BYTES), Schema.of(Schema.Type.DOUBLE)))), Schema.arrayOf(Schema.recordOf("record22", Schema.Field.of("a", // Map<array<byte[]>, Map<boolean,byte[]> a
Schema.mapOf(Schema.arrayOf(Schema.of(Schema.Type.BYTES)), Schema.mapOf(Schema.of(Schema.Type.BOOLEAN), Schema.of(Schema.Type.BYTES)))))))), Schema.Field.of("i", Schema.nullableOf(Schema.of(Schema.Type.INT))), Schema.Field.of("j", Schema.unionOf(Schema.of(Schema.Type.INT), Schema.of(Schema.Type.LONG), Schema.of(Schema.Type.NULL))));
Schema anotherComplexSchema = Schema.arrayOf(Schema.of(Schema.Type.STRING));
Schema superComplexSchema = Schema.unionOf(complexSchema, anotherComplexSchema, Schema.of(Schema.Type.NULL));
Set<String> expected = ImmutableSet.of("map1", "map1:MAP", "record21", "record21:RECORD", "x", "x:STRING", "y", "y:ARRAY", "z", "z:MAP", "record22", "record22:RECORD", "a", "a:MAP", "i", "i:INT", "j", "j:UNION", "record1", "record1:RECORD");
SchemaIndexer indexer = new SchemaIndexer();
DatasetId datasetInstance = new DatasetId("ns1", "ds1");
Set<String> actual = indexer.getIndexes(new MetadataEntry(datasetInstance, KEY, superComplexSchema.toString()));
Assert.assertEquals(addKeyPrefixAndPropertiesField(expected), actual);
}
Aggregations