File: test_websocket_decoder.c

package info (click to toggle)
aws-crt-python 0.20.4%2Bdfsg-1~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 72,656 kB
  • sloc: ansic: 381,805; python: 23,008; makefile: 6,251; sh: 4,536; cpp: 699; ruby: 208; java: 77; perl: 73; javascript: 46; xml: 11
file content (918 lines) | stat: -rw-r--r-- 32,199 bytes parent folder | download | duplicates (2)
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */

#include <aws/http/private/websocket_decoder.h>

#include <aws/io/logging.h>
#include <aws/testing/aws_test_harness.h>

#ifdef _MSC_VER
#    pragma warning(disable : 4204) /* non-constant aggregate initializer */
#endif

#define DECODER_TEST_CASE(NAME)                                                                                        \
    AWS_TEST_CASE(NAME, s_test_##NAME);                                                                                \
    static int s_test_##NAME(struct aws_allocator *allocator, void *ctx)

struct decoder_tester {
    struct aws_allocator *alloc;
    struct aws_logger logger;

    struct aws_websocket_decoder decoder;
    void *specific_test_data;

    struct aws_websocket_frame frame;
    size_t on_frame_count;
    size_t fail_on_nth_frame;

    struct aws_byte_buf payload;
    size_t on_payload_count;
    size_t fail_on_nth_payload;
};

static int s_on_frame(const struct aws_websocket_frame *frame, void *user_data) {
    struct decoder_tester *tester = user_data;

    tester->frame = *frame;

    tester->on_frame_count++;
    if (tester->on_frame_count == tester->fail_on_nth_frame) {
        return aws_raise_error(AWS_ERROR_HTTP_UNKNOWN);
    }

    return AWS_OP_SUCCESS;
}

static int s_on_payload(struct aws_byte_cursor data, void *user_data) {
    struct decoder_tester *tester = user_data;

    ASSERT_SUCCESS(aws_byte_buf_append_dynamic(&tester->payload, &data));

    tester->on_payload_count++;
    if (tester->on_payload_count == tester->fail_on_nth_payload) {
        return aws_raise_error(AWS_ERROR_HTTP_UNKNOWN);
    }

    return AWS_OP_SUCCESS;
}

/* For resetting the decoder and its results mid-test */
static void s_decoder_tester_reset(struct decoder_tester *tester) {
    aws_websocket_decoder_clean_up(&tester->decoder);
    aws_websocket_decoder_init(&tester->decoder, tester->alloc, s_on_frame, s_on_payload, tester);
    AWS_ZERO_STRUCT(tester->frame);
    tester->on_frame_count = 0;
    tester->payload.len = 0;
    tester->on_payload_count = 0;
}

static int s_decoder_tester_init(struct decoder_tester *tester, struct aws_allocator *alloc) {
    aws_http_library_init(alloc);

    AWS_ZERO_STRUCT(*tester);
    tester->alloc = alloc;

    struct aws_logger_standard_options logger_options = {
        .level = AWS_LOG_LEVEL_TRACE,
        .file = stderr,
    };
    ASSERT_SUCCESS(aws_logger_init_standard(&tester->logger, tester->alloc, &logger_options));
    aws_logger_set(&tester->logger);

    ASSERT_SUCCESS(aws_byte_buf_init(&tester->payload, alloc, 1024));

    s_decoder_tester_reset(tester);

    return AWS_OP_SUCCESS;
}

static int s_decoder_tester_clean_up(struct decoder_tester *tester) {
    aws_byte_buf_clean_up(&tester->payload);
    aws_websocket_decoder_clean_up(&tester->decoder);
    aws_http_library_clean_up();
    aws_logger_clean_up(&tester->logger);
    return AWS_OP_SUCCESS;
}

static int s_compare_frame(const struct aws_websocket_frame *expected, const struct aws_websocket_frame *decoded) {
    uint8_t a[24];
    memcpy(a, expected, 24);
    uint8_t b[24];
    memcpy(b, decoded, 24);

    /* compare each field so it's clear where test failed */
    ASSERT_UINT_EQUALS(expected->fin, decoded->fin);
    ASSERT_UINT_EQUALS(expected->rsv[0], decoded->rsv[0]);
    ASSERT_UINT_EQUALS(expected->rsv[1], decoded->rsv[1]);
    ASSERT_UINT_EQUALS(expected->rsv[2], decoded->rsv[2]);
    ASSERT_UINT_EQUALS(expected->masked, decoded->masked);
    ASSERT_UINT_EQUALS(expected->opcode, decoded->opcode);
    ASSERT_UINT_EQUALS(expected->payload_length, decoded->payload_length);
    ASSERT_UINT_EQUALS(expected->masking_key[0], decoded->masking_key[0]);
    ASSERT_UINT_EQUALS(expected->masking_key[1], decoded->masking_key[1]);
    ASSERT_UINT_EQUALS(expected->masking_key[2], decoded->masking_key[2]);
    ASSERT_UINT_EQUALS(expected->masking_key[3], decoded->masking_key[3]);

    return AWS_OP_SUCCESS;
};

DECODER_TEST_CASE(websocket_decoder_sanity_check) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));
    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test decoding simplest possible frame, no payload */
