2013-08-27 17:09:46 +02:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2013-08-27 17:09:46 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-08-27 19:47:22 +02:00
|
|
|
#include "http2_test.h"
|
2013-08-27 17:09:46 +02:00
|
|
|
|
2013-12-05 13:54:36 +01:00
|
|
|
#include <cassert>
|
2013-11-13 15:56:02 +01:00
|
|
|
#include <cstring>
|
2013-08-27 17:09:46 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <CUnit/CUnit.h>
|
|
|
|
|
2013-12-21 09:49:31 +01:00
|
|
|
#include "http-parser/http_parser.h"
|
|
|
|
|
2013-08-27 19:47:22 +02:00
|
|
|
#include "http2.h"
|
2013-08-27 17:09:46 +02:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
using namespace nghttp2;
|
|
|
|
|
2013-09-08 16:16:08 +02:00
|
|
|
#define MAKE_NV(K, V) {(uint8_t*)K, (uint8_t*)V, \
|
2013-12-05 13:54:36 +01:00
|
|
|
(uint16_t)(sizeof(K)-1), (uint16_t)(sizeof(V)-1)}
|
2013-08-27 17:09:46 +02:00
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
2013-11-13 15:56:02 +01:00
|
|
|
namespace {
|
2013-12-05 13:54:36 +01:00
|
|
|
void check_nv(const std::pair<std::string, std::string>& a,
|
|
|
|
const nghttp2_nv *b)
|
2013-11-13 15:56:02 +01:00
|
|
|
{
|
2013-12-05 13:54:36 +01:00
|
|
|
CU_ASSERT(a.first.size() == b->namelen);
|
|
|
|
CU_ASSERT(a.second.size() == b->valuelen);
|
|
|
|
CU_ASSERT(memcmp(a.first.c_str(), b->name, b->namelen) == 0);
|
|
|
|
CU_ASSERT(memcmp(a.second.c_str(), b->value, b->valuelen) == 0);
|
2013-11-13 15:56:02 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
void test_http2_sort_nva(void)
|
|
|
|
{
|
2013-12-05 13:54:36 +01:00
|
|
|
// Last 0 is stripped in MAKE_NV
|
|
|
|
const uint8_t concatval[] = { '4', 0x00, 0x00, '6', 0x00, '5', 0x00 };
|
2013-11-13 15:56:02 +01:00
|
|
|
nghttp2_nv nv[] = {MAKE_NV("alpha", "1"),
|
2013-12-05 13:54:36 +01:00
|
|
|
MAKE_NV("charlie", "3"),
|
|
|
|
MAKE_NV("bravo", "2"),
|
|
|
|
MAKE_NV("delta", concatval)};
|
2013-11-13 15:56:02 +01:00
|
|
|
auto nvlen = sizeof(nv)/sizeof(nv[0]);
|
|
|
|
auto nva = http2::sort_nva(nv, nvlen);
|
2013-12-05 13:54:36 +01:00
|
|
|
CU_ASSERT(6 == nva.size());
|
|
|
|
check_nv({"alpha", "1"}, &nva[0]);
|
|
|
|
check_nv({"bravo", "2"}, &nva[1]);
|
|
|
|
check_nv({"charlie", "3"}, &nva[2]);
|
|
|
|
check_nv({"delta", "4"}, &nva[3]);
|
|
|
|
check_nv({"delta", "6"}, &nva[4]);
|
|
|
|
check_nv({"delta", "5"}, &nva[5]);
|
2013-11-13 15:56:02 +01:00
|
|
|
}
|
|
|
|
|
2014-01-16 15:41:13 +01:00
|
|
|
void test_http2_split_add_header(void)
|
|
|
|
{
|
|
|
|
const uint8_t concatval[] = { '4', 0x00, 0x00, '6', 0x00, '5', '9', 0x00 };
|
|
|
|
auto nva = Headers();
|
|
|
|
http2::split_add_header(nva, (const uint8_t*)"delta", 5,
|
|
|
|
concatval, sizeof(concatval));
|
|
|
|
CU_ASSERT(Headers::value_type("delta", "4") == nva[0]);
|
|
|
|
CU_ASSERT(Headers::value_type("delta", "6") == nva[1]);
|
|
|
|
CU_ASSERT(Headers::value_type("delta", "59") == nva[2]);
|
|
|
|
|
|
|
|
nva.clear();
|
|
|
|
|
|
|
|
http2::split_add_header(nva, (const uint8_t*)"alpha", 5,
|
|
|
|
(const uint8_t*)"123", 3);
|
|
|
|
CU_ASSERT(Headers::value_type("alpha", "123") == nva[0]);
|
|
|
|
|
|
|
|
nva.clear();
|
|
|
|
|
|
|
|
http2::split_add_header(nva, (const uint8_t*)"alpha", 5,
|
|
|
|
(const uint8_t*)"", 0);
|
|
|
|
CU_ASSERT(Headers::value_type("alpha", "") == nva[0]);
|
|
|
|
}
|
|
|
|
|
2013-08-27 19:47:22 +02:00
|
|
|
void test_http2_check_http2_headers(void)
|
2013-08-27 17:09:46 +02:00
|
|
|
{
|
2014-01-16 15:41:13 +01:00
|
|
|
auto nva1 = Headers{
|
|
|
|
{ "alpha", "1" },
|
|
|
|
{ "bravo", "2" },
|
|
|
|
{ "upgrade", "http2" }
|
|
|
|
};
|
|
|
|
CU_ASSERT(!http2::check_http2_headers(nva1));
|
|
|
|
|
|
|
|
auto nva2 = Headers{
|
|
|
|
{ "connection", "1" },
|
|
|
|
{ "delta", "2" },
|
|
|
|
{ "echo", "3" }
|
|
|
|
};
|
|
|
|
CU_ASSERT(!http2::check_http2_headers(nva2));
|
|
|
|
|
|
|
|
auto nva3 = Headers{
|
|
|
|
{ "alpha", "1" },
|
|
|
|
{ "bravo", "2" },
|
|
|
|
{ "te2", "3" }
|
|
|
|
};
|
|
|
|
CU_ASSERT(http2::check_http2_headers(nva3));
|
2013-08-27 17:09:46 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 19:47:22 +02:00
|
|
|
void test_http2_get_unique_header(void)
|
2013-08-27 17:09:46 +02:00
|
|
|
{
|
2014-01-16 15:41:13 +01:00
|
|
|
auto nva = Headers{
|
|
|
|
{ "alpha", "1" },
|
|
|
|
{ "bravo", "2" },
|
|
|
|
{ "bravo", "3" },
|
|
|
|
{ "charlie", "4" },
|
|
|
|
{ "delta", "5" },
|
|
|
|
{ "echo", "6" }
|
|
|
|
};
|
|
|
|
const Headers::value_type *rv;
|
2013-11-13 15:56:02 +01:00
|
|
|
rv = http2::get_unique_header(nva, "delta");
|
2013-08-27 17:09:46 +02:00
|
|
|
CU_ASSERT(rv != nullptr);
|
2014-01-16 15:41:13 +01:00
|
|
|
CU_ASSERT("delta" == rv->first);
|
2013-08-27 17:09:46 +02:00
|
|
|
|
2013-11-13 15:56:02 +01:00
|
|
|
rv = http2::get_unique_header(nva, "bravo");
|
2013-08-27 17:09:46 +02:00
|
|
|
CU_ASSERT(rv == nullptr);
|
|
|
|
|
2013-11-13 15:56:02 +01:00
|
|
|
rv = http2::get_unique_header(nva, "foxtrot");
|
2013-08-27 17:09:46 +02:00
|
|
|
CU_ASSERT(rv == nullptr);
|
|
|
|
}
|
|
|
|
|
2013-08-27 19:47:22 +02:00
|
|
|
void test_http2_get_header(void)
|
2013-08-27 17:09:46 +02:00
|
|
|
{
|
2014-01-16 15:41:13 +01:00
|
|
|
auto nva = Headers{
|
|
|
|
{ "alpha", "1" },
|
|
|
|
{ "bravo", "2" },
|
|
|
|
{ "bravo", "3" },
|
|
|
|
{ "charlie", "4" },
|
|
|
|
{ "delta", "5" },
|
|
|
|
{ "echo", "6" }
|
|
|
|
};
|
|
|
|
const Headers::value_type *rv;
|
2013-11-13 15:56:02 +01:00
|
|
|
rv = http2::get_header(nva, "delta");
|
2013-08-27 17:09:46 +02:00
|
|
|
CU_ASSERT(rv != nullptr);
|
2014-01-16 15:41:13 +01:00
|
|
|
CU_ASSERT("delta" == rv->first);
|
2013-08-27 17:09:46 +02:00
|
|
|
|
2013-11-13 15:56:02 +01:00
|
|
|
rv = http2::get_header(nva, "bravo");
|
2013-08-27 17:09:46 +02:00
|
|
|
CU_ASSERT(rv != nullptr);
|
2014-01-16 15:41:13 +01:00
|
|
|
CU_ASSERT("bravo" == rv->first);
|
2013-08-27 17:09:46 +02:00
|
|
|
|
2013-11-13 15:56:02 +01:00
|
|
|
rv = http2::get_header(nva, "foxtrot");
|
2013-08-27 17:09:46 +02:00
|
|
|
CU_ASSERT(rv == nullptr);
|
|
|
|
}
|
|
|
|
|
2013-08-27 19:47:22 +02:00
|
|
|
void test_http2_value_lws(void)
|
2013-08-27 17:09:46 +02:00
|
|
|
{
|
2014-01-16 15:41:13 +01:00
|
|
|
auto nva = Headers{
|
|
|
|
{ "0", "alpha" },
|
|
|
|
{ "1", " alpha" },
|
|
|
|
{ "2", "" },
|
|
|
|
{" 3", " " },
|
|
|
|
{" 4", " a "}
|
|
|
|
};
|
|
|
|
CU_ASSERT(!http2::value_lws(&nva[0]));
|
|
|
|
CU_ASSERT(!http2::value_lws(&nva[1]));
|
|
|
|
CU_ASSERT(http2::value_lws(&nva[2]));
|
|
|
|
CU_ASSERT(http2::value_lws(&nva[3]));
|
|
|
|
CU_ASSERT(!http2::value_lws(&nva[4]));
|
2013-08-27 17:09:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
auto headers = std::vector<std::pair<std::string, std::string>>
|
|
|
|
{{"alpha", "0"},
|
|
|
|
{"bravo", "1"},
|
|
|
|
{"connection", "2"},
|
|
|
|
{"connection", "3"},
|
|
|
|
{"delta", "4"},
|
|
|
|
{"expect", "5"},
|
|
|
|
{"foxtrot", "6"},
|
|
|
|
{"tango", "7"},
|
|
|
|
{"te", "8"},
|
|
|
|
{"te", "9"},
|
|
|
|
{"x-forwarded-proto", "10"},
|
|
|
|
{"x-forwarded-proto", "11"},
|
|
|
|
{"zulu", "12"}};
|
|
|
|
} // namespace
|
|
|
|
|
2013-12-06 16:32:14 +01:00
|
|
|
void test_http2_concat_norm_headers(void)
|
|
|
|
{
|
|
|
|
auto hds = headers;
|
|
|
|
hds.emplace_back("cookie", "foo");
|
|
|
|
hds.emplace_back("cookie", "bar");
|
|
|
|
hds.emplace_back("set-cookie", "baz");
|
|
|
|
hds.emplace_back("set-cookie", "buzz");
|
|
|
|
auto res = http2::concat_norm_headers(hds);
|
|
|
|
CU_ASSERT(14 == res.size());
|
|
|
|
CU_ASSERT(std::string("2") + '\0' + std::string("3") == res[2].second);
|
|
|
|
}
|
|
|
|
|
2013-11-28 13:36:04 +01:00
|
|
|
void test_http2_copy_norm_headers_to_nva(void)
|
2013-08-27 17:09:46 +02:00
|
|
|
{
|
2013-11-28 13:36:04 +01:00
|
|
|
std::vector<nghttp2_nv> nva;
|
|
|
|
http2::copy_norm_headers_to_nva(nva, headers);
|
|
|
|
CU_ASSERT(6 == nva.size());
|
|
|
|
auto ans = std::vector<int>{0, 1, 4, 6, 7, 12};
|
|
|
|
for(size_t i = 0; i < ans.size(); ++i) {
|
|
|
|
check_nv(headers[ans[i]], &nva[i]);
|
|
|
|
}
|
2013-08-27 17:09:46 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 19:47:22 +02:00
|
|
|
void test_http2_build_http1_headers_from_norm_headers(void)
|
2013-08-27 17:09:46 +02:00
|
|
|
{
|
|
|
|
std::string hdrs;
|
2013-08-27 19:47:22 +02:00
|
|
|
http2::build_http1_headers_from_norm_headers(hdrs, headers);
|
2013-08-27 17:09:46 +02:00
|
|
|
CU_ASSERT(hdrs ==
|
|
|
|
"Alpha: 0\r\n"
|
|
|
|
"Bravo: 1\r\n"
|
|
|
|
"Delta: 4\r\n"
|
|
|
|
"Foxtrot: 6\r\n"
|
|
|
|
"Tango: 7\r\n"
|
|
|
|
"Te: 8\r\n"
|
|
|
|
"Te: 9\r\n"
|
|
|
|
"Zulu: 12\r\n");
|
2013-09-11 16:24:32 +02:00
|
|
|
|
|
|
|
hdrs.clear();
|
2013-12-25 16:08:42 +01:00
|
|
|
// Both nghttp2 and spdylay do not allow \r and \n in header value
|
|
|
|
// now.
|
|
|
|
|
|
|
|
// auto hd2 = std::vector<std::pair<std::string, std::string>>
|
|
|
|
// {{"alpha", "bravo\r\ncharlie\r\n"}};
|
|
|
|
// http2::build_http1_headers_from_norm_headers(hdrs, hd2);
|
|
|
|
// CU_ASSERT(hdrs == "Alpha: bravo charlie \r\n");
|
2013-09-11 16:24:32 +02:00
|
|
|
}
|
|
|
|
|
2014-01-16 18:16:53 +01:00
|
|
|
void test_http2_lws(void)
|
2013-09-11 16:24:32 +02:00
|
|
|
{
|
2014-01-16 18:16:53 +01:00
|
|
|
CU_ASSERT(!http2::lws("alpha"));
|
|
|
|
CU_ASSERT(http2::lws(" "));
|
|
|
|
CU_ASSERT(http2::lws(""));
|
2013-08-27 17:09:46 +02:00
|
|
|
}
|
|
|
|
|
2013-12-21 09:49:31 +01:00
|
|
|
namespace {
|
|
|
|
void check_rewrite_location_uri(const std::string& new_uri,
|
|
|
|
const std::string& uri,
|
|
|
|
const std::string& req_host,
|
|
|
|
const std::string& upstream_scheme,
|
2013-12-21 10:35:53 +01:00
|
|
|
uint16_t upstream_port)
|
2013-12-21 09:49:31 +01:00
|
|
|
{
|
|
|
|
http_parser_url u;
|
2014-02-27 14:11:31 +01:00
|
|
|
memset(&u, 0, sizeof(u));
|
2013-12-21 09:49:31 +01:00
|
|
|
CU_ASSERT(0 == http_parser_parse_url(uri.c_str(), uri.size(), 0, &u));
|
|
|
|
CU_ASSERT(new_uri ==
|
|
|
|
http2::rewrite_location_uri(uri, u, req_host,
|
2013-12-21 10:35:53 +01:00
|
|
|
upstream_scheme, upstream_port));
|
2013-12-21 09:49:31 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
void test_http2_rewrite_location_uri(void)
|
|
|
|
{
|
|
|
|
check_rewrite_location_uri("https://localhost:3000/alpha?bravo#charlie",
|
|
|
|
"http://localhost:3001/alpha?bravo#charlie",
|
2013-12-21 10:35:53 +01:00
|
|
|
"localhost:3001", "https", 3000);
|
2013-12-21 09:49:31 +01:00
|
|
|
check_rewrite_location_uri("https://localhost/",
|
|
|
|
"http://localhost:3001/",
|
2013-12-21 10:35:53 +01:00
|
|
|
"localhost:3001", "https", 443);
|
2013-12-21 09:49:31 +01:00
|
|
|
check_rewrite_location_uri("http://localhost/",
|
|
|
|
"http://localhost:3001/",
|
2013-12-21 10:35:53 +01:00
|
|
|
"localhost:3001", "http", 80);
|
2013-12-21 09:49:31 +01:00
|
|
|
check_rewrite_location_uri("http://localhost:443/",
|
|
|
|
"http://localhost:3001/",
|
2013-12-21 10:35:53 +01:00
|
|
|
"localhost:3001", "http", 443);
|
2013-12-21 09:49:31 +01:00
|
|
|
check_rewrite_location_uri("https://localhost:80/",
|
|
|
|
"http://localhost:3001/",
|
2013-12-21 10:35:53 +01:00
|
|
|
"localhost:3001", "https", 80);
|
2013-12-21 09:49:31 +01:00
|
|
|
check_rewrite_location_uri("",
|
|
|
|
"http://localhost:3001/",
|
2013-12-21 10:35:53 +01:00
|
|
|
"127.0.0.1", "https", 3000);
|
2013-12-21 09:49:31 +01:00
|
|
|
check_rewrite_location_uri("https://localhost:3000/",
|
|
|
|
"http://localhost:3001/",
|
2013-12-21 10:35:53 +01:00
|
|
|
"localhost", "https", 3000);
|
2013-12-21 09:49:31 +01:00
|
|
|
check_rewrite_location_uri("",
|
|
|
|
"https://localhost:3001/",
|
2013-12-21 10:35:53 +01:00
|
|
|
"localhost", "https", 3000);
|
2013-12-21 09:49:31 +01:00
|
|
|
check_rewrite_location_uri("https://localhost:3000/",
|
|
|
|
"http://localhost/",
|
2013-12-21 10:35:53 +01:00
|
|
|
"localhost", "https", 3000);
|
2013-12-21 09:49:31 +01:00
|
|
|
}
|
|
|
|
|
2013-08-27 17:09:46 +02:00
|
|
|
} // namespace shrpx
|