summaryrefslogtreecommitdiffstats
path: root/clustercontroller-utils/src/test/java/com/yahoo/vespa/clustercontroller/utils/communication/http/HttpResultTest.java
blob: 59fd4521efb60f2017138b54cc69f4e75112ed7a (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.utils.communication.http;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class HttpResultTest {

    @Test
    public void testSuccess() {
        assertEquals(false, new HttpResult().setHttpCode(199, "foo").isSuccess());
        assertEquals(true, new HttpResult().setHttpCode(200, "foo").isSuccess());
        assertEquals(true, new HttpResult().setHttpCode(299, "foo").isSuccess());
        assertEquals(false, new HttpResult().setHttpCode(300, "foo").isSuccess());
    }

    @Test
    public void testToString() {
        assertEquals("HTTP 200/OK", new HttpResult().setContent("Foo").toString());
        assertEquals("HTTP 200/OK\n\nFoo", new HttpResult().setContent("Foo").toString(true));
        assertEquals("HTTP 200/OK", new HttpResult().toString(true));
        assertEquals("HTTP 200/OK", new HttpResult().setContent("").toString(true));
    }

    @Test
    public void testNothingButGetCoverage() {
        new HttpResult().getHeaders();
    }

}