summaryrefslogtreecommitdiffstats
path: root/config-provisioning/src/test/java/com/yahoo/config/provision/ClusterResourcesTest.java
blob: 3f198400f774c0be8db090839a56d65da774d1da (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
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.provision;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

/**
 * @author bratseth
 */
public class ClusterResourcesTest {

    @Test
    public void testCost() {
        ClusterResources r1 = new ClusterResources(3, 1, new NodeResources(2,  8, 50, 1));
        ClusterResources r2 = new ClusterResources(3, 1, new NodeResources(2, 16, 50, 1));
        System.out.println(r1.cost()*24*30);
        System.out.println(r2.cost()*24*30);
        System.out.println((r1.cost()*24*30 + r2.cost()*24*30) * 1.05);
        assertEquals(1.818, r1.cost() + r2.cost(), 0.01);
    }

}