aboutsummaryrefslogtreecommitdiffstats
path: root/integration/intellij/src/test/java/ai/vespa/intellij/model/SchemaTest.java
blob: a2b855b2dda7238e1bbe58d7f25d975cae8d290d (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.intellij.model;

import ai.vespa.intellij.PluginTestBase;
import ai.vespa.intellij.schema.model.RankProfile;
import ai.vespa.intellij.schema.model.Schema;
import ai.vespa.intellij.schema.utils.Path;
import org.junit.Test;

/**
 * @author bratseth
 */
public class SchemaTest extends PluginTestBase {

    @Test
    public void testSimple() {
        useDir("src/test/applications/simple");
        Schema schema = Schema.fromProjectFile(getProject(), Path.fromString("simple.sd"));
        assertNotNull(schema);
        assertEquals("simple", schema.name());
        RankProfile profile = schema.rankProfiles().get("simple-profile");
        assertEquals("simple-profile", profile.name());
        assertEquals(2, profile.parents().size());
        assertEquals("parent-profile1", profile.parents().get("parent-profile1").name());
        assertEquals("parent-profile2", profile.parents().get("parent-profile2").name());
        assertEquals(0, schema.functions().size());
    }

    @Test
    public void testSchemaInheritance() {
        useDir("src/test/applications/schemaInheritance");
        Schema child = Schema.fromProjectFile(getProject(), Path.fromString("child.sd"));
        assertNotNull(child);
        assertEquals("child", child.name());
        assertEquals("parent", child.parent().get().name());
        Schema parent = child.parent().get();
        assertEquals("child", parent.children().get("child").name());

        assertEquals(3, child.rankProfiles().size());
        assertTrue(child.rankProfiles().containsKey("child_profile"));
        assertTrue(child.rankProfiles().containsKey("other_child_profile"));
        assertTrue(child.rankProfiles().containsKey("parent_profile"));

        RankProfile profile = child.rankProfiles().get("child_profile");
        assertEquals("child_profile", profile.name());
        assertEquals(2, profile.parents().size());
        assertEquals("other_child_profile", profile.parents().get("other_child_profile").name());
        assertEquals("parent_profile", profile.parents().get("parent_profile").name());
        assertEquals("child_profile", profile.parents().get("parent_profile").children().get(0).name());
        assertEquals(2, child.functions().size());
    }

    @Test
    public void testRankProfileModularity() {
        useDir("src/test/applications/rankProfileModularity");
        Schema schema = Schema.fromProjectFile(getProject(), Path.fromString("test.sd"));
        assertNotNull(schema);
        assertEquals("test", schema.name());
        RankProfile profile = schema.rankProfiles().get("in_schema3");
        assertEquals("in_schema3", profile.name());
        assertEquals(2, profile.parents().size());
        assertEquals("outside_schema1", profile.parents().get("outside_schema1").name());
        assertEquals("outside_schema2", profile.parents().get("outside_schema2").name());
        assertEquals("8 proper functions + first-phase", 9, schema.functions().size());
        assertEquals(schema.rankProfiles().get("in_schema2").definedFunctions().get("ff1"),
                     schema.functions().get("ff1"));
        assertEquals(schema.rankProfiles().get("outside_schema1").definedFunctions().get("local1"),
                     schema.functions().get("local1"));
        assertEquals(4, schema.rankProfiles().get("outside_schema1").definedFunctions().size());
        assertEquals(1, schema.rankProfiles().get("in_schema1").children().size());
        assertEquals(4, schema.rankProfiles().get("outside_schema2").children().size());
    }

}