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

import com.yahoo.vespa.model.VespaModel;
import com.yahoo.vespa.model.container.Container;
import com.yahoo.vespa.model.container.ApplicationContainer;
import com.yahoo.vespa.model.test.utils.VespaModelCreatorWithFilePkg;
import org.junit.Test;

import java.util.List;

import static org.junit.Assert.assertEquals;

/**
 * Tests that qrserver is assigned port Defaults.getDefaults().vespaWebServicePort() even if there is a HTTP gateway configured earlier in
 * vespa-services.xml
 *
 * @author hmusum
 */
public class QrserverAndGatewayPortAllocationTest {

    @Test
    public void testPorts() {
        String appDir = "src/test/cfg/application/app_qrserverandgw/";
        VespaModelCreatorWithFilePkg creator = new VespaModelCreatorWithFilePkg(appDir);
        VespaModel vespaModel = creator.create();
        List<ApplicationContainer> qrservers = vespaModel.getContainerClusters().get("container").getContainers();
        assertEquals(1, qrservers.size());
        assertEquals(Container.BASEPORT, qrservers.get(0).getSearchPort());
    }

}