DECODER_TEST_CASE(websocket_decoder_simplest_frame) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        0x89, // fin | rsv1 | rsv2 | rsv3 | 4bit opcode
        0x00, // mask | 7bit payload len
    };

    struct aws_websocket_frame expected_frame = {
        .fin = true,
        .opcode = 9,
    };

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

    /* check result */
    ASSERT_TRUE(frame_complete);
    ASSERT_UINT_EQUALS(1, tester.on_frame_count);
    ASSERT_UINT_EQUALS(0, tester.on_payload_count);
    ASSERT_UINT_EQUALS(0, tester.payload.len);
    ASSERT_UINT_EQUALS(0, input_cursor.len);

    ASSERT_SUCCESS(s_compare_frame(&expected_frame, &tester.frame));

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test the 3 RSV bools */
DECODER_TEST_CASE(websocket_decoder_rsv) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    /* Test 3 times, each time with one RSV bool set */
    for (int rsv = 0; rsv < 3; ++rsv) {

        uint8_t input[] = {
            0x89, // fin | rsv1 | rsv2 | rsv3 | 4bit opcode
            0x00, // mask | 7bit payload len
        };

        /* Set the appropriate RSV */
        /* the bit arithmetic is setup this way to avoid Conversion warnings from the compiler. */
        input[0] |= (1 << (6 - rsv));

        struct aws_websocket_frame expected_frame = {
            .fin = true,
            .opcode = 9,
        };
        expected_frame.rsv[rsv] = true;

        bool frame_complete;
        struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
        ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

        /* check result */
        ASSERT_TRUE(frame_complete);
        ASSERT_SUCCESS(s_compare_frame(&expected_frame, &tester.frame));
    }

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test decoding a simple data frame, with a payload */
DECODER_TEST_CASE(websocket_decoder_data_frame) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        0x82, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x04, /* mask | 7bit payload len */
        /* payload */
        0x00,
        0x0F,
        0xF0,
        0xFF,
    };

    const uint8_t expected_payload[] = {0x00, 0x0F, 0xF0, 0xFF};

    struct aws_websocket_frame expected_frame = {
        .fin = true,
        .opcode = 2,
        .payload_length = sizeof(expected_payload),
    };

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

    /* check result */
    ASSERT_TRUE(frame_complete);
    ASSERT_UINT_EQUALS(1, tester.on_frame_count);
    ASSERT_UINT_EQUALS(1, tester.on_payload_count);
    ASSERT_UINT_EQUALS(0, input_cursor.len);

    ASSERT_SUCCESS(s_compare_frame(&expected_frame, &tester.frame));

    struct aws_byte_cursor expected_cursor = aws_byte_cursor_from_array(expected_payload, sizeof(expected_payload));
    ASSERT_TRUE(aws_byte_cursor_eq_byte_buf(&expected_cursor, &tester.payload));

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test aws_websocket_decoder_process() returns at the end of each frame */
DECODER_TEST_CASE(websocket_decoder_stops_at_frame_end) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        0x82, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x04, /* mask | 7bit payload len */
        /* payload */
        0x00,
        0x0F,
        0xF0,
        0xFF,
        /* extra data that should not be processed */
        0x11,
        0x22,
    };

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

    /* check result */
    ASSERT_TRUE(frame_complete);
    ASSERT_UINT_EQUALS(1, tester.on_frame_count);
    ASSERT_UINT_EQUALS(1, tester.on_payload_count);
    ASSERT_UINT_EQUALS(2, input_cursor.len); /* Check that there's data left over */

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test a single frame masked text message */
DECODER_TEST_CASE(websocket_decoder_masking) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    /* Test from RFC-6545 Section 5.7 - Examples - A single-frame masked text message */
    uint8_t input[] = {
        0x81, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x85, /* mask | 7bit payload len */
        /* masking key */
        0x37,
        0xfa,
        0x21,
        0x3d,
        /* payload */
        0x7f,
        0x9f,
        0x4d,
        0x51,
        0x58,
    };

    const char *expected_payload = "Hello";

    struct aws_websocket_frame expected_frame = {
        .fin = true,
        .opcode = 1,
        .masked = true,
        .masking_key = {0x37, 0xfa, 0x21, 0x3d},
        .payload_length = strlen(expected_payload),
    };

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

    /* check result */
    ASSERT_TRUE(frame_complete);
    ASSERT_SUCCESS(s_compare_frame(&expected_frame, &tester.frame));
    ASSERT_TRUE(aws_byte_buf_eq_c_str(&tester.payload, expected_payload));

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test a data frame which uses the 2 byte extended-length encoding */
DECODER_TEST_CASE(websocket_decoder_extended_length_2byte) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    struct length_validity_pair {
        uint16_t len;
        bool valid;
    };

    uint8_t input[4] = {
        0x82, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x7E, /* mask | 7bit payload len */
        /* 2byte extended length... */
    };

    struct aws_websocket_frame expected_frame = {
        .fin = true,
        .opcode = 2,
    };

    /* lengths greater than 125 should be encoded in 2 bytes */
    struct length_validity_pair length_validity_pairs[] = {
        {0, false},     /* should use 7bit length encoding */
        {1, false},     /* should use 7bit length encoding */
        {125, false},   /* highest number for 7bit length encoding */
        {126, true},    /* lowest number for 2byte extended length */
        {127, true},    /* should be encoded in 2byte extended length */
        {0x0100, true}, /* just another value for 2byte extended length */
        {0xFFFF, true}, /* highest number for 2byte extended length */
    };

    for (size_t i = 0; i < AWS_ARRAY_SIZE(length_validity_pairs); ++i) {
        struct length_validity_pair pair_i = length_validity_pairs[i];
        s_decoder_tester_reset(&tester);

        /* write extended-length to input buffer */
        uint16_t network_num = aws_hton16(pair_i.len);
        memcpy(input + 2, &network_num, sizeof(network_num));

        /* adapt expected_frame */
        expected_frame.payload_length = pair_i.len;

        /* Process input (only sending non-payload portion of frame) */
        bool frame_complete;
        struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));

        if (pair_i.valid) {
            ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

            /* check result */
            ASSERT_FALSE(frame_complete);
            ASSERT_UINT_EQUALS(0, input_cursor.len);
            ASSERT_UINT_EQUALS(1, tester.on_frame_count);
            ASSERT_UINT_EQUALS(0, tester.on_payload_count);
            ASSERT_SUCCESS(s_compare_frame(&expected_frame, &tester.frame));
        } else {
            aws_raise_error(-1); /* overwrite last-error */

            ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
            ASSERT_INT_EQUALS(AWS_ERROR_HTTP_WEBSOCKET_PROTOCOL_ERROR, aws_last_error());
        }
    }

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

