aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/test/java/com/yahoo/document/DocumentTypeTestCase.java
blob: 5f8e95a2b4f5274871a3a902662436b9d1667cbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document;

import org.junit.Test;

import java.util.Arrays;
import java.util.Collections;
import java.util.Iterator;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

/**
 * @author Thomas Gundersen
 * @author bratseth
 */
public class DocumentTypeTestCase {

    // Verify that we can register and retrieve fields.
    @Test
    public void testSetGet() {
        DocumentType docType = new DocumentType("testdoc");
        docType.addField("Bongle", DataType.STRING);
        docType.addField("nalle", DataType.INT);

        assertEquals(docType.getField("Bongle").getName(), "Bongle");
        assertNull(docType.getField("bongle"));

    }

    @Test
    public void testFieldSets() {
        DocumentType root = new DocumentType("root");
        root.addField("rootfield1", DataType.STRING);
        root.addField("rootfield2", DataType.STRING);
        root.addField("rootfield3", DataType.STRING);
        root.addFieldSets(Collections.singletonMap(DocumentType.DOCUMENT, Arrays.asList("rootfield2")));
        assertEquals(1, root.fieldSet().size());
        assertEquals("rootfield2", root.fieldSet().iterator().next().getName());
        assertEquals(3, root.fieldSetAll().size());
    }

    @Test
    public void testInheritance() {
        DocumentTypeManager typeManager = new DocumentTypeManager();

        DocumentType root = new DocumentType("root");
        root.addField("rootfield", DataType.STRING);
        root.addFieldSets(Collections.singletonMap(DocumentType.DOCUMENT, Arrays.asList("rootfield")));

        DocumentType parent1 = new DocumentType("parent1");
        parent1.addField("overridden", DataType.STRING);
        parent1.addField("parent1field", DataType.STRING);
        parent1.inherit(root);
        parent1.addFieldSets(Collections.singletonMap(DocumentType.DOCUMENT, Arrays.asList("parent1field", "overridden")));

        DocumentType parent2 = new DocumentType("parent2");
        parent2.addField("parent2field", DataType.STRING);
        parent2.inherit(root);
        parent2.addFieldSets(Collections.singletonMap(DocumentType.DOCUMENT, Arrays.asList("parent2field")));

        DocumentType child = new DocumentType("child");
        child.addField("childfield", DataType.INT);
        child.addField("overridden", DataType.STRING);
        child.inherit(parent1);
        child.inherit(parent2);
        child.addFieldSets(Collections.singletonMap(DocumentType.DOCUMENT, Arrays.asList("childfield", "overridden")));

        typeManager.register(root);
        typeManager.register(parent1);
        typeManager.register(parent2);
        typeManager.register(child);

        Iterator inherited = child.getInheritedTypes().iterator();
        assertEquals(parent1, inherited.next());
        assertEquals(parent2, inherited.next());
        assertTrue(!inherited.hasNext());

        inherited = parent1.getInheritedTypes().iterator();
        assertEquals(root, inherited.next());
        assertTrue(!inherited.hasNext());

        inherited = parent2.getInheritedTypes().iterator();
        assertEquals(root, inherited.next());
        assertTrue(!inherited.hasNext());

        inherited = root.getInheritedTypes().iterator();
        assertEquals(DataType.DOCUMENT, inherited.next());
        assertTrue(!inherited.hasNext());

        Iterator fields = child.fieldSet().iterator();
        Field field;

        field = (Field) fields.next();
        assertEquals("rootfield", field.getName());

        field = (Field) fields.next();
        assertEquals("overridden", field.getName());
        assertEquals(DataType.STRING, field.getDataType());

        field = (Field) fields.next();
        assertEquals("parent1field", field.getName());

        field = (Field) fields.next();
        assertEquals("parent2field", field.getName());

        field = (Field) fields.next();
        assertEquals("childfield", field.getName());

        assertFalse(fields.hasNext());

        assertNotNull(child.getField("rootfield"));
    }

}