summaryrefslogtreecommitdiffstats
path: root/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/application/ClusterCostTest.java
blob: 313f565f546dac50625287e0bfda9669b0d59323 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.application;

import com.yahoo.config.provision.ClusterSpec;
import org.junit.Assert;
import org.junit.Test;

import java.util.ArrayList;
import java.util.List;

/**
 * @author smorgrav
 */
public class ClusterCostTest {

    @Test
    public void clusterCost() throws Exception {
        List<String> hostnames = new ArrayList<>();
        hostnames.add("host1");
        hostnames.add("host2");
        ClusterInfo info = new ClusterInfo("test", 100, 10, 10, 10, ClusterSpec.Type.container, hostnames);
        ClusterUtilization util = new ClusterUtilization(0.3, 0.2, 0.5, 0.1);
        ClusterCost cost = new ClusterCost(info, util);

        // CPU is fully utilized
        Assert.assertEquals(200, cost.getTco(), Double.MIN_VALUE);
        Assert.assertEquals(0, cost.getWaste(), Double.MIN_VALUE);

        // Set Disk as the most utilized resource
        util = new ClusterUtilization(0.3, 0.1, 0.5, 0.1);
        cost = new ClusterCost(info, util);
        Assert.assertEquals(200, cost.getTco(), Double.MIN_NORMAL); // TCO is independent of utilization
        Assert.assertEquals(57.1428571429, cost.getWaste(), 0.001); // Waste is not independent
    }
}