DECODER_TEST_CASE(websocket_decoder_extended_length_8byte) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    struct length_validity_pair {
        uint64_t len;
        bool valid;
    };

    uint8_t input[10] = {
        0x82, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x7F, /* mask | 7bit payload len */
        /* 8byte extended length... */
    };

    struct aws_websocket_frame expected_frame = {
        .fin = true,
        .opcode = 2,
    };

    /* 8byte lengths should require at least 2 bytes to encode, and the high-order bit should be 0 */
    struct length_validity_pair length_validity_pairs[] = {
        {125, false},                /* highest number for 7bit length encoding */
        {126, false},                /* lowest number for 2byte extended length */
        {127, false},                /* should be encoded in 2byte extended length */
        {0x0100, false},             /* just another value for 2byte extended length */
        {0xFFFF, false},             /* highest number for 2byte extended length */
        {0x0000000000010000, true},  /* lowest number for 8byte extended length */
        {0x7FFFFFFFFFFFFFFF, true},  /* highest number for 8byte extended length */
        {0x123456789ABCDEF0, true},  /* just another value for 8byte extended length */
        {0x8000000000000000, false}, /* illegal use high bit in 8byte extended length */
        {0xFFFFFFFFFFFFFFFF, false}, /* illegal use high bit in 8byte extended length */
    };

    for (size_t i = 0; i < AWS_ARRAY_SIZE(length_validity_pairs); ++i) {
        struct length_validity_pair pair_i = length_validity_pairs[i];
        s_decoder_tester_reset(&tester);

        /* write extended-length to input buffer */
        uint64_t network_num = aws_hton64(pair_i.len);
        memcpy(input + 2, &network_num, sizeof(network_num));

        /* adapt expected_frame */
        expected_frame.payload_length = pair_i.len;

        /* Process input (only sending non-payload portion of frame) */
        bool frame_complete;
        struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));

        if (pair_i.valid) {
            ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

            /* check result */
            ASSERT_FALSE(frame_complete);
            ASSERT_UINT_EQUALS(0, input_cursor.len);
            ASSERT_UINT_EQUALS(1, tester.on_frame_count);
            ASSERT_UINT_EQUALS(0, tester.on_payload_count);
            ASSERT_SUCCESS(s_compare_frame(&expected_frame, &tester.frame));
        } else {
            aws_raise_error(-1); /* overwrite last-error */

            ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
            ASSERT_INT_EQUALS(AWS_ERROR_HTTP_WEBSOCKET_PROTOCOL_ERROR, aws_last_error());
        }
    }

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test that decoder can handle data that's split at any possible point */
DECODER_TEST_CASE(websocket_decoder_1byte_at_a_time) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    /* Use all optional frame features in this test (8byte extended payload length and masking-key).
     * Even though we say the payload is long, we're only going to send a portion of it in this test */
    uint8_t input[] = {
        0x81, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0xFF, /* mask | 7bit payload len */
        /* 8byte extended payload len */
        0x00,
        0x00,
        0x00,
        0x00,
        0x00,
        0x01,
        0x00,
        0x00,
        /* masking key */
        0x37,
        0xfa,
        0x21,
        0x3d,
        /* payload */
        0x7f,
        0x9f,
        0x4d,
        0x51,
        0x58,
    };

    const char *expected_payload = "Hello";

    struct aws_websocket_frame expected_frame = {
        .fin = true,
        .opcode = 1,
        .masked = true,
        .masking_key = {0x37, 0xfa, 0x21, 0x3d},
        .payload_length = 0x10000,
    };

    for (size_t i = 0; i < sizeof(input); ++i) {
        bool frame_complete;
        struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input + i, 1);
        ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
        ASSERT_FALSE(frame_complete);
        ASSERT_UINT_EQUALS(0, input_cursor.len);
    }

    /* check result */
    ASSERT_UINT_EQUALS(1, tester.on_frame_count);
    ASSERT_UINT_EQUALS(5, tester.on_payload_count);
    ASSERT_SUCCESS(s_compare_frame(&expected_frame, &tester.frame));
    ASSERT_TRUE(aws_byte_buf_eq_c_str(&tester.payload, expected_payload));

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

