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

import org.junit.jupiter.api.Test;

import java.util.concurrent.Future;

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


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

    @Test
    void requireThatContentInputStreamExtendsUnsafeContentInputStream() {
        assertTrue(UnsafeContentInputStream.class.isAssignableFrom(ContentInputStream.class));
    }

    @Test
    @SuppressWarnings("FinalizeCalledExplicitly")
    void requireThatFinalizerClosesStream() throws Throwable {
        BufferedContentChannel channel = new BufferedContentChannel();
        FastContentWriter writer = new FastContentWriter(channel);
        writer.write("foo");
        writer.close();

        new ContentInputStream(channel.toReadable()).finalize();
    }

}