summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/src/test/java/com/yahoo/vespa/http/client/core/communication/CloseableQTestCase.java
blob: c234e52477408ee3b13749caeba0110add47826d (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.client.core.communication;

import com.yahoo.vespa.http.client.core.Document;
import org.junit.Test;

import static org.junit.Assert.fail;

public class CloseableQTestCase {
    @Test
    public void requestThatPutIsInterruptedOnClose() throws InterruptedException {
        final DocumentQueue q = new DocumentQueue(1);
        q.put(new Document("id", "data", null /* context */));
        Thread t = new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    Thread.sleep(3000);
                } catch (InterruptedException e) {

                }
                q.close();
                q.clear();
            }
        });
        t.start();
        try {
            q.put(new Document("id2", "data2", null /* context */));
            fail("This shouldn't have worked.");
        } catch (IllegalStateException ise) {
            // ok!
        }
        try {
            t.join();
        } catch (InterruptedException e) {
        }
    }
}