DECODER_TEST_CASE(websocket_decoder_fail_on_unknown_opcode) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        0x07, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x00, /* mask | 7bit payload len */
    };

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
    ASSERT_INT_EQUALS(AWS_ERROR_HTTP_WEBSOCKET_PROTOCOL_ERROR, aws_last_error());

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test fragmented messages, which arrive across multiple frames whose FIN bit is cleared */
DECODER_TEST_CASE(websocket_decoder_fragmented_message) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        /* TEXT FRAME */
        0x01, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x03, /* mask | 7bit payload len */
        'h',
        'o',
        't',

        /* CONTINUATION FRAME */
        0x00, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x02, /* mask | 7bit payload len */
        'd',
        'o',

        /* PING FRAME - Control frames may be injected in the middle of a fragmented message. */
        0x89, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x00, /* mask | 7bit payload len */

        /* CONTINUATION FRAME */
        0x80, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        'g',
    };

    struct aws_websocket_frame expected_frames[] = {
        {
            .fin = false,
            .opcode = 1,
            .payload_length = 3,
        },
        {
            .fin = false,
            .opcode = 0,
            .payload_length = 2,
        },
        {
            .fin = true,
            .opcode = 9,
        },
        {
            .fin = true,
            .opcode = 0,
            .payload_length = 1,
        },
    };

    const char *expected_payload = "hotdog";

    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    for (size_t i = 0; i < AWS_ARRAY_SIZE(expected_frames); ++i) {
        bool frame_complete;
        ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
        ASSERT_TRUE(frame_complete);
        ASSERT_UINT_EQUALS(i + 1, tester.on_frame_count);
        ASSERT_SUCCESS(s_compare_frame(&expected_frames[i], &tester.frame));
    }

    ASSERT_TRUE(aws_byte_buf_eq_c_str(&tester.payload, expected_payload));

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

