aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/vespa/model/builder/xml/dom/DomComponentBuilderTest.java
blob: 5289aaa08da00a533a5765f7bd47ccb2871430a2 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.builder.xml.dom;

import com.yahoo.component.ComponentId;
import com.yahoo.config.model.builder.xml.test.DomBuilderTest;
import com.yahoo.container.bundle.BundleInstantiationSpecification;
import com.yahoo.vespa.model.container.component.Component;
import org.junit.jupiter.api.Test;

import static com.yahoo.collections.CollectionUtil.first;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;

/**
 * @author gjoranv
 */
public class DomComponentBuilderTest extends DomBuilderTest {

    @Test
    void ensureCorrectModel() {
        Component<?, ?> handler = new DomComponentBuilder().doBuild(root.getDeployState(), root, parse(
                "<handler id='theId' class='theClass' bundle='theBundle' />"));

        BundleInstantiationSpecification instantiationSpecification = handler.model.bundleInstantiationSpec;
        assertEquals("theId", instantiationSpecification.id.stringValue());
        assertEquals("theClass", instantiationSpecification.classId.stringValue());
        assertEquals("theBundle", instantiationSpecification.bundle.stringValue());
    }

    @Test
    @SuppressWarnings("unchecked")
    void components_can_be_nested() {
        Component<? super Component<?, ?>, ?> parent = new DomComponentBuilder().doBuild(root.getDeployState(), root, parse(
                "<component id='parent'>",
                "  <component id='child' />",
                "</component>"));

        assertEquals(ComponentId.fromString("parent"), parent.getGlobalComponentId());
        Component<?, ?> child = (Component<?, ?>) first(parent.getChildren().values());
        assertNotNull(child);

        assertEquals(ComponentId.fromString("child@parent"), child.getGlobalComponentId());
    }
}