litespeed-quic/tests/test_blocked_gquic_be.c

71 lines
1.6 KiB
C

/* Copyright (c) 2017 - 2021 LiteSpeed Technologies Inc. See LICENSE. */
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef WIN32
#include <sys/time.h>
#endif
#include "lsquic.h"
#include "lsquic_types.h"
#include "lsquic_parse.h"
//static const struct parse_funcs *const pf = select_pf_by_ver(LSQVER_043); // will not work on MSVC
#define pf ((const struct parse_funcs *const)select_pf_by_ver(LSQVER_043))
/* The test is both for generation and parsing: */
struct wuf_test {
unsigned char buf[0x10];
size_t buf_len;
lsquic_stream_id_t stream_id;
};
static const struct wuf_test wuf_tests[] = {
{
.buf = { 0x05, 0x00, 0x67, 0x45, 0x34, },
.buf_len = GQUIC_BLOCKED_FRAME_SZ,
.stream_id = 0x674534,
},
{ .buf = { 0 }, }
};
static void
run_parse_tests (void)
{
const struct wuf_test *test;
for (test = wuf_tests; test->buf[0]; ++test)
{
lsquic_stream_id_t stream_id = ~0;
int sz = pf->pf_parse_blocked_frame(test->buf, test->buf_len, &stream_id);
assert(sz == GQUIC_BLOCKED_FRAME_SZ);
assert(stream_id == test->stream_id);
}
}
static void
run_gen_tests (void)
{
const struct wuf_test *test;
for (test = wuf_tests; test->buf[0]; ++test)
{
unsigned char buf[0x100];
int sz = pf->pf_gen_blocked_frame(buf, test->buf_len, test->stream_id);
assert(sz == GQUIC_BLOCKED_FRAME_SZ);
assert(0 == memcmp(buf, test->buf, sz));
}
}
int
main (void)
{
run_parse_tests();
run_gen_tests();
return 0;
}