DECODER_TEST_CASE(websocket_decoder_fail_on_bad_fragmentation) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        /* TEXT FRAME with FIN=0 */
        0x01, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        'a',

        /* TEXT FRAME - but ought to be a CONTINUATION frame */
        0x01, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        'b',
    };

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
    ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
    ASSERT_INT_EQUALS(AWS_ERROR_HTTP_WEBSOCKET_PROTOCOL_ERROR, aws_last_error());

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Control frames must have FIN bit set */
DECODER_TEST_CASE(websocket_decoder_control_frame_cannot_be_fragmented) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        0x0A, // fin | rsv1 | rsv2 | rsv3 | 4bit opcode
        0x00, // mask | 7bit payload len
    };

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
    ASSERT_INT_EQUALS(AWS_ERROR_HTTP_WEBSOCKET_PROTOCOL_ERROR, aws_last_error());

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test that we can process a TEXT frame with UTF-8 in it */
DECODER_TEST_CASE(websocket_decoder_utf8_text) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        /* TEXT FRAME */
        0x81, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x04, /* mask | 7bit payload len */
        /* payload - codepoint U+10348 as 4-byte UTF-8 */
        0xF0,
        0x90,
        0x8D,
        0x88,
    };

    struct aws_websocket_frame expected_frame = {
        .fin = true,
        .opcode = AWS_WEBSOCKET_OPCODE_TEXT,
        .payload_length = 4,
    };
    const char *expected_payload = "\xF0\x90\x8D\x88";

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

    /* check result */
    ASSERT_TRUE(frame_complete);
    ASSERT_SUCCESS(s_compare_frame(&expected_frame, &tester.frame));
    ASSERT_TRUE(aws_byte_buf_eq_c_str(&tester.payload, expected_payload));

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test that a TEXT frame with invalid UTF-8 fails */
DECODER_TEST_CASE(websocket_decoder_fail_on_bad_utf8_text) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    { /* Test validation failing when it hits totally bad byte values */
        uint8_t input[] = {
            /* TEXT FRAME */
            0x81, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
            0x01, /* mask | 7bit payload len */
            /* payload - illegal UTF-8 value */
            0xFF,
        };

        bool frame_complete;
        struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
        ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
        ASSERT_INT_EQUALS(AWS_ERROR_HTTP_WEBSOCKET_PROTOCOL_ERROR, aws_last_error());
    }

    s_decoder_tester_reset(&tester);

    { /* Test validation failing at the end, due to a 4-byte codepoint missing 1 byte */
        uint8_t input[] = {
            /* TEXT FRAME */
            0x81, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
            0x03, /* mask | 7bit payload len */
            /* payload - codepoint U+10348 as 4-byte UTF-8, but missing 4th byte */
            0xF0,
            0x90,
            0x8D,
            /* 0x88, <-- missing 4th byte */
        };

        bool frame_complete;
        struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
        ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
        ASSERT_INT_EQUALS(AWS_ERROR_HTTP_WEBSOCKET_PROTOCOL_ERROR, aws_last_error());
    }

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test that UTF-8 can be validated even if it's fragmented across frames  */
DECODER_TEST_CASE(websocket_decoder_fragmented_utf8_text) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    /* Split a 4-byte UTF-8 codepoint across a fragmented message.
     * codepoint U+10348 is UTF-8 bytes: 0xF0, 0x90, 0x8D, 0x88 */
    uint8_t input[] = {
        /* TEXT FRAME */
        0x01, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        /* payload */
        0xF0, /* 1/4 UTF-8 bytes */

        /* CONTINUATION FRAME */
        0x00, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x02, /* mask | 7bit payload len */
        /* payload */
        0x90, /* 2/4 UTF-8 bytes */
        0x8D, /* 3/4 UTF-8 bytes */

        /* PING FRAME - Control frames may be injected in the middle of a fragmented message. */
        0x89, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        /* payload - PING payload should not interfere with validation */
        0xFF,

        /* CONTINUATION FRAME */
        0x80, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        /* payload */
        0x88, /* 4/4 UTF-8 bytes */
    };

    struct aws_websocket_frame expected_frames[] = {
        {
            .fin = false,
            .opcode = 1,
            .payload_length = 1,
        },
        {
            .fin = false,
            .opcode = 0,
            .payload_length = 2,
        },
        {
            .fin = true,
            .opcode = 9,
            .payload_length = 1,
        },
        {
            .fin = true,
            .opcode = 0,
            .payload_length = 1,
        },
    };

    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    for (size_t i = 0; i < AWS_ARRAY_SIZE(expected_frames); ++i) {
        bool frame_complete;
        ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
        ASSERT_TRUE(frame_complete);
        ASSERT_UINT_EQUALS(i + 1, tester.on_frame_count);
        ASSERT_SUCCESS(s_compare_frame(&expected_frames[i], &tester.frame));
    }
    ASSERT_UINT_EQUALS(0, input_cursor.len);

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test that UTF-8 validator works even when text is fragmented across multiple frames */
DECODER_TEST_CASE(websocket_decoder_fail_on_fragmented_bad_utf8_text) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    /* Split a 4-byte UTF-8 codepoint across a fragmented message, but omit he last byte.
     * codepoint U+10348 is UTF-8 bytes: 0xF0, 0x90, 0x8D, 0x88 */
    uint8_t input[] = {
        /* TEXT FRAME */
        0x01, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        /* payload */
        0xF0, /* 1/4 UTF-8 bytes */

        /* CONTINUATION FRAME */
        0x00, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        /* payload */
        0x90, /* 2/4 UTF-8 bytes */

        /* PING FRAME - Control frames may be injected in the middle of a fragmented message. */
        0x89, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        /* payload - PING payload shouldn't interfere with the TEXT's validation */
        0x8D,

        /* CONTINUATION FRAME */
        0x80, /* fin | rsv1 | rsv2 | rsv3 | 4bit opcode */
        0x01, /* mask | 7bit payload len */
        /* payload */
        0x8D, /* 3/4 UTF-8 bytes */
        /* 0x88, <-- MISSING 4/4 UTF-8 bytes */
    };

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));

    /* TEXT should pass */
    ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
    ASSERT_TRUE(frame_complete);

    /* CONTINUATION should pass */
    ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
    ASSERT_TRUE(frame_complete);

    /* PING should pass */
    ASSERT_SUCCESS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
    ASSERT_TRUE(frame_complete);

    /* final CONTINUATION should fail because the message ended with an incomplete UTF-8 encoding */
    ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));
    ASSERT_INT_EQUALS(AWS_ERROR_HTTP_WEBSOCKET_PROTOCOL_ERROR, aws_last_error());

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

