aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/schema/StructTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/test/java/com/yahoo/schema/StructTestCase.java')
-rwxr-xr-xconfig-model/src/test/java/com/yahoo/schema/StructTestCase.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/config-model/src/test/java/com/yahoo/schema/StructTestCase.java b/config-model/src/test/java/com/yahoo/schema/StructTestCase.java
new file mode 100755
index 00000000000..b140892ed5e
--- /dev/null
+++ b/config-model/src/test/java/com/yahoo/schema/StructTestCase.java
@@ -0,0 +1,59 @@
+
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.schema;
+
+import com.yahoo.document.config.DocumenttypesConfig;
+import com.yahoo.document.config.DocumentmanagerConfig;
+import com.yahoo.schema.derived.Deriver;
+import com.yahoo.schema.parser.ParseException;
+import org.junit.Ignore;
+import org.junit.Test;
+import java.io.IOException;
+import static org.junit.Assert.fail;
+
+/**
+ * Tests importing of document containing array type fields
+ *
+ * @author bratseth
+ */
+public class StructTestCase extends AbstractSchemaTestCase {
+
+ @Test
+ public void testStruct() throws IOException {
+ assertConfigFile("src/test/examples/structresult.cfg",
+ new DocumentmanagerConfig(Deriver.getDocumentManagerConfig("src/test/examples/struct.sd")) + "\n");
+ }
+
+ @Test
+ public void testBadStruct() throws IOException {
+ try {
+ ApplicationBuilder.buildFromFile("src/test/examples/badstruct.sd");
+ fail("Should throw exception.");
+ } catch (IllegalArgumentException|ParseException expected) {
+ System.err.println("As expected, with message: "+expected.getMessage());
+ // success
+ }
+ }
+
+ @Test
+ @Ignore
+ public void testStructAndDocumentWithSameNames() {
+ try {
+ DocumenttypesConfig.Builder dt = Deriver.getDocumentTypesConfig("src/test/examples/structanddocumentwithsamenames.sd");
+ // while the above line may work, the config generated will fail.
+ // See also NameCollisionTestCase.
+ } catch (Exception e) {
+ fail("Should not have thrown exception " + e);
+ }
+ }
+
+ /**
+ * Declaring a struct before a document should work
+ */
+ @Test
+ public void testStructOutsideDocumentLegal() throws IOException, ParseException {
+ new ApplicationBuilder().addSchemaFile("src/test/examples/structoutsideofdocument.sd");
+ }
+
+}
+