2013-07-19 09:50:31 +02:00
|
|
|
/*
|
|
|
|
* nghttp2 - HTTP/2.0 C Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013 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 "nghttp2_hd_test.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <CUnit/CUnit.h>
|
|
|
|
|
|
|
|
#include "nghttp2_hd.h"
|
|
|
|
#include "nghttp2_frame.h"
|
2013-09-10 17:55:35 +02:00
|
|
|
#include "nghttp2_test_helper.h"
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2013-10-12 14:49:01 +02:00
|
|
|
#define GET_TABLE_ENT(context, index) nghttp2_hd_table_get(context, index)
|
|
|
|
|
2013-07-19 09:50:31 +02:00
|
|
|
static void assert_nv_equal(nghttp2_nv *a, nghttp2_nv *b, size_t len)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for(i = 0; i < len; ++i, ++a, ++b) {
|
|
|
|
CU_ASSERT(nghttp2_nv_equal(a, b));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_nghttp2_hd_deflate(void)
|
|
|
|
{
|
|
|
|
nghttp2_hd_context deflater, inflater;
|
|
|
|
nghttp2_nv nva1[] = {MAKE_NV(":path", "/my-example/index.html"),
|
|
|
|
MAKE_NV(":scheme", "https"),
|
|
|
|
MAKE_NV("hello", "world")};
|
|
|
|
nghttp2_nv nva2[] = {MAKE_NV(":path", "/script.js"),
|
|
|
|
MAKE_NV(":scheme", "https")};
|
2013-07-25 18:34:28 +02:00
|
|
|
nghttp2_nv nva3[] = {MAKE_NV("cookie", "k1=v1"),
|
|
|
|
MAKE_NV("cookie", "k2=v2"),
|
|
|
|
MAKE_NV("via", "proxy")};
|
2013-07-22 19:52:08 +02:00
|
|
|
nghttp2_nv nva4[] = {MAKE_NV(":path", "/style.css"),
|
|
|
|
MAKE_NV("cookie", "k1=v1"),
|
|
|
|
MAKE_NV("cookie", "k1=v1")};
|
2013-07-23 16:10:53 +02:00
|
|
|
nghttp2_nv nva5[] = {MAKE_NV(":path", "/style.css"),
|
|
|
|
MAKE_NV("x-nghttp2", "")};
|
2013-07-19 09:50:31 +02:00
|
|
|
size_t nv_offset = 12;
|
|
|
|
uint8_t *buf = NULL;
|
|
|
|
size_t buflen = 0;
|
|
|
|
nghttp2_nv *resnva;
|
|
|
|
ssize_t blocklen;
|
|
|
|
|
2013-10-20 17:44:39 +02:00
|
|
|
CU_ASSERT(0 == nghttp2_hd_deflate_init(&deflater, NGHTTP2_HD_SIDE_REQUEST));
|
|
|
|
CU_ASSERT(0 == nghttp2_hd_inflate_init(&inflater, NGHTTP2_HD_SIDE_REQUEST));
|
2013-07-19 09:50:31 +02:00
|
|
|
blocklen = nghttp2_hd_deflate_hd(&deflater, &buf, &buflen, nv_offset, nva1,
|
|
|
|
sizeof(nva1)/sizeof(nghttp2_nv));
|
2013-07-19 18:19:00 +02:00
|
|
|
CU_ASSERT(blocklen > 0);
|
2013-07-19 09:50:31 +02:00
|
|
|
nghttp2_hd_end_headers(&deflater);
|
|
|
|
CU_ASSERT(3 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf + nv_offset,
|
|
|
|
blocklen));
|
|
|
|
assert_nv_equal(nva1, resnva, 3);
|
|
|
|
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_nv_array_del(resnva);
|
2013-07-19 09:50:31 +02:00
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
|
|
|
/* Second headers */
|
|
|
|
blocklen = nghttp2_hd_deflate_hd(&deflater, &buf, &buflen, nv_offset, nva2,
|
|
|
|
sizeof(nva2)/sizeof(nghttp2_nv));
|
2013-07-19 18:19:00 +02:00
|
|
|
CU_ASSERT(blocklen > 0);
|
2013-07-19 09:50:31 +02:00
|
|
|
nghttp2_hd_end_headers(&deflater);
|
|
|
|
|
|
|
|
CU_ASSERT(2 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf + nv_offset,
|
|
|
|
blocklen));
|
|
|
|
|
|
|
|
assert_nv_equal(nva2, resnva, 2);
|
|
|
|
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_nv_array_del(resnva);
|
2013-07-19 09:50:31 +02:00
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
2013-07-22 19:52:08 +02:00
|
|
|
/* Third headers, including same header field name, but value is not
|
|
|
|
the same. */
|
|
|
|
blocklen = nghttp2_hd_deflate_hd(&deflater, &buf, &buflen, nv_offset, nva3,
|
|
|
|
sizeof(nva3)/sizeof(nghttp2_nv));
|
|
|
|
CU_ASSERT(blocklen > 0);
|
|
|
|
nghttp2_hd_end_headers(&deflater);
|
|
|
|
CU_ASSERT(3 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf + nv_offset,
|
|
|
|
blocklen));
|
|
|
|
assert_nv_equal(nva3, resnva, 3);
|
|
|
|
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
2013-08-23 16:38:28 +02:00
|
|
|
/* Fourth headers, including duplicate header fields. */
|
2013-07-22 19:52:08 +02:00
|
|
|
blocklen = nghttp2_hd_deflate_hd(&deflater, &buf, &buflen, nv_offset, nva4,
|
|
|
|
sizeof(nva4)/sizeof(nghttp2_nv));
|
2013-07-25 18:34:28 +02:00
|
|
|
CU_ASSERT(blocklen > 0);
|
2013-07-22 19:52:08 +02:00
|
|
|
nghttp2_hd_end_headers(&deflater);
|
|
|
|
|
2013-08-23 16:38:28 +02:00
|
|
|
CU_ASSERT(3 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf + nv_offset,
|
2013-07-22 19:52:08 +02:00
|
|
|
blocklen));
|
|
|
|
|
2013-08-23 16:38:28 +02:00
|
|
|
assert_nv_equal(nva4, resnva, 3);
|
2013-07-22 19:52:08 +02:00
|
|
|
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
2013-07-23 16:10:53 +02:00
|
|
|
/* Fifth headers includes empty value */
|
|
|
|
blocklen = nghttp2_hd_deflate_hd(&deflater, &buf, &buflen, nv_offset, nva5,
|
|
|
|
sizeof(nva5)/sizeof(nghttp2_nv));
|
|
|
|
CU_ASSERT(blocklen > 0);
|
|
|
|
nghttp2_hd_end_headers(&deflater);
|
|
|
|
|
|
|
|
CU_ASSERT(2 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf + nv_offset,
|
|
|
|
blocklen));
|
|
|
|
|
|
|
|
assert_nv_equal(nva5, resnva, 2);
|
|
|
|
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
|
|
|
/* Cleanup */
|
2013-07-19 09:50:31 +02:00
|
|
|
free(buf);
|
|
|
|
nghttp2_hd_inflate_free(&inflater);
|
|
|
|
nghttp2_hd_deflate_free(&deflater);
|
|
|
|
}
|
|
|
|
|
2013-08-23 16:38:28 +02:00
|
|
|
void test_nghttp2_hd_deflate_same_indexed_repr(void)
|
|
|
|
{
|
|
|
|
nghttp2_hd_context deflater, inflater;
|
|
|
|
nghttp2_nv nva1[] = {MAKE_NV("cookie", "alpha"),
|
|
|
|
MAKE_NV("cookie", "alpha")};
|
|
|
|
nghttp2_nv nva2[] = {MAKE_NV("cookie", "alpha"),
|
|
|
|
MAKE_NV("cookie", "alpha"),
|
|
|
|
MAKE_NV("cookie", "alpha")};
|
|
|
|
uint8_t *buf = NULL;
|
|
|
|
size_t buflen = 0;
|
|
|
|
nghttp2_nv *resnva;
|
|
|
|
ssize_t blocklen;
|
|
|
|
|
2013-10-20 17:44:39 +02:00
|
|
|
CU_ASSERT(0 == nghttp2_hd_deflate_init(&deflater, NGHTTP2_HD_SIDE_REQUEST));
|
|
|
|
CU_ASSERT(0 == nghttp2_hd_inflate_init(&inflater, NGHTTP2_HD_SIDE_REQUEST));
|
2013-08-23 16:38:28 +02:00
|
|
|
|
|
|
|
/* Encode 2 same headers. cookie:alpha is not in the reference set,
|
|
|
|
so first emit literal repr and then 2 emits of indexed repr. */
|
|
|
|
blocklen = nghttp2_hd_deflate_hd(&deflater, &buf, &buflen, 0, nva1,
|
|
|
|
sizeof(nva1)/sizeof(nghttp2_nv));
|
|
|
|
CU_ASSERT(blocklen > 0);
|
|
|
|
nghttp2_hd_end_headers(&deflater);
|
|
|
|
|
|
|
|
CU_ASSERT(2 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, blocklen));
|
|
|
|
|
|
|
|
assert_nv_equal(nva1, resnva, 2);
|
|
|
|
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
|
|
|
/* Encode 3 same headers. This time, cookie:alpha is in the
|
|
|
|
reference set, so the encoder emits indexed repr 6 times */
|
2013-09-08 16:16:25 +02:00
|
|
|
blocklen = nghttp2_hd_deflate_hd(&deflater, &buf, &buflen, 0, nva2,
|
2013-08-23 16:38:28 +02:00
|
|
|
sizeof(nva2)/sizeof(nghttp2_nv));
|
|
|
|
CU_ASSERT(blocklen == 6);
|
|
|
|
nghttp2_hd_end_headers(&deflater);
|
|
|
|
|
|
|
|
CU_ASSERT(3 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, blocklen));
|
|
|
|
|
|
|
|
assert_nv_equal(nva2, resnva, 3);
|
|
|
|
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
|
|
|
/* Cleanup */
|
|
|
|
free(buf);
|
|
|
|
nghttp2_hd_inflate_free(&inflater);
|
|
|
|
nghttp2_hd_deflate_free(&deflater);
|
|
|
|
}
|
|
|
|
|
2013-09-06 14:53:28 +02:00
|
|
|
void test_nghttp2_hd_deflate_common_header_eviction(void)
|
|
|
|
{
|
|
|
|
nghttp2_hd_context deflater, inflater;
|
|
|
|
nghttp2_nv nva[] = {MAKE_NV(":scheme", "http"),
|
|
|
|
MAKE_NV("", "")};
|
|
|
|
uint8_t *buf = NULL;
|
|
|
|
size_t buflen = 0;
|
|
|
|
ssize_t blocklen;
|
|
|
|
nghttp2_nv *resnva;
|
2013-10-24 14:52:02 +02:00
|
|
|
/* Default header table capacity is 4096. Adding 2 byte header name
|
|
|
|
and 4060 byte value, which is 4094 bytes including overhead, to
|
|
|
|
the table evicts first entry. */
|
|
|
|
uint8_t value[4060];
|
2013-09-06 14:53:28 +02:00
|
|
|
|
|
|
|
memset(value, '0', sizeof(value));
|
2013-10-24 14:52:02 +02:00
|
|
|
nva[1].name = (uint8_t*)"hd";
|
2013-09-06 14:53:28 +02:00
|
|
|
nva[1].namelen = strlen((const char*)nva[1].name);
|
|
|
|
nva[1].value = value;
|
|
|
|
nva[1].valuelen = sizeof(value);
|
|
|
|
|
2013-10-20 17:44:39 +02:00
|
|
|
nghttp2_hd_deflate_init(&deflater, NGHTTP2_HD_SIDE_REQUEST);
|
|
|
|
nghttp2_hd_inflate_init(&inflater, NGHTTP2_HD_SIDE_REQUEST);
|
2013-09-06 14:53:28 +02:00
|
|
|
|
2013-10-24 14:52:02 +02:00
|
|
|
/* First emit ":scheme: http" to put it in the reference set (index
|
|
|
|
= 0). */
|
|
|
|
blocklen = nghttp2_hd_deflate_hd(&deflater, &buf, &buflen, 0, nva, 1);
|
|
|
|
CU_ASSERT(blocklen > 0);
|
|
|
|
nghttp2_hd_end_headers(&deflater);
|
|
|
|
|
|
|
|
CU_ASSERT(1 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, blocklen));
|
|
|
|
nghttp2_nv_array_sort(nva, 1);
|
|
|
|
assert_nv_equal(nva, resnva, 1);
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
|
|
|
/* Encode with large header */
|
|
|
|
blocklen = nghttp2_hd_deflate_hd(&deflater, &buf, &buflen, 0, nva, 2);
|
2013-09-06 14:53:28 +02:00
|
|
|
CU_ASSERT(blocklen > 0);
|
|
|
|
nghttp2_hd_end_headers(&deflater);
|
|
|
|
|
|
|
|
/* Check common header :scheme: http, which is removed from the
|
|
|
|
header table because of eviction, is still emitted by the
|
|
|
|
inflater */
|
|
|
|
CU_ASSERT(2 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, blocklen));
|
|
|
|
nghttp2_nv_array_sort(nva, 2);
|
|
|
|
assert_nv_equal(nva, resnva, 2);
|
|
|
|
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
2013-10-24 14:52:02 +02:00
|
|
|
CU_ASSERT(1 == deflater.hd_table.len);
|
|
|
|
CU_ASSERT(1 == inflater.hd_table.len);
|
|
|
|
|
2013-09-06 14:53:28 +02:00
|
|
|
free(buf);
|
|
|
|
nghttp2_hd_inflate_free(&inflater);
|
|
|
|
nghttp2_hd_deflate_free(&deflater);
|
|
|
|
}
|
|
|
|
|
2013-07-19 09:50:31 +02:00
|
|
|
void test_nghttp2_hd_inflate_indname_inc(void)
|
|
|
|
{
|
|
|
|
nghttp2_hd_context inflater;
|
|
|
|
uint8_t *buf = NULL;
|
|
|
|
size_t buflen = 0;
|
|
|
|
size_t offset = 0;
|
|
|
|
nghttp2_nv nv = MAKE_NV("user-agent", "nghttp2");
|
|
|
|
nghttp2_nv *resnva;
|
2013-10-20 17:44:39 +02:00
|
|
|
nghttp2_hd_inflate_init(&inflater, NGHTTP2_HD_SIDE_REQUEST);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2013-10-21 16:56:14 +02:00
|
|
|
CU_ASSERT(0 == nghttp2_hd_emit_indname_block(&buf, &buflen, &offset, 55,
|
2013-10-14 16:38:12 +02:00
|
|
|
nv.value, nv.valuelen, 1,
|
2013-10-20 17:44:39 +02:00
|
|
|
NGHTTP2_HD_SIDE_REQUEST));
|
2013-07-19 09:50:31 +02:00
|
|
|
CU_ASSERT(1 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, offset));
|
|
|
|
assert_nv_equal(&nv, resnva, 1);
|
2013-10-12 14:49:01 +02:00
|
|
|
CU_ASSERT(1 == inflater.hd_table.len);
|
|
|
|
assert_nv_equal(&nv,
|
|
|
|
&GET_TABLE_ENT(&inflater, inflater.hd_table.len-1)->nv, 1);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_nv_array_del(resnva);
|
2013-07-19 09:50:31 +02:00
|
|
|
free(buf);
|
|
|
|
nghttp2_hd_inflate_free(&inflater);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_nghttp2_hd_inflate_indname_inc_eviction(void)
|
|
|
|
{
|
|
|
|
nghttp2_hd_context inflater;
|
|
|
|
uint8_t *buf = NULL;
|
|
|
|
size_t buflen = 0;
|
|
|
|
size_t offset = 0;
|
2013-10-12 14:49:01 +02:00
|
|
|
uint8_t value[1024];
|
2013-07-19 09:50:31 +02:00
|
|
|
nghttp2_nv *resnva;
|
2013-10-20 17:44:39 +02:00
|
|
|
nghttp2_hd_inflate_init(&inflater, NGHTTP2_HD_SIDE_REQUEST);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2013-08-22 18:28:01 +02:00
|
|
|
memset(value, '0', sizeof(value));
|
2013-10-21 16:56:14 +02:00
|
|
|
CU_ASSERT(0 == nghttp2_hd_emit_indname_block(&buf, &buflen, &offset, 13,
|
2013-10-14 16:38:12 +02:00
|
|
|
value, sizeof(value), 1,
|
2013-10-20 17:44:39 +02:00
|
|
|
NGHTTP2_HD_SIDE_REQUEST));
|
2013-10-21 16:56:14 +02:00
|
|
|
CU_ASSERT(0 == nghttp2_hd_emit_indname_block(&buf, &buflen, &offset, 14,
|
2013-10-14 16:38:12 +02:00
|
|
|
value, sizeof(value), 1,
|
2013-10-20 17:44:39 +02:00
|
|
|
NGHTTP2_HD_SIDE_REQUEST));
|
2013-10-21 16:56:14 +02:00
|
|
|
CU_ASSERT(0 == nghttp2_hd_emit_indname_block(&buf, &buflen, &offset, 15,
|
2013-10-14 16:38:12 +02:00
|
|
|
value, sizeof(value), 1,
|
2013-10-20 17:44:39 +02:00
|
|
|
NGHTTP2_HD_SIDE_REQUEST));
|
2013-10-21 16:56:14 +02:00
|
|
|
CU_ASSERT(0 == nghttp2_hd_emit_indname_block(&buf, &buflen, &offset, 16,
|
2013-10-14 16:38:12 +02:00
|
|
|
value, sizeof(value), 1,
|
2013-10-20 17:44:39 +02:00
|
|
|
NGHTTP2_HD_SIDE_REQUEST));
|
2013-10-12 14:49:01 +02:00
|
|
|
|
|
|
|
CU_ASSERT(4 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, offset));
|
2013-10-15 17:09:00 +02:00
|
|
|
CU_ASSERT(14 == resnva[0].namelen);
|
|
|
|
CU_ASSERT(0 == memcmp("accept-charset", resnva[0].name, resnva[0].namelen));
|
2013-07-19 09:50:31 +02:00
|
|
|
CU_ASSERT(sizeof(value) == resnva[0].valuelen);
|
|
|
|
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_nv_array_del(resnva);
|
2013-07-19 09:50:31 +02:00
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
2013-10-12 14:49:01 +02:00
|
|
|
CU_ASSERT(3 == inflater.hd_table.len);
|
|
|
|
CU_ASSERT(GET_TABLE_ENT(&inflater, 0)->flags & NGHTTP2_HD_FLAG_REFSET);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
|
|
|
free(buf);
|
|
|
|
nghttp2_hd_inflate_free(&inflater);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_nghttp2_hd_inflate_newname_inc(void)
|
|
|
|
{
|
|
|
|
nghttp2_hd_context inflater;
|
|
|
|
uint8_t *buf = NULL;
|
|
|
|
size_t buflen = 0;
|
|
|
|
size_t offset = 0;
|
|
|
|
nghttp2_nv nv = MAKE_NV("x-rel", "nghttp2");
|
|
|
|
nghttp2_nv *resnva;
|
2013-10-20 17:44:39 +02:00
|
|
|
nghttp2_hd_inflate_init(&inflater, NGHTTP2_HD_SIDE_REQUEST);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2013-07-19 18:24:34 +02:00
|
|
|
CU_ASSERT(0 == nghttp2_hd_emit_newname_block(&buf, &buflen, &offset,
|
2013-10-14 16:38:12 +02:00
|
|
|
&nv, 1,
|
2013-10-20 17:44:39 +02:00
|
|
|
NGHTTP2_HD_SIDE_REQUEST));
|
2013-07-19 09:50:31 +02:00
|
|
|
CU_ASSERT(1 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, offset));
|
|
|
|
assert_nv_equal(&nv, resnva, 1);
|
2013-10-12 14:49:01 +02:00
|
|
|
CU_ASSERT(1 == inflater.hd_table.len);
|
|
|
|
assert_nv_equal(&nv,
|
|
|
|
&GET_TABLE_ENT(&inflater, inflater.hd_table.len-1)->nv, 1);
|
2013-07-19 09:50:31 +02:00
|
|
|
|
2013-07-19 17:08:14 +02:00
|
|
|
nghttp2_nv_array_del(resnva);
|
2013-07-19 09:50:31 +02:00
|
|
|
free(buf);
|
|
|
|
nghttp2_hd_inflate_free(&inflater);
|
|
|
|
}
|
2013-07-27 11:59:30 +02:00
|
|
|
|
2013-08-28 16:16:23 +02:00
|
|
|
void test_nghttp2_hd_inflate_clearall_inc(void)
|
|
|
|
{
|
|
|
|
nghttp2_hd_context inflater;
|
|
|
|
uint8_t *buf = NULL;
|
|
|
|
size_t buflen = 0;
|
|
|
|
size_t offset = 0;
|
|
|
|
nghttp2_nv nv;
|
|
|
|
nghttp2_nv *resnva;
|
|
|
|
uint8_t value[4060];
|
|
|
|
|
|
|
|
/* Total 4097 bytes space required to hold this entry */
|
|
|
|
nv.name = (uint8_t*)"alpha";
|
|
|
|
nv.namelen = strlen((char*)nv.name);
|
|
|
|
memset(value, '0', sizeof(value));
|
|
|
|
nv.value = value;
|
|
|
|
nv.valuelen = sizeof(value);
|
|
|
|
|
2013-10-20 17:44:39 +02:00
|
|
|
nghttp2_hd_inflate_init(&inflater, NGHTTP2_HD_SIDE_REQUEST);
|
2013-08-28 16:16:23 +02:00
|
|
|
|
|
|
|
CU_ASSERT(0 == nghttp2_hd_emit_newname_block(&buf, &buflen, &offset,
|
2013-10-14 16:38:12 +02:00
|
|
|
&nv, 1,
|
2013-10-20 17:44:39 +02:00
|
|
|
NGHTTP2_HD_SIDE_REQUEST));
|
2013-08-28 16:16:23 +02:00
|
|
|
CU_ASSERT(1 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, offset));
|
|
|
|
assert_nv_equal(&nv, resnva, 1);
|
2013-10-12 14:49:01 +02:00
|
|
|
CU_ASSERT(0 == inflater.hd_table.len);
|
2013-08-28 16:16:23 +02:00
|
|
|
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
|
|
|
/* Do it again */
|
|
|
|
CU_ASSERT(1 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, offset));
|
|
|
|
assert_nv_equal(&nv, resnva, 1);
|
2013-10-12 14:49:01 +02:00
|
|
|
CU_ASSERT(0 == inflater.hd_table.len);
|
2013-08-28 16:16:23 +02:00
|
|
|
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
nghttp2_hd_end_headers(&inflater);
|
|
|
|
|
|
|
|
/* This time, 4096 bytes space required, which is just fits in the
|
|
|
|
header table */
|
|
|
|
nv.valuelen = sizeof(value) - 1;
|
|
|
|
|
|
|
|
offset = 0;
|
|
|
|
CU_ASSERT(0 == nghttp2_hd_emit_newname_block(&buf, &buflen, &offset,
|
2013-10-14 16:38:12 +02:00
|
|
|
&nv, 1,
|
2013-10-20 17:44:39 +02:00
|
|
|
NGHTTP2_HD_SIDE_REQUEST));
|
2013-08-28 16:16:23 +02:00
|
|
|
CU_ASSERT(1 == nghttp2_hd_inflate_hd(&inflater, &resnva, buf, offset));
|
|
|
|
assert_nv_equal(&nv, resnva, 1);
|
2013-10-12 14:49:01 +02:00
|
|
|
CU_ASSERT(1 == inflater.hd_table.len);
|
2013-08-28 16:16:23 +02:00
|
|
|
|
|
|
|
nghttp2_nv_array_del(resnva);
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
nghttp2_hd_inflate_free(&inflater);
|
|
|
|
}
|
|
|
|
|
2013-07-27 11:59:30 +02:00
|
|
|
static void check_deflate_inflate(nghttp2_hd_context *deflater,
|
|
|
|
nghttp2_hd_context *inflater,
|
|
|
|
nghttp2_nv *nva, size_t nvlen)
|
|
|
|
{
|
|
|
|
uint8_t *buf = NULL;
|
|
|
|
size_t buflen = 0;
|
|
|
|
ssize_t blocklen;
|
|
|
|
nghttp2_nv *resnva;
|
|
|
|
ssize_t resnvlen;
|
|
|
|
|
|
|
|
blocklen = nghttp2_hd_deflate_hd(deflater, &buf, &buflen, 0, nva, nvlen);
|
|
|
|
assert(blocklen >= 0);
|
|
|
|
nghttp2_hd_end_headers(deflater);
|
|
|
|
resnvlen = nghttp2_hd_inflate_hd(inflater, &resnva, buf, blocklen);
|
|
|
|
CU_ASSERT(resnvlen == (ssize_t)nvlen);
|
|
|
|
assert_nv_equal(nva, resnva, nvlen);
|
|
|
|
nghttp2_hd_end_headers(inflater);
|
2013-07-28 12:08:49 +02:00
|
|
|
|
|
|
|
free(resnva);
|
|
|
|
free(buf);
|
2013-07-27 11:59:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void test_nghttp2_hd_deflate_inflate(void)
|
|
|
|
{
|
|
|
|
nghttp2_hd_context inflater, deflater;
|
|
|
|
nghttp2_nv nv1[] = {
|
|
|
|
MAKE_NV(":status", "200 OK"),
|
|
|
|
MAKE_NV("access-control-allow-origin", "*"),
|
|
|
|
MAKE_NV("cache-control", "private, max-age=0, must-revalidate"),
|
|
|
|
MAKE_NV("content-length", "76073"),
|
|
|
|
MAKE_NV("content-type", "text/html"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("expires", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("server", "Apache"),
|
|
|
|
MAKE_NV("vary", "foobar"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "MISS from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-action", "MISS"),
|
|
|
|
MAKE_NV("x-cache-age", "0"),
|
|
|
|
MAKE_NV("x-cache-lookup", "MISS from alphabravo:3128"),
|
|
|
|
MAKE_NV("x-lb-nocache", "true"),
|
|
|
|
};
|
|
|
|
nghttp2_nv nv2[] = {
|
|
|
|
MAKE_NV(":status", "304 Not Modified"),
|
|
|
|
MAKE_NV("age", "0"),
|
|
|
|
MAKE_NV("cache-control", "max-age=56682045"),
|
|
|
|
MAKE_NV("content-type", "text/css"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("expires", "Thu, 14 May 2015 07:22:57 GMT"),
|
|
|
|
MAKE_NV("last-modified", "Tue, 14 May 2013 07:22:15 GMT"),
|
|
|
|
MAKE_NV("vary", "Accept-Encoding"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "HIT from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-lookup", "HIT from alphabravo:3128")
|
|
|
|
};
|
|
|
|
nghttp2_nv nv3[] = {
|
|
|
|
MAKE_NV(":status", "304 Not Modified"),
|
|
|
|
MAKE_NV("age", "0"),
|
|
|
|
MAKE_NV("cache-control", "max-age=56682072"),
|
|
|
|
MAKE_NV("content-type", "text/css"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("expires", "Thu, 14 May 2015 07:23:24 GMT"),
|
|
|
|
MAKE_NV("last-modified", "Tue, 14 May 2013 07:22:13 GMT"),
|
|
|
|
MAKE_NV("vary", "Accept-Encoding"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "HIT from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-lookup", "HIT from alphabravo:3128"),
|
|
|
|
};
|
|
|
|
nghttp2_nv nv4[] = {
|
|
|
|
MAKE_NV(":status", "304 Not Modified"),
|
|
|
|
MAKE_NV("age", "0"),
|
|
|
|
MAKE_NV("cache-control", "max-age=56682022"),
|
|
|
|
MAKE_NV("content-type", "text/css"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("expires", "Thu, 14 May 2015 07:22:34 GMT"),
|
|
|
|
MAKE_NV("last-modified", "Tue, 14 May 2013 07:22:14 GMT"),
|
|
|
|
MAKE_NV("vary", "Accept-Encoding"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "HIT from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-lookup", "HIT from alphabravo:3128"),
|
|
|
|
};
|
|
|
|
nghttp2_nv nv5[] = {
|
|
|
|
MAKE_NV(":status", "304 Not Modified"),
|
|
|
|
MAKE_NV("age", "0"),
|
|
|
|
MAKE_NV("cache-control", "max-age=4461139"),
|
|
|
|
MAKE_NV("content-type", "application/x-javascript"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("expires", "Mon, 16 Sep 2013 21:34:31 GMT"),
|
|
|
|
MAKE_NV("last-modified", "Thu, 05 May 2011 09:15:59 GMT"),
|
|
|
|
MAKE_NV("vary", "Accept-Encoding"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "HIT from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-lookup", "HIT from alphabravo:3128"),
|
|
|
|
};
|
|
|
|
nghttp2_nv nv6[] = {
|
|
|
|
MAKE_NV(":status", "304 Not Modified"),
|
|
|
|
MAKE_NV("age", "0"),
|
|
|
|
MAKE_NV("cache-control", "max-age=18645951"),
|
|
|
|
MAKE_NV("content-type", "application/x-javascript"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("expires", "Fri, 28 Feb 2014 01:48:03 GMT"),
|
|
|
|
MAKE_NV("last-modified", "Tue, 12 Jul 2011 16:02:59 GMT"),
|
|
|
|
MAKE_NV("vary", "Accept-Encoding"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "HIT from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-lookup", "HIT from alphabravo:3128"),
|
|
|
|
};
|
|
|
|
nghttp2_nv nv7[] = {
|
|
|
|
MAKE_NV(":status", "304 Not Modified"),
|
|
|
|
MAKE_NV("age", "0"),
|
|
|
|
MAKE_NV("cache-control", "max-age=31536000"),
|
|
|
|
MAKE_NV("content-type", "application/javascript"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("etag", "\"6807-4dc5b54e0dcc0\""),
|
|
|
|
MAKE_NV("expires", "Wed, 21 May 2014 08:32:17 GMT"),
|
|
|
|
MAKE_NV("last-modified", "Fri, 10 May 2013 11:18:51 GMT"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "HIT from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-lookup", "HIT from alphabravo:3128"),
|
|
|
|
};
|
|
|
|
nghttp2_nv nv8[] = {
|
|
|
|
MAKE_NV(":status", "304 Not Modified"),
|
|
|
|
MAKE_NV("age", "0"),
|
|
|
|
MAKE_NV("cache-control", "max-age=31536000"),
|
|
|
|
MAKE_NV("content-type", "application/javascript"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("etag", "\"41c6-4de7d28585b00\""),
|
|
|
|
MAKE_NV("expires", "Thu, 12 Jun 2014 10:00:58 GMT"),
|
|
|
|
MAKE_NV("last-modified", "Thu, 06 Jun 2013 14:30:36 GMT"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "HIT from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-lookup", "HIT from alphabravo:3128"),
|
|
|
|
};
|
|
|
|
nghttp2_nv nv9[] = {
|
|
|
|
MAKE_NV(":status", "304 Not Modified"),
|
|
|
|
MAKE_NV("age", "0"),
|
|
|
|
MAKE_NV("cache-control", "max-age=31536000"),
|
|
|
|
MAKE_NV("content-type", "application/javascript"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("etag", "\"19d6e-4dc5b35a541c0\""),
|
|
|
|
MAKE_NV("expires", "Wed, 21 May 2014 08:32:18 GMT"),
|
|
|
|
MAKE_NV("last-modified", "Fri, 10 May 2013 11:10:07 GMT"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "HIT from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-lookup", "HIT from alphabravo:3128"),
|
|
|
|
};
|
|
|
|
nghttp2_nv nv10[] = {
|
|
|
|
MAKE_NV(":status", "304 Not Modified"),
|
|
|
|
MAKE_NV("age", "0"),
|
|
|
|
MAKE_NV("cache-control", "max-age=56682045"),
|
|
|
|
MAKE_NV("content-type", "text/css"),
|
|
|
|
MAKE_NV("date", "Sat, 27 Jul 2013 06:22:12 GMT"),
|
|
|
|
MAKE_NV("expires", "Thu, 14 May 2015 07:22:57 GMT"),
|
|
|
|
MAKE_NV("last-modified", "Tue, 14 May 2013 07:21:53 GMT"),
|
|
|
|
MAKE_NV("vary", "Accept-Encoding"),
|
|
|
|
MAKE_NV("via", "1.1 alphabravo (squid/3.x.x), 1.1 nghttpx"),
|
|
|
|
MAKE_NV("x-cache", "HIT from alphabravo"),
|
|
|
|
MAKE_NV("x-cache-lookup", "HIT from alphabravo:3128"),
|
|
|
|
};
|
|
|
|
|
2013-10-20 17:44:39 +02:00
|
|
|
nghttp2_hd_deflate_init(&deflater, NGHTTP2_HD_SIDE_REQUEST);
|
|
|
|
nghttp2_hd_inflate_init(&inflater, NGHTTP2_HD_SIDE_REQUEST);
|
2013-07-27 11:59:30 +02:00
|
|
|
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv1, ARRLEN(nv1));
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv2, ARRLEN(nv2));
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv3, ARRLEN(nv3));
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv4, ARRLEN(nv4));
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv5, ARRLEN(nv5));
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv6, ARRLEN(nv6));
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv7, ARRLEN(nv7));
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv8, ARRLEN(nv8));
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv9, ARRLEN(nv9));
|
|
|
|
check_deflate_inflate(&deflater, &inflater, nv10, ARRLEN(nv10));
|
2013-07-28 12:08:49 +02:00
|
|
|
|
|
|
|
nghttp2_hd_inflate_free(&inflater);
|
|
|
|
nghttp2_hd_deflate_free(&deflater);
|
2013-07-27 11:59:30 +02:00
|
|
|
}
|