aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/test/java/com/yahoo/jdisc/test/NonWorkingClientTestCase.java
blob: 862acfa1ce41e5c64cc646f8c6cdd816b3e2a2af (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
45
46
47
48
49
50
51
52
53
54
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.test;

import com.yahoo.jdisc.service.ClientProvider;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.fail;


/**
 * @author Simon Thoresen Hult
 */
public class NonWorkingClientTestCase {

    @Test
    void requireThatHandleRequestThrowsException() {
        ClientProvider client = new NonWorkingClientProvider();
        try {
            client.handleRequest(null, null);
            fail();
        } catch (UnsupportedOperationException e) {

        }
    }

    @Test
    void requireThatHandleTimeoutThrowsException() {
        ClientProvider client = new NonWorkingClientProvider();
        try {
            client.handleTimeout(null, null);
            fail();
        } catch (UnsupportedOperationException e) {

        }
    }

    @Test
    void requireThatStartDoesNotThrow() {
        ClientProvider client = new NonWorkingClientProvider();
        client.start();
    }

    @Test
    void requireThatRetainDoesNotThrow() {
        ClientProvider client = new NonWorkingClientProvider();
        client.release();
    }

    @Test
    void requireThatReleaseDoesNotThrow() {
        ClientProvider client = new NonWorkingClientProvider();
        client.release();
    }
}