aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/test/java/com/yahoo/jdisc/handler/CallableResponseDispatchTestCase.java
blob: ff953fe0384cbfc4fec85b463e928aa635a50cf6 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.handler;

import com.yahoo.jdisc.Response;
import org.junit.jupiter.api.Test;

import java.util.concurrent.TimeUnit;

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


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

    @Test
    void requireThatDispatchIsCalled() throws Exception {
        final Response response = new Response(Response.Status.OK);
        FutureResponse handler = new FutureResponse();
        new CallableResponseDispatch(handler) {

            @Override
            protected Response newResponse() {
                return response;
            }
        }.call();
        assertSame(response, handler.get(600, TimeUnit.SECONDS));
    }
}