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

import org.junit.Test;

import java.util.concurrent.Future;

import static org.junit.Assert.assertTrue;


/**
 * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
 */
public class ContentInputStreamTestCase {

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

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

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

}