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.
|
|
|
|
*/
|
|
|
|
#include "shrpx_downstream_test.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <CUnit/CUnit.h>
|
|
|
|
|
|
|
|
#include "shrpx_downstream.h"
|
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
2016-03-10 16:50:27 +01:00
|
|
|
void test_downstream_field_store_append_last_header(void) {
|
2016-10-01 11:18:50 +02:00
|
|
|
BlockAllocator balloc(16, 16);
|
2016-03-10 15:50:04 +01:00
|
|
|
FieldStore fs(balloc, 0);
|
2016-10-01 11:18:50 +02:00
|
|
|
fs.alloc_add_header_name(StringRef::from_lit("alpha"));
|
2016-03-10 16:50:27 +01:00
|
|
|
auto bravo = StringRef::from_lit("BRAVO");
|
|
|
|
fs.append_last_header_key(bravo.c_str(), bravo.size());
|
2016-10-01 11:18:50 +02:00
|
|
|
// Add more characters so that relloc occurs
|
|
|
|
auto golf = StringRef::from_lit("golF0123456789");
|
|
|
|
fs.append_last_header_key(golf.c_str(), golf.size());
|
|
|
|
|
2016-03-10 16:50:27 +01:00
|
|
|
auto charlie = StringRef::from_lit("Charlie");
|
|
|
|
fs.append_last_header_value(charlie.c_str(), charlie.size());
|
|
|
|
auto delta = StringRef::from_lit("deltA");
|
|
|
|
fs.append_last_header_value(delta.c_str(), delta.size());
|
2016-10-01 11:18:50 +02:00
|
|
|
// Add more characters so that relloc occurs
|
|
|
|
auto echo = StringRef::from_lit("echo0123456789");
|
|
|
|
fs.append_last_header_value(echo.c_str(), echo.size());
|
|
|
|
|
2016-03-10 16:50:27 +01:00
|
|
|
fs.add_header_token(StringRef::from_lit("echo"),
|
|
|
|
StringRef::from_lit("foxtrot"), false, -1);
|
2013-08-27 17:09:46 +02:00
|
|
|
|
2016-10-01 11:18:50 +02:00
|
|
|
auto ans =
|
|
|
|
HeaderRefs{{StringRef::from_lit("alphabravogolf0123456789"),
|
|
|
|
StringRef::from_lit("CharliedeltAecho0123456789")},
|
|
|
|
{StringRef::from_lit("echo"), StringRef::from_lit("foxtrot")}};
|
2016-01-13 16:37:45 +01:00
|
|
|
CU_ASSERT(ans == fs.headers());
|
2013-08-27 17:09:46 +02:00
|
|
|
}
|
|
|
|
|
2016-01-13 16:37:45 +01:00
|
|
|
void test_downstream_field_store_header(void) {
|
2016-10-01 11:18:50 +02:00
|
|
|
BlockAllocator balloc(16, 16);
|
2016-03-10 15:50:04 +01:00
|
|
|
FieldStore fs(balloc, 0);
|
2016-02-20 13:41:23 +01:00
|
|
|
fs.add_header_token(StringRef::from_lit("alpha"), StringRef::from_lit("0"),
|
|
|
|
false, -1);
|
|
|
|
fs.add_header_token(StringRef::from_lit(":authority"),
|
|
|
|
StringRef::from_lit("1"), false, http2::HD__AUTHORITY);
|
|
|
|
fs.add_header_token(StringRef::from_lit("content-length"),
|
|
|
|
StringRef::from_lit("2"), false,
|
|
|
|
http2::HD_CONTENT_LENGTH);
|
2015-01-04 15:22:39 +01:00
|
|
|
|
|
|
|
// By token
|
2016-03-10 15:50:04 +01:00
|
|
|
CU_ASSERT(HeaderRef(StringRef{":authority"}, StringRef{"1"}) ==
|
|
|
|
*fs.header(http2::HD__AUTHORITY));
|
2016-01-13 16:37:45 +01:00
|
|
|
CU_ASSERT(nullptr == fs.header(http2::HD__METHOD));
|
2015-01-04 15:22:39 +01:00
|
|
|
|
|
|
|
// By name
|
2016-03-10 15:50:04 +01:00
|
|
|
CU_ASSERT(HeaderRef(StringRef{"alpha"}, StringRef{"0"}) ==
|
|
|
|
*fs.header(StringRef::from_lit("alpha")));
|
2016-02-28 15:47:23 +01:00
|
|
|
CU_ASSERT(nullptr == fs.header(StringRef::from_lit("bravo")));
|
2013-08-27 17:09:46 +02:00
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void test_downstream_crumble_request_cookie(void) {
|
2016-01-14 16:09:53 +01:00
|
|
|
Downstream d(nullptr, nullptr, 0);
|
2016-01-13 14:45:52 +01:00
|
|
|
auto &req = d.request();
|
2016-02-20 13:41:23 +01:00
|
|
|
req.fs.add_header_token(StringRef::from_lit(":method"),
|
|
|
|
StringRef::from_lit("get"), false, -1);
|
|
|
|
req.fs.add_header_token(StringRef::from_lit(":path"),
|
|
|
|
StringRef::from_lit("/"), false, -1);
|
|
|
|
req.fs.add_header_token(StringRef::from_lit("cookie"),
|
|
|
|
StringRef::from_lit("alpha; bravo; ; ;; charlie;;"),
|
|
|
|
true, http2::HD_COOKIE);
|
|
|
|
req.fs.add_header_token(StringRef::from_lit("cookie"),
|
|
|
|
StringRef::from_lit(";delta"), false,
|
|
|
|
http2::HD_COOKIE);
|
|
|
|
req.fs.add_header_token(StringRef::from_lit("cookie"),
|
|
|
|
StringRef::from_lit("echo"), false, http2::HD_COOKIE);
|
2015-11-05 14:48:54 +01:00
|
|
|
|
|
|
|
std::vector<nghttp2_nv> nva;
|
|
|
|
d.crumble_request_cookie(nva);
|
|
|
|
|
|
|
|
auto num_cookies = d.count_crumble_request_cookie();
|
|
|
|
|
|
|
|
CU_ASSERT(5 == nva.size());
|
|
|
|
CU_ASSERT(5 == num_cookies);
|
|
|
|
|
2016-03-10 15:50:04 +01:00
|
|
|
HeaderRefs cookies;
|
2015-11-05 14:48:54 +01:00
|
|
|
std::transform(std::begin(nva), std::end(nva), std::back_inserter(cookies),
|
|
|
|
[](const nghttp2_nv &nv) {
|
2016-03-10 15:50:04 +01:00
|
|
|
return HeaderRef(StringRef{nv.name, nv.namelen},
|
|
|
|
StringRef{nv.value, nv.valuelen},
|
|
|
|
nv.flags & NGHTTP2_NV_FLAG_NO_INDEX);
|
2015-11-12 16:53:29 +01:00
|
|
|
});
|
2015-01-04 15:22:39 +01:00
|
|
|
|
2016-03-10 15:50:04 +01:00
|
|
|
HeaderRefs ans = {
|
|
|
|
{StringRef::from_lit("cookie"), StringRef::from_lit("alpha")},
|
|
|
|
{StringRef::from_lit("cookie"), StringRef::from_lit("bravo")},
|
|
|
|
{StringRef::from_lit("cookie"), StringRef::from_lit("charlie")},
|
|
|
|
{StringRef::from_lit("cookie"), StringRef::from_lit("delta")},
|
|
|
|
{StringRef::from_lit("cookie"), StringRef::from_lit("echo")}};
|
2015-11-05 14:48:54 +01:00
|
|
|
|
2015-01-04 15:22:39 +01:00
|
|
|
CU_ASSERT(ans == cookies);
|
|
|
|
CU_ASSERT(cookies[0].no_index);
|
|
|
|
CU_ASSERT(cookies[1].no_index);
|
|
|
|
CU_ASSERT(cookies[2].no_index);
|
2013-11-16 13:15:55 +01:00
|
|
|
}
|
|
|
|
|
2014-11-27 15:39:04 +01:00
|
|
|
void test_downstream_assemble_request_cookie(void) {
|
2016-01-14 16:09:53 +01:00
|
|
|
Downstream d(nullptr, nullptr, 0);
|
2016-01-13 14:45:52 +01:00
|
|
|
auto &req = d.request();
|
2016-03-10 15:50:04 +01:00
|
|
|
|
2016-02-20 13:41:23 +01:00
|
|
|
req.fs.add_header_token(StringRef::from_lit(":method"),
|
|
|
|
StringRef::from_lit("get"), false, -1);
|
|
|
|
req.fs.add_header_token(StringRef::from_lit(":path"),
|
|
|
|
StringRef::from_lit("/"), false, -1);
|
|
|
|
req.fs.add_header_token(StringRef::from_lit("cookie"),
|
|
|
|
StringRef::from_lit("alpha"), false,
|
|
|
|
http2::HD_COOKIE);
|
|
|
|
req.fs.add_header_token(StringRef::from_lit("cookie"),
|
|
|
|
StringRef::from_lit("bravo;"), false,
|
|
|
|
http2::HD_COOKIE);
|
|
|
|
req.fs.add_header_token(StringRef::from_lit("cookie"),
|
|
|
|
StringRef::from_lit("charlie; "), false,
|
|
|
|
http2::HD_COOKIE);
|
|
|
|
req.fs.add_header_token(StringRef::from_lit("cookie"),
|
|
|
|
StringRef::from_lit("delta;;"), false,
|
|
|
|
http2::HD_COOKIE);
|
2016-01-13 16:44:10 +01:00
|
|
|
CU_ASSERT("alpha; bravo; charlie; delta" == d.assemble_request_cookie());
|
2013-11-16 13:15:55 +01:00
|
|
|
}
|
|
|
|
|
2015-01-04 15:22:39 +01:00
|
|
|
void test_downstream_rewrite_location_response_header(void) {
|
2016-01-16 04:49:18 +01:00
|
|
|
Downstream d(nullptr, nullptr, 0);
|
|
|
|
auto &req = d.request();
|
|
|
|
auto &resp = d.response();
|
2016-03-10 15:50:04 +01:00
|
|
|
d.set_request_downstream_host(StringRef::from_lit("localhost2"));
|
|
|
|
req.authority = StringRef::from_lit("localhost:8443");
|
2016-02-20 13:41:23 +01:00
|
|
|
resp.fs.add_header_token(StringRef::from_lit("location"),
|
|
|
|
StringRef::from_lit("http://localhost2:3000/"),
|
|
|
|
false, http2::HD_LOCATION);
|
2016-03-10 15:50:04 +01:00
|
|
|
d.rewrite_location_response_header(StringRef::from_lit("https"));
|
2016-01-16 04:49:18 +01:00
|
|
|
auto location = resp.fs.header(http2::HD_LOCATION);
|
|
|
|
CU_ASSERT("https://localhost:8443/" == (*location).value);
|
2013-12-21 09:49:31 +01:00
|
|
|
}
|
|
|
|
|
2013-08-27 17:09:46 +02:00
|
|
|
} // namespace shrpx
|