Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 18a719d66a6fc8e44fc4b6f6f3d26f080683d92b (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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
// ========================================================================
// Copyright 2011-2012 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
//     The Eclipse Public License is available at
//     http://www.eclipse.org/legal/epl-v10.html
//
//     The Apache License v2.0 is available at
//     http://www.opensource.org/licenses/apache2.0.php
//
// You may elect to redistribute this code under either of these licenses.
//========================================================================
package org.eclipse.jetty.websocket.server.ab;

import static org.hamcrest.Matchers.*;

import java.nio.ByteBuffer;
import java.util.concurrent.TimeUnit;

import org.eclipse.jetty.io.ByteBufferPool;
import org.eclipse.jetty.io.StandardByteBufferPool;
import org.eclipse.jetty.util.BufferUtil;
import org.eclipse.jetty.util.StringUtil;
import org.eclipse.jetty.websocket.api.WebSocketPolicy;
import org.eclipse.jetty.websocket.protocol.CloseInfo;
import org.eclipse.jetty.websocket.protocol.Generator;
import org.eclipse.jetty.websocket.protocol.OpCode;
import org.eclipse.jetty.websocket.protocol.WebSocketFrame;
import org.eclipse.jetty.websocket.server.ByteBufferAssert;
import org.eclipse.jetty.websocket.server.SimpleServletServer;
import org.eclipse.jetty.websocket.server.blockhead.BlockheadClient;
import org.eclipse.jetty.websocket.server.examples.MyEchoServlet;
import org.eclipse.jetty.websocket.server.helper.IncomingFramesCapture;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

public class TestABCase5
{
    private static final byte FIN = (byte)0x80;
    private static final byte NOFIN = 0x00;

    private static SimpleServletServer server;
    private static Generator laxGenerator;

    @BeforeClass
    public static void initGenerators()
    {
        WebSocketPolicy policy = WebSocketPolicy.newServerPolicy();
        ByteBufferPool bufferPool = new StandardByteBufferPool();
        laxGenerator = new Generator(policy,bufferPool,false);
    }

    @BeforeClass
    public static void startServer() throws Exception
    {
        server = new SimpleServletServer(new MyEchoServlet());
        server.start();
    }

    @AfterClass
    public static void stopServer()
    {
        server.stop();
    }

    @Test
    public void testCase5_1PingIn2Packets() throws Exception
    {
        BlockheadClient client = new BlockheadClient(server.getServerUri());
        try
        {
            client.connect();
            client.sendStandardRequest();
            client.expectUpgradeResponse();

            ByteBuffer buf = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(buf);

            String fragment1 = "fragment1";

            // Intentionally bad PING (spec says control frames must be FIN==true)
            buf.put((byte)(NOFIN | OpCode.PING));

            byte b = 0x00; // no masking
            b |= fragment1.length() & 0x7F;
            buf.put(b);
            buf.put(fragment1.getBytes());
            BufferUtil.flipToFlush(buf,0);

            client.writeRaw(buf);

            ByteBuffer buf2 = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(buf2);

            String fragment2 = "fragment2";

            buf2.put((byte)(FIN | OpCode.PING));
            b = 0x00; // no masking
            b |= fragment2.length() & 0x7F;
            buf2.put(b);
            buf2.put(fragment2.getBytes());
            BufferUtil.flipToFlush(buf2,0);

            client.writeRaw(buf2);

            // Read frame
            IncomingFramesCapture capture = client.readFrames(1,TimeUnit.MILLISECONDS,500);
            WebSocketFrame frame = capture.getFrames().get(0);

            Assert.assertThat("frame should be close frame",frame.getOpCode(),is(OpCode.CLOSE));

            Assert.assertThat("CloseFrame.status code",new CloseInfo(frame).getStatusCode(),is(1002));
        }
        finally
        {
            client.close();
        }
    }

    @Test
    public void testCase5_1PingIn2PacketsWithBuilder() throws Exception
    {
        BlockheadClient client = new BlockheadClient(server.getServerUri());
        try
        {
            client.connect();
            client.sendStandardRequest();
            client.expectUpgradeResponse();

            String fragment1 = "fragment1";
            WebSocketFrame frame1 = WebSocketFrame.ping().setFin(false).setPayload(fragment1);
            ByteBuffer buf1 = laxGenerator.generate(frame1);
            client.writeRaw(buf1);

            String fragment2 = "fragment2";
            WebSocketFrame frame2 = WebSocketFrame.ping().setPayload(fragment2);
            ByteBuffer buf2 = laxGenerator.generate(frame2);
            client.writeRaw(buf2);

            // Read frame
            IncomingFramesCapture capture = client.readFrames(1,TimeUnit.MILLISECONDS,500);
            WebSocketFrame frame = capture.getFrames().pop();

            Assert.assertThat("frame should be close frame",frame.getOpCode(),is(OpCode.CLOSE));

            Assert.assertThat("CloseFrame.status code",new CloseInfo(frame).getStatusCode(),is(1002));
        }
        finally
        {
            client.close();
        }
    }

    @Test
    public void testCase5_2PongIn2Packets() throws Exception
    {
        BlockheadClient client = new BlockheadClient(server.getServerUri());
        try
        {
            client.connect();
            client.sendStandardRequest();
            client.expectUpgradeResponse();

            ByteBuffer buf = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(buf);

            String fragment1 = "fragment1";

            buf.put((byte)(NOFIN | OpCode.PONG));

            byte b = 0x00; // no masking
            b |= fragment1.length() & 0x7F;
            buf.put(b);
            buf.put(fragment1.getBytes());
            BufferUtil.flipToFlush(buf,0);

            client.writeRaw(buf);

            ByteBuffer buf2 = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(buf2);

            String fragment2 = "fragment2";

            buf2.put((byte)(FIN | OpCode.CONTINUATION));
            b = 0x00; // no masking
            b |= fragment2.length() & 0x7F;
            buf2.put(b);
            buf2.put(fragment2.getBytes());
            BufferUtil.flipToFlush(buf2,0);

            client.writeRaw(buf2);

            // Read frame
            IncomingFramesCapture capture = client.readFrames(1,TimeUnit.MILLISECONDS,500);
            WebSocketFrame frame = capture.getFrames().pop();

            Assert.assertThat("frame should be close frame",frame.getOpCode(),is(OpCode.CLOSE));

            Assert.assertThat("CloseFrame.status code",new CloseInfo(frame).getStatusCode(),is(1002));
        }
        finally
        {
            client.close();
        }
    }

    @Test
    public void testCase5_2PongIn2PacketsWithBuilder() throws Exception
    {
        BlockheadClient client = new BlockheadClient(server.getServerUri());
        try
        {
            client.connect();
            client.sendStandardRequest();
            client.expectUpgradeResponse();

            String fragment1 = "fragment1";
            WebSocketFrame frame1 = WebSocketFrame.pong().setFin(false).setPayload(fragment1);
            ByteBuffer buf1 = laxGenerator.generate(frame1);
            client.writeRaw(buf1);

            String fragment2 = "fragment2";
            WebSocketFrame frame2 = new WebSocketFrame(OpCode.CONTINUATION).setFin(false).setPayload(fragment2);
            ByteBuffer buf2 = laxGenerator.generate(frame2);
            client.writeRaw(buf2);

            // Read frame
            IncomingFramesCapture capture = client.readFrames(1,TimeUnit.MILLISECONDS,500);
            WebSocketFrame frame = capture.getFrames().pop();

            Assert.assertThat("frame should be close frame",frame.getOpCode(),is(OpCode.CLOSE));
            Assert.assertThat("CloseFrame.status code",new CloseInfo(frame).getStatusCode(),is(1002));
        }
        finally
        {
            client.disconnect();
        }
    }

    @Test
    public void testCase5_3TextIn2Packets() throws Exception
    {
        BlockheadClient client = new BlockheadClient(server.getServerUri());
        try
        {
            client.connect();
            client.sendStandardRequest();
            client.expectUpgradeResponse();

            ByteBuffer buf = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(buf);

            String fragment1 = "fragment1";

            buf.put((byte)(NOFIN | OpCode.TEXT));

            byte b = 0x00; // no masking
            b |= fragment1.length() & 0x7F;
            buf.put(b);
            buf.put(fragment1.getBytes());
            BufferUtil.flipToFlush(buf,0);

            client.writeRaw(buf);

            ByteBuffer buf2 = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(buf2);

            String fragment2 = "fragment2";

            buf2.put((byte)(FIN | OpCode.CONTINUATION));
            b = 0x00; // no masking
            b |= fragment2.length() & 0x7F;
            buf2.put(b);
            buf2.put(fragment2.getBytes());
            BufferUtil.flipToFlush(buf2,0);

            client.writeRaw(buf2);

            // Read frame
            IncomingFramesCapture capture = client.readFrames(1,TimeUnit.MILLISECONDS,500);
            WebSocketFrame frame = capture.getFrames().pop();

            Assert.assertThat("frame should be text frame",frame.getOpCode(),is(OpCode.TEXT));

            Assert.assertThat("TextFrame.payload",frame.getPayloadAsUTF8(),is(fragment1 + fragment2));
        }
        finally
        {
            client.close();
        }
    }

    @Test
    public void testCase5_6TextPingRemainingText() throws Exception
    {
        BlockheadClient client = new BlockheadClient(server.getServerUri());
        try
        {
            client.connect();
            client.sendStandardRequest();
            client.expectUpgradeResponse();

            // Send a text packet

            ByteBuffer buf = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(buf);

            String fragment1 = "fragment1";

            buf.put((byte)(NOFIN | OpCode.TEXT));

            byte b = 0x00; // no masking
            b |= fragment1.length() & 0x7F;
            buf.put(b);
            buf.put(fragment1.getBytes());
            BufferUtil.flipToFlush(buf,0);

            client.writeRaw(buf);

            // Send a ping with payload

            ByteBuffer pingBuf = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(pingBuf);

            String pingPayload = "ping payload";

            pingBuf.put((byte)(FIN | OpCode.PING));

            b = 0x00; // no masking
            b |= pingPayload.length() & 0x7F;
            pingBuf.put(b);
            pingBuf.put(pingPayload.getBytes());
            BufferUtil.flipToFlush(pingBuf,0);

            client.writeRaw(pingBuf);

            // Send remaining text as continuation

            ByteBuffer buf2 = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(buf2);

            String fragment2 = "fragment2";

            buf2.put((byte)(FIN | OpCode.CONTINUATION));
            b = 0x00; // no masking
            b |= fragment2.length() & 0x7F;
            buf2.put(b);
            buf2.put(fragment2.getBytes());
            BufferUtil.flipToFlush(buf2,0);

            client.writeRaw(buf2);

            // Should be 2 frames, pong frame followed by combined echo'd text frame
            IncomingFramesCapture capture = client.readFrames(2,TimeUnit.SECONDS,1);
            WebSocketFrame frame = capture.getFrames().pop();

            Assert.assertThat("first frame should be pong frame",frame.getOpCode(),is(OpCode.PONG));

            ByteBuffer payload1 = BufferUtil.toBuffer(pingPayload,StringUtil.__UTF8_CHARSET);

            ByteBufferAssert.assertEquals("payloads should be equal",payload1,frame.getPayload());
            frame = capture.getFrames().pop();

            Assert.assertThat("second frame should be text frame",frame.getOpCode(),is(OpCode.TEXT));
            Assert.assertThat("TextFrame.payload",frame.getPayloadAsUTF8(),is(fragment1 + fragment2));
        }
        finally
        {
            client.close();
        }
    }

    @Test
    public void testCase5_6TextPingRemainingTextWithBuilder() throws Exception
    {
        BlockheadClient client = new BlockheadClient(server.getServerUri());
        try
        {
            client.connect();
            client.sendStandardRequest();
            client.expectUpgradeResponse();

            // Send a text packet
            String textPayload1 = "fragment1";
            WebSocketFrame frame1 = WebSocketFrame.text().setFin(false).setPayload(textPayload1);
            ByteBuffer buf1 = laxGenerator.generate(frame1);
            client.writeRaw(buf1);

            // Send a ping with payload
            String pingPayload = "ping payload";
            WebSocketFrame frame2 = WebSocketFrame.ping().setPayload(pingPayload);
            ByteBuffer buf2 = laxGenerator.generate(frame2);
            client.writeRaw(buf2);

            // Send remaining text as continuation
            String textPayload2 = "fragment2";
            WebSocketFrame frame3 = new WebSocketFrame(OpCode.CONTINUATION).setPayload(textPayload2);
            ByteBuffer buf3 = laxGenerator.generate(frame3);
            client.writeRaw(buf3);

            // Should be 2 frames, pong frame followed by combined echo'd text frame
            IncomingFramesCapture capture = client.readFrames(2,TimeUnit.MILLISECONDS,500);
            WebSocketFrame frame = capture.getFrames().pop();

            Assert.assertThat("first frame should be pong frame",frame.getOpCode(),is(OpCode.PONG));

            ByteBuffer payload1 = BufferUtil.toBuffer(pingPayload,StringUtil.__UTF8_CHARSET);
            ByteBufferAssert.assertEquals("Payload",payload1,frame.getPayload());

            frame = capture.getFrames().pop();

            Assert.assertThat("second frame should be text frame",frame.getOpCode(),is(OpCode.TEXT));

            Assert.assertThat("TextFrame.payload",frame.getPayloadAsUTF8(),is(textPayload1 + textPayload2));
        }
        finally
        {
            client.close();
        }
    }

    @Test
    @Ignore("AB tests have chop concepts currently unsupported by test...I think, also the string being returns is not Bad Continuation")
    public void testCase5_9BadContinuation() throws Exception
    {
        BlockheadClient client = new BlockheadClient(server.getServerUri());
        try
        {
            client.connect();
            client.sendStandardRequest();
            client.expectUpgradeResponse();

            // Send a text packet

            ByteBuffer buf = ByteBuffer.allocate(Generator.OVERHEAD + 2);
            BufferUtil.clearToFill(buf);

            String fragment1 = "fragment";

            // continuation w / FIN

            buf.put((byte)(FIN | OpCode.CONTINUATION));

            byte b = 0x00; // no masking
            b |= fragment1.length() & 0x7F;
            buf.put(b);
            buf.put(fragment1.getBytes());
            BufferUtil.flipToFlush(buf,0);

            client.writeRaw(buf);

            // Read frame
            IncomingFramesCapture capture = client.readFrames(1,TimeUnit.MILLISECONDS,500);
            WebSocketFrame frame = capture.getFrames().pop();

            Assert.assertThat("frame should be close frame",frame.getOpCode(),is(OpCode.CLOSE));

            Assert.assertThat("CloseFrame.status code",new CloseInfo(frame).getStatusCode(),is(1002));

            Assert.assertThat("CloseFrame.reason",new CloseInfo(frame).getReason(),is("Bad Continuation"));
            // TODO put close reasons into public strings in impl someplace?
        }
        finally
        {
            client.close();
        }
    }
}

Back to the top