aboutsummaryrefslogtreecommitdiffstats
path: root/node-maintainer/src/test/java/com/yahoo/vespa/hosted/node/verification/commons/report/SpecVerificationReportTest.java
blob: 0ee3368346592593ef035f115663fb74a0e0b654 (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 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.verification.commons.report;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.yahoo.vespa.hosted.node.verification.mock.MockCommandExecutor;
import com.yahoo.vespa.hosted.node.verification.spec.retrievers.HardwareInfo;
import org.junit.Before;
import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class SpecVerificationReportTest {

    private SpecVerificationReport specVerificationReport;
    private static final String REPORT_PATH = "src/test/java/com/yahoo/vespa/hosted/node/verification/spec/resources/reportJSON";

    @Before
    public void setup() {
        specVerificationReport = new SpecVerificationReport();
    }

    @Test
    public void VerificationReport_returns_empty_string_when_all_specs_are_correct() throws Exception {
        String expectedJson = "{}";
        ObjectMapper om = new ObjectMapper();
        String actualJson = om.writeValueAsString(specVerificationReport);
        assertEquals(expectedJson, actualJson);
    }

    @Test
    public void Json_is_in_wanted_format_when_all_specs_are_wrong() throws Exception {
        specVerificationReport.setActualInterfaceSpeed(100D);
        specVerificationReport.setActualDiskSpaceAvailable(500D);
        specVerificationReport.setActualDiskType(HardwareInfo.DiskType.FAST);
        specVerificationReport.setActualMemoryAvailable(123D);
        specVerificationReport.setActualcpuCores(4);
        specVerificationReport.setFaultyIpAddresses(new String[]{"2001:db8:0:1234:0:567:8:1"});
        String expectedJson = MockCommandExecutor.readFromFile(REPORT_PATH).get(0);
        ObjectMapper om = new ObjectMapper();
        String actualJson = om.writeValueAsString(specVerificationReport);
        assertEquals(expectedJson, actualJson);
    }

}