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
|
/*
* ngtcp2
*
* Copyright (c) 2020 ngtcp2 contributors
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "ngtcp2_str_test.h"
#include <stdio.h>
#include "ngtcp2_str.h"
#include "ngtcp2_test_helper.h"
static const MunitTest tests[] = {
munit_void_test(test_ngtcp2_encode_ipv4),
munit_void_test(test_ngtcp2_encode_ipv6),
munit_void_test(test_ngtcp2_get_bytes),
munit_test_end(),
};
const MunitSuite str_suite = {
.prefix = "/str",
.tests = tests,
};
void test_ngtcp2_encode_ipv4(void) {
uint8_t buf[16];
assert_string_equal(
"192.168.0.1",
(const char *)ngtcp2_encode_ipv4(buf, (const uint8_t *)"\xc0\xa8\x00\x01"));
assert_string_equal("127.0.0.1", (const char *)ngtcp2_encode_ipv4(
buf, (const uint8_t *)"\x7f\x00\x00\x01"));
}
void test_ngtcp2_encode_ipv6(void) {
uint8_t buf[32 + 7 + 1];
assert_string_equal("2001:db8::2:1",
(const char *)ngtcp2_encode_ipv6(
buf,
(const uint8_t *)"\x20\x01\x0d\xb8\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x02\x00\x01"));
assert_string_equal("2001:db8:0:1:1:1:1:1",
(const char *)ngtcp2_encode_ipv6(
buf,
(const uint8_t *)"\x20\x01\x0d\xb8\x00\x00\x00\x01\x00"
"\x01\x00\x01\x00\x01\x00\x01"));
assert_string_equal("2001:db8::1:0:0:1",
(const char *)ngtcp2_encode_ipv6(
buf,
(const uint8_t *)"\x20\x01\x0d\xb8\x00\x00\x00\x00\x00"
"\x01\x00\x00\x00\x00\x00\x01"));
assert_string_equal("2001:db8::8:800:200c:417a",
(const char *)ngtcp2_encode_ipv6(
buf,
(const uint8_t *)"\x20\x01\x0d\xb8\x00\x00\x00\x00\x00"
"\x08\x08\x00\x20\x0C\x41\x7a"));
assert_string_equal(
"ff01::101", (const char *)ngtcp2_encode_ipv6(
buf, (const uint8_t *)"\xff\x01\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x01\x01"));
assert_string_equal(
"::1", (const char *)ngtcp2_encode_ipv6(
buf, (const uint8_t *)"\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x01"));
assert_string_equal(
"::", (const char *)ngtcp2_encode_ipv6(
buf, (const uint8_t *)"\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00"));
}
void test_ngtcp2_get_bytes(void) {
const uint8_t src[] = {'f', 'o', 'o', 'b', 'a', 'r'};
uint8_t dest[256];
assert_ptr_equal(src + sizeof(src), ngtcp2_get_bytes(dest, src, sizeof(src)));
assert_memory_equal(sizeof(src), src, dest);
}
|