nghttp2/tests/failmalloc_test.c

467 lines
13 KiB
C
Raw Normal View History

2012-04-24 15:51:06 +02:00
/*
2014-03-30 12:09:21 +02:00
* nghttp2 - HTTP/2 C Library
2012-04-24 15:51:06 +02:00
*
* Copyright (c) 2012 Tatsuhiro Tsujikawa
*
* 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 "failmalloc_test.h"
#include <CUnit/CUnit.h>
#include <stdio.h>
#include <assert.h>
2013-07-12 17:19:03 +02:00
#include "nghttp2_session.h"
#include "nghttp2_stream.h"
#include "nghttp2_frame.h"
#include "nghttp2_helper.h"
2012-04-24 15:51:06 +02:00
#include "malloc_wrapper.h"
2013-07-12 17:19:03 +02:00
#include "nghttp2_test_helper.h"
2012-04-24 15:51:06 +02:00
typedef struct {
uint8_t data[8192];
uint8_t *datamark, *datalimit;
} data_feed;
typedef struct {
data_feed *df;
size_t data_source_length;
} my_user_data;
static void data_feed_init(data_feed *df, uint8_t *data, size_t data_length)
{
assert(data_length <= sizeof(df->data));
memcpy(df->data, data, data_length);
df->datamark = df->data;
df->datalimit = df->data+data_length;
}
2013-07-12 17:19:03 +02:00
static ssize_t null_send_callback(nghttp2_session *session,
2012-04-24 15:51:06 +02:00
const uint8_t* data, size_t len, int flags,
void *user_data)
{
return len;
}
2013-07-12 17:19:03 +02:00
static ssize_t data_feed_recv_callback(nghttp2_session *session,
2012-04-24 15:51:06 +02:00
uint8_t* data, size_t len, int flags,
void *user_data)
{
data_feed *df = ((my_user_data*)user_data)->df;
size_t avail = df->datalimit - df->datamark;
2013-07-12 17:19:03 +02:00
size_t wlen = nghttp2_min(avail, len);
2012-04-24 15:51:06 +02:00
memcpy(data, df->datamark, wlen);
df->datamark += wlen;
return wlen;
}
static ssize_t fixed_length_data_source_read_callback
2013-07-12 17:19:03 +02:00
(nghttp2_session *session, int32_t stream_id,
2012-04-24 15:51:06 +02:00
uint8_t *buf, size_t len, int *eof,
2013-07-12 17:19:03 +02:00
nghttp2_data_source *source, void *user_data)
2012-04-24 15:51:06 +02:00
{
my_user_data *ud = (my_user_data*)user_data;
size_t wlen;
if(len < ud->data_source_length) {
wlen = len;
} else {
wlen = ud->data_source_length;
}
ud->data_source_length -= wlen;
if(ud->data_source_length == 0) {
*eof = 1;
}
return wlen;
}
#define TEST_FAILMALLOC_RUN(FUN) \
size_t nmalloc, i; \
\
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc = 0; \
nghttp2_nmalloc = 0; \
2012-04-24 15:51:06 +02:00
FUN(); \
2013-07-12 17:19:03 +02:00
nmalloc = nghttp2_nmalloc; \
2012-04-24 15:51:06 +02:00
\
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc = 1; \
2012-04-24 15:51:06 +02:00
for(i = 0; i < nmalloc; ++i) { \
2013-07-12 17:19:03 +02:00
nghttp2_nmalloc = 0; \
nghttp2_failstart = i; \
2012-04-24 15:51:06 +02:00
/* printf("i=%zu\n", i); */ \
FUN(); \
2013-07-12 17:19:03 +02:00
/* printf("nmalloc=%d\n", nghttp2_nmalloc); */ \
} \
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc = 0;
2012-04-24 15:51:06 +02:00
2013-07-12 17:19:03 +02:00
static void run_nghttp2_session_send(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
nghttp2_session *session;
nghttp2_session_callbacks callbacks;
nghttp2_nv nv[] = {
MAKE_NV(":host", "example.org"),
MAKE_NV(":scheme", "https")
};
2013-07-12 17:19:03 +02:00
nghttp2_data_provider data_prd;
nghttp2_settings_entry iv[2];
2012-04-24 15:51:06 +02:00
my_user_data ud;
int rv;
2013-07-12 17:19:03 +02:00
memset(&callbacks, 0, sizeof(nghttp2_session_callbacks));
2012-04-24 15:51:06 +02:00
callbacks.send_callback = null_send_callback;
data_prd.read_callback = fixed_length_data_source_read_callback;
ud.data_source_length = 64*1024;
2013-10-30 18:02:00 +01:00
iv[0].settings_id = NGHTTP2_SETTINGS_HEADER_TABLE_SIZE;
iv[0].value = 4096;
2013-07-12 17:19:03 +02:00
iv[1].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS;
2012-04-24 15:51:06 +02:00
iv[1].value = 100;
2013-10-30 18:02:00 +01:00
rv = nghttp2_session_client_new(&session, &callbacks, &ud);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto client_new_fail;
}
rv = nghttp2_submit_request(session, 3, nv, ARRLEN(nv), &data_prd, NULL);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
rv = nghttp2_submit_headers(session, NGHTTP2_FLAG_NONE, -1,
NGHTTP2_PRI_DEFAULT, nv, ARRLEN(nv), NULL);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-07-12 17:19:03 +02:00
rv = nghttp2_session_send(session);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
/* The HEADERS submitted by the previous nghttp2_submit_headers will
have stream ID 3. Send HEADERS to that stream. */
rv = nghttp2_submit_headers(session, NGHTTP2_FLAG_NONE, 3,
NGHTTP2_PRI_DEFAULT, nv, ARRLEN(nv), NULL);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
rv = nghttp2_submit_data(session, NGHTTP2_FLAG_END_STREAM, 3, &data_prd);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-07-12 17:19:03 +02:00
rv = nghttp2_session_send(session);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 3,
NGHTTP2_CANCEL);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-07-12 17:19:03 +02:00
rv = nghttp2_session_send(session);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
/* Sending against half-closed stream */
2013-10-30 18:02:00 +01:00
rv = nghttp2_submit_headers(session, NGHTTP2_FLAG_NONE, 3,
NGHTTP2_PRI_DEFAULT, nv, ARRLEN(nv), NULL);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
rv = nghttp2_submit_data(session, NGHTTP2_FLAG_END_STREAM, 3, &data_prd);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
rv = nghttp2_submit_ping(session, NGHTTP2_FLAG_NONE, NULL);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
rv = nghttp2_submit_settings(session, NGHTTP2_FLAG_NONE, iv, 2);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-07-12 17:19:03 +02:00
rv = nghttp2_session_send(session);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
rv = nghttp2_submit_goaway(session, NGHTTP2_FLAG_NONE, NGHTTP2_NO_ERROR,
NULL, 0);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-07-12 17:19:03 +02:00
rv = nghttp2_session_send(session);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
fail:
2013-07-12 17:19:03 +02:00
nghttp2_session_del(session);
2012-04-24 15:51:06 +02:00
client_new_fail:
;
}
2013-07-12 17:19:03 +02:00
void test_nghttp2_session_send(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
TEST_FAILMALLOC_RUN(run_nghttp2_session_send);
2012-04-24 15:51:06 +02:00
}
2013-07-12 17:19:03 +02:00
static void run_nghttp2_session_recv(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
nghttp2_session *session;
nghttp2_session_callbacks callbacks;
2013-10-30 18:02:00 +01:00
nghttp2_hd_context deflater;
2013-07-12 17:19:03 +02:00
nghttp2_frame frame;
2013-10-30 18:02:00 +01:00
uint8_t *buf = NULL;
size_t buflen = 0;
2012-04-24 15:51:06 +02:00
ssize_t framelen;
nghttp2_nv nv[] = {
MAKE_NV(":authority", "example.org"),
MAKE_NV(":scheme", "https")
};
2013-07-12 17:19:03 +02:00
nghttp2_settings_entry iv[2];
2012-04-24 15:51:06 +02:00
my_user_data ud;
data_feed df;
int rv;
2013-10-30 18:02:00 +01:00
nghttp2_nv *nva;
ssize_t nvlen;
2012-04-24 15:51:06 +02:00
2013-07-12 17:19:03 +02:00
memset(&callbacks, 0, sizeof(nghttp2_session_callbacks));
2012-04-24 15:51:06 +02:00
callbacks.recv_callback = data_feed_recv_callback;
ud.df = &df;
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc_pause();
nvlen = nghttp2_nv_array_copy(&nva, nv, ARRLEN(nv));
2013-10-30 18:02:00 +01:00
nghttp2_hd_deflate_init(&deflater, NGHTTP2_HD_SIDE_REQUEST);
nghttp2_session_server_new(&session, &callbacks, &ud);
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc_unpause();
2012-04-24 15:51:06 +02:00
2013-10-30 18:02:00 +01:00
/* HEADERS */
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc_pause();
2013-10-30 18:02:00 +01:00
nghttp2_frame_headers_init(&frame.headers, NGHTTP2_FLAG_END_STREAM,
1, NGHTTP2_PRI_DEFAULT, nva, nvlen);
framelen = nghttp2_frame_pack_headers(&buf, &buflen, &frame.headers,
&deflater);
nghttp2_frame_headers_free(&frame.headers);
2012-04-24 15:51:06 +02:00
data_feed_init(&df, buf, framelen);
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc_unpause();
2012-04-24 15:51:06 +02:00
2013-07-12 17:19:03 +02:00
rv = nghttp2_session_recv(session);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
/* PING */
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc_pause();
2013-10-30 18:02:00 +01:00
nghttp2_frame_ping_init(&frame.ping, NGHTTP2_FLAG_NONE, NULL);
2013-07-12 17:19:03 +02:00
framelen = nghttp2_frame_pack_ping(&buf, &buflen, &frame.ping);
nghttp2_frame_ping_free(&frame.ping);
2012-04-24 15:51:06 +02:00
data_feed_init(&df, buf, framelen);
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc_unpause();
2012-04-24 15:51:06 +02:00
2013-07-12 17:19:03 +02:00
rv = nghttp2_session_recv(session);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
/* RST_STREAM */
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc_pause();
2013-10-30 18:02:00 +01:00
nghttp2_frame_rst_stream_init(&frame.rst_stream, 1, NGHTTP2_PROTOCOL_ERROR);
2013-07-12 17:19:03 +02:00
framelen = nghttp2_frame_pack_rst_stream(&buf, &buflen, &frame.rst_stream);
nghttp2_frame_rst_stream_free(&frame.rst_stream);
nghttp2_failmalloc_unpause();
rv = nghttp2_session_recv(session);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
/* SETTINGS */
2013-07-12 17:19:03 +02:00
nghttp2_failmalloc_pause();
2013-10-30 18:02:00 +01:00
iv[0].settings_id = NGHTTP2_SETTINGS_HEADER_TABLE_SIZE;
iv[0].value = 4096;
2013-07-12 17:19:03 +02:00
iv[1].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS;
2012-04-24 15:51:06 +02:00
iv[1].value = 100;
2013-10-30 18:02:00 +01:00
nghttp2_frame_settings_init(&frame.settings, NGHTTP2_FLAG_NONE,
2013-07-12 17:19:03 +02:00
nghttp2_frame_iv_copy(iv, 2), 2);
framelen = nghttp2_frame_pack_settings(&buf, &buflen, &frame.settings);
nghttp2_frame_settings_free(&frame.settings);
nghttp2_failmalloc_unpause();
rv = nghttp2_session_recv(session);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
fail:
free(buf);
2013-07-12 17:19:03 +02:00
nghttp2_session_del(session);
2013-10-30 18:02:00 +01:00
nghttp2_hd_deflate_free(&deflater);
2012-04-24 15:51:06 +02:00
}
2013-07-12 17:19:03 +02:00
void test_nghttp2_session_recv(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
TEST_FAILMALLOC_RUN(run_nghttp2_session_recv);
2012-04-24 15:51:06 +02:00
}
2013-10-30 18:02:00 +01:00
static void run_nghttp2_frame_pack_headers(void)
2012-04-24 15:51:06 +02:00
{
2013-10-30 18:02:00 +01:00
nghttp2_hd_context deflater, inflater;
2013-07-12 17:19:03 +02:00
nghttp2_frame frame, oframe;
2013-10-30 18:02:00 +01:00
uint8_t *buf = NULL;
size_t buflen = 0;
2012-04-24 15:51:06 +02:00
ssize_t framelen;
nghttp2_nv nv[] = {
MAKE_NV(":host", "example.org"),
MAKE_NV(":scheme", "https")
};
2012-04-24 15:51:06 +02:00
int rv;
2013-10-30 18:02:00 +01:00
nghttp2_nv *nva;
ssize_t nvlen;
2012-04-24 15:51:06 +02:00
2013-10-30 18:02:00 +01:00
rv = nghttp2_hd_deflate_init(&deflater, NGHTTP2_HD_SIDE_REQUEST);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto deflate_init_fail;
}
2013-10-30 18:02:00 +01:00
rv = nghttp2_hd_inflate_init(&inflater, NGHTTP2_HD_SIDE_REQUEST);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto inflate_init_fail;
}
nvlen = nghttp2_nv_array_copy(&nva, nv, ARRLEN(nv));
2013-10-30 18:02:00 +01:00
if(nvlen < 0) {
2012-04-24 15:51:06 +02:00
goto nv_copy_fail;
}
2013-10-30 18:02:00 +01:00
nghttp2_frame_headers_init(&frame.headers, NGHTTP2_FLAG_END_STREAM,
1, NGHTTP2_PRI_DEFAULT, nva, nvlen);
framelen = nghttp2_frame_pack_headers(&buf, &buflen, &frame.headers,
&deflater);
2012-04-24 15:51:06 +02:00
if(framelen < 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
rv = unpack_frame_with_nv_block(&oframe, NGHTTP2_HEADERS, &inflater,
buf, framelen);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-10-30 18:02:00 +01:00
nghttp2_frame_headers_free(&oframe.headers);
2012-10-01 14:51:24 +02:00
fail:
2012-04-24 15:51:06 +02:00
free(buf);
2013-10-30 18:02:00 +01:00
nghttp2_frame_headers_free(&frame.headers);
2012-04-24 15:51:06 +02:00
nv_copy_fail:
2013-10-30 18:02:00 +01:00
nghttp2_hd_inflate_free(&inflater);
2012-04-24 15:51:06 +02:00
inflate_init_fail:
2013-10-30 18:02:00 +01:00
nghttp2_hd_deflate_free(&deflater);
2012-10-01 14:51:24 +02:00
deflate_init_fail:
2013-10-30 18:02:00 +01:00
;
2012-04-24 15:51:06 +02:00
}
2013-07-12 17:19:03 +02:00
static void run_nghttp2_frame_pack_ping(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
nghttp2_frame frame;
2012-04-24 15:51:06 +02:00
uint8_t *buf = NULL;
size_t buflen = 0;
2013-10-30 18:02:00 +01:00
nghttp2_frame_ping_init(&frame.ping, NGHTTP2_FLAG_NONE, NULL);
2013-07-12 17:19:03 +02:00
nghttp2_frame_pack_ping(&buf, &buflen, &frame.ping);
2012-04-24 15:51:06 +02:00
free(buf);
2013-07-12 17:19:03 +02:00
nghttp2_frame_ping_free(&frame.ping);
2012-04-24 15:51:06 +02:00
}
2013-07-12 17:19:03 +02:00
static void run_nghttp2_frame_pack_goaway(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
nghttp2_frame frame;
2012-04-24 15:51:06 +02:00
uint8_t *buf = NULL;
size_t buflen = 0;
2013-10-30 18:02:00 +01:00
nghttp2_frame_goaway_init(&frame.goaway, 1000000007, NGHTTP2_PROTOCOL_ERROR,
NULL, 0);
2013-07-12 17:19:03 +02:00
nghttp2_frame_pack_goaway(&buf, &buflen, &frame.goaway);
2012-04-24 15:51:06 +02:00
free(buf);
2013-07-12 17:19:03 +02:00
nghttp2_frame_goaway_free(&frame.goaway);
2012-04-24 15:51:06 +02:00
}
2013-07-12 17:19:03 +02:00
static void run_nghttp2_frame_pack_rst_stream(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
nghttp2_frame frame;
2012-04-24 15:51:06 +02:00
uint8_t *buf = NULL;
size_t buflen = 0;
2013-10-30 18:02:00 +01:00
nghttp2_frame_rst_stream_init(&frame.rst_stream, 1, NGHTTP2_PROTOCOL_ERROR);
2013-07-12 17:19:03 +02:00
nghttp2_frame_pack_rst_stream(&buf, &buflen, &frame.rst_stream);
2012-04-24 15:51:06 +02:00
free(buf);
2013-07-12 17:19:03 +02:00
nghttp2_frame_rst_stream_free(&frame.rst_stream);
2012-04-24 15:51:06 +02:00
}
2013-07-12 17:19:03 +02:00
static void run_nghttp2_frame_pack_window_update(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
nghttp2_frame frame;
2012-04-24 15:51:06 +02:00
uint8_t *buf = NULL;
size_t buflen = 0;
2013-10-30 18:02:00 +01:00
nghttp2_frame_window_update_init(&frame.window_update, NGHTTP2_FLAG_NONE,
2012-04-24 15:51:06 +02:00
1000000007, 4096);
2013-07-12 17:19:03 +02:00
nghttp2_frame_pack_window_update(&buf, &buflen,
2012-04-24 15:51:06 +02:00
&frame.window_update);
free(buf);
2013-07-12 17:19:03 +02:00
nghttp2_frame_window_update_free(&frame.window_update);
2012-04-24 15:51:06 +02:00
}
2013-07-12 17:19:03 +02:00
static void run_nghttp2_frame_pack_settings(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
nghttp2_frame frame, oframe;
2012-04-24 15:51:06 +02:00
uint8_t *buf = NULL;
size_t buflen = 0;
ssize_t framelen;
2013-07-12 17:19:03 +02:00
nghttp2_settings_entry iv[2], *iv_copy;
2012-04-24 15:51:06 +02:00
int rv;
2013-10-30 18:02:00 +01:00
iv[0].settings_id = NGHTTP2_SETTINGS_HEADER_TABLE_SIZE;
iv[0].value = 4096;
2013-07-12 17:19:03 +02:00
iv[1].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS;
2012-04-24 15:51:06 +02:00
iv[1].value = 100;
2013-07-12 17:19:03 +02:00
iv_copy = nghttp2_frame_iv_copy(iv, 2);
2012-04-24 15:51:06 +02:00
if(iv_copy == NULL) {
goto iv_copy_fail;
}
2013-10-30 18:02:00 +01:00
nghttp2_frame_settings_init(&frame.settings, NGHTTP2_FLAG_NONE, iv_copy, 2);
2013-07-12 17:19:03 +02:00
framelen = nghttp2_frame_pack_settings(&buf, &buflen, &frame.settings);
2012-04-24 15:51:06 +02:00
if(framelen < 0) {
goto fail;
}
2013-07-12 17:19:03 +02:00
rv = nghttp2_frame_unpack_settings(&oframe.settings,
&buf[0], NGHTTP2_FRAME_HDLEN,
&buf[NGHTTP2_FRAME_HDLEN],
framelen-NGHTTP2_FRAME_HDLEN);
2012-04-24 15:51:06 +02:00
if(rv != 0) {
goto fail;
}
2013-07-12 17:19:03 +02:00
nghttp2_frame_settings_free(&oframe.settings);
2012-04-24 15:51:06 +02:00
fail:
free(buf);
2013-07-12 17:19:03 +02:00
nghttp2_frame_settings_free(&frame.settings);
2012-04-24 15:51:06 +02:00
iv_copy_fail:
;
}
2013-07-12 17:19:03 +02:00
static void run_nghttp2_frame(void)
2012-04-24 15:51:06 +02:00
{
2013-10-30 18:02:00 +01:00
run_nghttp2_frame_pack_headers();
2013-07-12 17:19:03 +02:00
run_nghttp2_frame_pack_ping();
run_nghttp2_frame_pack_goaway();
run_nghttp2_frame_pack_rst_stream();
run_nghttp2_frame_pack_window_update();
run_nghttp2_frame_pack_settings();
2012-04-24 15:51:06 +02:00
}
2013-07-12 17:19:03 +02:00
void test_nghttp2_frame(void)
2012-04-24 15:51:06 +02:00
{
2013-07-12 17:19:03 +02:00
TEST_FAILMALLOC_RUN(run_nghttp2_frame);
2012-04-24 15:51:06 +02:00
}