aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/test/java/com/yahoo/jdisc/handler/BufferedContentChannelTestCase.java
blob: 3824c0eb92837a28d26512d2628cda3ae1b75517 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
// 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.nio.ByteBuffer;
import java.util.LinkedList;
import java.util.List;
import java.util.Random;
import java.util.concurrent.*;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertSame;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;

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

    @Test
    void requireThatIsConnectedWorks() {
        MyContent target = new MyContent();
        BufferedContentChannel content = new BufferedContentChannel();
        assertFalse(content.isConnected());
        content.connectTo(target);
        assertTrue(content.isConnected());
    }

    @Test
    void requireThatConnectToNullThrowsException() {
        BufferedContentChannel content = new BufferedContentChannel();
        try {
            content.connectTo(null);
            fail();
        } catch (NullPointerException e) {

        }
    }

    @Test
    void requireThatWriteAfterCloseThrowsException() {
        BufferedContentChannel content = new BufferedContentChannel();
        content.close(null);
        try {
            content.write(ByteBuffer.allocate(69), null);
            fail();
        } catch (IllegalStateException e) {

        }
    }

    @Test
    void requireThatCloseAfterCloseThrowsException() {
        BufferedContentChannel content = new BufferedContentChannel();
        content.close(null);
        try {
            content.close(null);
            fail();
        } catch (IllegalStateException e) {

        }
    }

    @Test
    void requireThatConnecToAfterConnecToThrowsException() {
        BufferedContentChannel content = new BufferedContentChannel();
        content.connectTo(new MyContent());
        try {
            content.connectTo(new MyContent());
            fail();
        } catch (IllegalStateException e) {

        }
    }

    @Test
    void requireThatWriteBeforeConnectToWritesToTarget() {
        BufferedContentChannel content = new BufferedContentChannel();
        ByteBuffer buf = ByteBuffer.allocate(69);
        MyCompletion completion = new MyCompletion();
        content.write(buf, completion);
        MyContent target = new MyContent();
        content.connectTo(target);
        assertSame(buf, target.writeBuf);
        assertSame(completion, target.writeCompletion);
    }

    @Test
    void requireThatWriteAfterConnectToWritesToTarget() {
        MyContent target = new MyContent();
        BufferedContentChannel content = new BufferedContentChannel();
        content.connectTo(target);
        ByteBuffer buf = ByteBuffer.allocate(69);
        MyCompletion completion = new MyCompletion();
        content.write(buf, completion);
        assertSame(buf, target.writeBuf);
        assertSame(completion, target.writeCompletion);
    }

    @Test
    void requireThatCloseBeforeConnectToClosesTarget() {
        BufferedContentChannel content = new BufferedContentChannel();
        MyCompletion completion = new MyCompletion();
        content.close(completion);
        MyContent target = new MyContent();
        content.connectTo(target);
        assertTrue(target.closed);
        assertSame(completion, target.closeCompletion);
    }

    @Test
    void requireThatCloseAfterConnectToClosesTarget() {
        MyContent target = new MyContent();
        BufferedContentChannel content = new BufferedContentChannel();
        content.connectTo(target);
        MyCompletion completion = new MyCompletion();
        content.close(completion);
        assertTrue(target.closed);
        assertSame(completion, target.closeCompletion);
    }

    @Test
    void requireThatIsConnectedIsTrueWhenConnectedBeforeClose() {
        BufferedContentChannel content = new BufferedContentChannel();
        assertFalse(content.isConnected());
        content.connectTo(new MyContent());
        assertTrue(content.isConnected());
        content.close(null);
        assertTrue(content.isConnected());
    }

    @Test
    void requireThatIsConnectedIsTrueWhenClosedBeforeConnected() {
        BufferedContentChannel content = new BufferedContentChannel();
        assertFalse(content.isConnected());
        content.close(null);
        assertFalse(content.isConnected());
        content.connectTo(new MyContent());
        assertTrue(content.isConnected());
    }

    @Test
    void requireThatContentIsThreadSafe() throws Exception {
        ExecutorService executor = Executors.newFixedThreadPool(101);
        for (int run = 0; run < 69; ++run) {
            List<ByteBuffer> bufs = new LinkedList<>();
            for (int buf = 0; buf < 100; ++buf) {
                bufs.add(ByteBuffer.allocate(buf));
            }
            BufferedContentChannel content = new BufferedContentChannel();
            List<Callable<Boolean>> tasks = new LinkedList<>();
            for (ByteBuffer buf : bufs) {
                tasks.add(new WriteTask(content, buf));
            }
            MyConcurrentContent target = new MyConcurrentContent();
            tasks.add(new ConnectTask(content, target));
            List<Future<Boolean>> results = executor.invokeAll(tasks);
            for (Future<Boolean> result : results) {
                assertTrue(result.get());
            }
            assertEquals(bufs.size(), target.bufs.size());
            for (ByteBuffer buf : target.bufs) {
                assertTrue(bufs.remove(buf));
            }
            assertTrue(bufs.isEmpty());
        }
    }

    private static class WriteTask implements Callable<Boolean> {

        final Random rnd = new Random();
        final BufferedContentChannel content;
        final ByteBuffer buf;

        WriteTask(BufferedContentChannel content, ByteBuffer buf) {
            this.content = content;
            this.buf = buf;
        }

        @Override
        public Boolean call() throws Exception {
            if (rnd.nextBoolean()) {
                Thread.sleep(rnd.nextInt(5));
            }
            content.write(buf, null);
            return Boolean.TRUE;
        }
    }

    private static class ConnectTask implements Callable<Boolean> {

        final BufferedContentChannel content;
        final ContentChannel target;

        ConnectTask(BufferedContentChannel content, ContentChannel target) {
            this.content = content;
            this.target = target;
        }

        @Override
        public Boolean call() throws Exception {
            content.connectTo(target);
            return Boolean.TRUE;
        }
    }

    private static class MyContent implements ContentChannel {

        ByteBuffer writeBuf = null;
        CompletionHandler writeCompletion;
        CompletionHandler closeCompletion;
        boolean closed = false;

        @Override
        public void write(ByteBuffer buf, CompletionHandler handler) {
            writeBuf = buf;
            writeCompletion = handler;
        }

        @Override
        public void close(CompletionHandler handler) {
            closeCompletion = handler;
            closed = true;
        }
    }

    private static class MyConcurrentContent implements ContentChannel {

        ConcurrentLinkedQueue<ByteBuffer> bufs = new ConcurrentLinkedQueue<>();

        @Override
        public void write(ByteBuffer buf, CompletionHandler handler) {
            bufs.add(buf);
        }

        @Override
        public void close(CompletionHandler handler) {

        }
    }

    private static class MyCompletion implements CompletionHandler {

        @Override
        public void completed() {

        }

        @Override
        public void failed(Throwable throwable) {

        }
    }
}