File: message_deserializer_test.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 (162 lines) | stat: -rw-r--r-- 6,846 bytes parent folder | download | duplicates (3)
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
/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */

#include <aws/event-stream/event_stream.h>
#include <aws/testing/aws_test_harness.h>

static int s_test_outgoing_no_op_valid_fn(struct aws_allocator *allocator, void *ctx) {
    (void)allocator;
    (void)ctx;
    uint8_t test_data[] = {
        0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x05, 0xc2, 0x48, 0xeb, 0x7d, 0x98, 0xc8, 0xff};

    struct aws_event_stream_message message;
    struct aws_byte_buf test_buf = aws_byte_buf_from_array(test_data, sizeof(test_data));
    ASSERT_SUCCESS(
        aws_event_stream_message_from_buffer(&message, allocator, &test_buf),
        "Message validation should have succeeded");

    ASSERT_INT_EQUALS(
        0x00000010, aws_event_stream_message_total_length(&message), "Message length should have been 0x10");
    ASSERT_INT_EQUALS(
        0x00000000, aws_event_stream_message_headers_len(&message), "Headers Length should have been 0x00");
    ASSERT_INT_EQUALS(
        0x05c248eb, aws_event_stream_message_prelude_crc(&message), "Prelude CRC should have been 0x05c248eb");
    ASSERT_INT_EQUALS(
        0x7d98c8ff, aws_event_stream_message_message_crc(&message), "Message CRC should have been 0x7d98c8ff");

    aws_event_stream_message_clean_up(&message);

    return 0;
}

AWS_TEST_CASE(test_outgoing_no_op_valid, s_test_outgoing_no_op_valid_fn)

static int s_test_outgoing_application_data_no_headers_valid_fn(struct aws_allocator *allocator, void *ctx) {
    (void)allocator;
    (void)ctx;
    uint8_t test_data[] = {0x00, 0x00, 0x00, 0x1D, 0x00, 0x00, 0x00, 0x00, 0xfd, 0x52, 0x8c, 0x5a, 0x7b, 0x27, 0x66,
                           0x6f, 0x6f, 0x27, 0x3a, 0x27, 0x62, 0x61, 0x72, 0x27, 0x7d, 0xc3, 0x65, 0x39, 0x36};

    struct aws_event_stream_message message;
    struct aws_byte_buf test_buf = aws_byte_buf_from_array(test_data, sizeof(test_data));

    ASSERT_SUCCESS(
        aws_event_stream_message_from_buffer(&message, allocator, &test_buf),
        "Message validation should have succeeded");

    ASSERT_INT_EQUALS(
        0x0000001D, aws_event_stream_message_total_length(&message), "Message length should have been 0x0000001D");
    ASSERT_INT_EQUALS(
        0x00000000, aws_event_stream_message_headers_len(&message), "Headers Length should have been 0x00");
    ASSERT_INT_EQUALS(
        0xfd528c5a, aws_event_stream_message_prelude_crc(&message), "Prelude CRC should have been 0xfd528c5a");

    const char *expected_str = "{'foo':'bar'}";
    ASSERT_INT_EQUALS(
        strlen(expected_str),
        aws_event_stream_message_payload_len(&message),
        "payload length should have been %d",
        (int)(strlen(expected_str)));

    ASSERT_BIN_ARRAYS_EQUALS(
        expected_str,
        strlen(expected_str),
        aws_event_stream_message_payload(&message),
        aws_event_stream_message_payload_len(&message),
        "payload should have been %s",
        expected_str);
    ASSERT_INT_EQUALS(
        0xc3653936, aws_event_stream_message_message_crc(&message), "Message CRC should have been 0xc3653936");

    aws_event_stream_message_clean_up(&message);

    return 0;
}

AWS_TEST_CASE(test_outgoing_application_data_no_headers_valid, s_test_outgoing_application_data_no_headers_valid_fn)

static int s_test_outgoing_application_one_compressed_header_pair_valid_fn(struct aws_allocator *allocator, void *ctx) {
    (void)allocator;
    (void)ctx;
    uint8_t test_data[] = {0x00, 0x00, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x20, 0x07, 0xFD, 0x83, 0x96, 0x0C,
                           'c',  'o',  'n',  't',  'e',  'n',  't',  '-',  't',  'y',  'p',  'e',  0x07,
                           0x00, 0x10, 'a',  'p',  'p',  'l',  'i',  'c',  'a',  't',  'i',  'o',  'n',
                           '/',  'j',  's',  'o',  'n',  0x7b, 0x27, 0x66, 0x6f, 0x6f, 0x27, 0x3a, 0x27,
                           0x62, 0x61, 0x72, 0x27, 0x7d, 0x8D, 0x9C, 0x08, 0xB1};

    struct aws_event_stream_message message;
    struct aws_byte_buf test_buf = aws_byte_buf_from_array(test_data, sizeof(test_data));

    ASSERT_SUCCESS(
        aws_event_stream_message_from_buffer(&message, allocator, &test_buf),
        "Message validation should have succeeded");

    ASSERT_INT_EQUALS(
        0x0000003D, aws_event_stream_message_total_length(&message), "Message length should have been 0x0000003D");
    ASSERT_INT_EQUALS(
        0x00000020, aws_event_stream_message_headers_len(&message), "Headers Length should have been 0x00000020");
    ASSERT_INT_EQUALS(
        0x07FD8396, aws_event_stream_message_prelude_crc(&message), "Prelude CRC should have been 0x07FD8396");

    const char *expected_str = "{'foo':'bar'}";
    ASSERT_INT_EQUALS(
        strlen(expected_str),
        aws_event_stream_message_payload_len(&message),
        "payload length should have been %d",
        (int)(strlen(expected_str)));

    ASSERT_BIN_ARRAYS_EQUALS(
        expected_str,
        strlen(expected_str),
        aws_event_stream_message_payload(&message),
        aws_event_stream_message_payload_len(&message),
        "payload should have been %s",
        expected_str);

    struct aws_array_list headers;
    ASSERT_SUCCESS(aws_event_stream_headers_list_init(&headers, allocator), "Header initialization failed");

    ASSERT_SUCCESS(aws_event_stream_message_headers(&message, &headers), "Header parsing should have succeeded");
    ASSERT_INT_EQUALS(1, headers.length, "There should be exactly one header found");
    struct aws_event_stream_header_value_pair header;
    ASSERT_SUCCESS(
        aws_array_list_front(&headers, &header),
        "accessing the first element of an array of size 1 should have succeeded");

    const char *content_type = "content-type";
    const char *content_type_value = "application/json";

    struct aws_byte_buf header_name_buf = aws_event_stream_header_name(&header);
    ASSERT_BIN_ARRAYS_EQUALS(
        content_type,
        strlen(content_type),
        header_name_buf.buffer,
        header_name_buf.len,
        "header name should have been %s",
        content_type);

    struct aws_byte_buf header_value_buf = aws_event_stream_header_value_as_string(&header);

    ASSERT_BIN_ARRAYS_EQUALS(
        content_type_value,
        strlen(content_type_value),
        header_value_buf.buffer,
        header_value_buf.len,
        "header value should have been %s",
        content_type_value);

    ASSERT_INT_EQUALS(
        0x8D9C08B1, aws_event_stream_message_message_crc(&message), "Message CRC should have been 0x8D9C08B1");

    aws_event_stream_headers_list_cleanup(&headers);
    aws_event_stream_message_clean_up(&message);

    return 0;
}

AWS_TEST_CASE(
    test_outgoing_application_one_compressed_header_pair_valid,
    s_test_outgoing_application_one_compressed_header_pair_valid_fn)