/* Test that an error from the on_frame callback fails the decoder */
DECODER_TEST_CASE(websocket_decoder_on_frame_callback_can_fail_decoder) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        0x81, // fin | rsv1 | rsv2 | rsv3 | 4bit opcode
        0x01, // mask | 7bit payload len
        'a',
    };

    tester.fail_on_nth_frame = 1;

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

    /* Check that error returned by callback bubbles up.
     * UNKNOWN error just happens to be what our test callback throws */
    ASSERT_INT_EQUALS(AWS_ERROR_HTTP_UNKNOWN, aws_last_error());

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}

DECODER_TEST_CASE(websocket_decoder_on_payload_callback_can_fail_decoder) {
    (void)ctx;
    struct decoder_tester tester;
    ASSERT_SUCCESS(s_decoder_tester_init(&tester, allocator));

    uint8_t input[] = {
        0x81, // fin | rsv1 | rsv2 | rsv3 | 4bit opcode
        0x01, // mask | 7bit payload len
        'a',
    };

    tester.fail_on_nth_payload = 1;

    bool frame_complete;
    struct aws_byte_cursor input_cursor = aws_byte_cursor_from_array(input, sizeof(input));
    ASSERT_FAILS(aws_websocket_decoder_process(&tester.decoder, &input_cursor, &frame_complete));

    /* Check that error returned by callback bubbles up.
     * UNKNOWN error just happens to be what our test callback throws */
    ASSERT_INT_EQUALS(AWS_ERROR_HTTP_UNKNOWN, aws_last_error());

    ASSERT_SUCCESS(s_decoder_tester_clean_up(&tester));
    return AWS_OP_SUCCESS;
}