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

import com.yahoo.cloud.config.ModelConfig;
import com.yahoo.vespa.model.VespaModel;
import com.yahoo.vespa.model.test.utils.VespaModelCreatorWithFilePkg;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;

/**
 * Test HostSystem
 *
 * @author hmusum
 */
public class ModelConfigProviderTest {

    /**
     * Get the config via ConfigInstance based API, by getting whole config
     */
    @Test
    void testGetModelConfig() {
        VespaModel vespaModel = new VespaModelCreatorWithFilePkg("src/test/cfg/admin/adminconfig20").create();
        ModelConfig config = vespaModel.getConfig(ModelConfig.class, "");
        assertEquals(config.hosts().size(), 1);
        ModelConfig.Hosts localhost = config.hosts(0); //Actually set to hostname.
        int numLogservers = 0;
        int numSlobroks = 0;
        for (ModelConfig.Hosts.Services service : localhost.services()) {
            if ("logserver".equals(service.type())) {
                numLogservers++;
            }
            if ("slobrok".equals(service.type())) {
                numSlobroks++;
            }
        }
        assertEquals(1, numLogservers);
        assertEquals(2, numSlobroks);
    }

}