Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
ad8be7d4
Commit
ad8be7d4
authored
Mar 25, 2016
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src: parse_link_header takes StringRef
parent
07926cff
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
123 additions
and
130 deletions
+123
-130
src/http2.cc
src/http2.cc
+3
-5
src/http2.h
src/http2.h
+5
-5
src/http2_test.cc
src/http2_test.cc
+114
-117
src/shrpx_http2_upstream.cc
src/shrpx_http2_upstream.cc
+1
-3
No files found.
src/http2.cc
View file @
ad8be7d4
...
...
@@ -1171,12 +1171,10 @@ almost_done:
}
}
// namespace
std
::
vector
<
LinkHeader
>
parse_link_header
(
const
char
*
src
,
size_t
len
)
{
auto
first
=
src
;
auto
last
=
src
+
len
;
std
::
vector
<
LinkHeader
>
parse_link_header
(
const
StringRef
&
src
)
{
std
::
vector
<
LinkHeader
>
res
;
for
(
;
first
!=
last
;)
{
auto
rv
=
parse_next_link_header_once
(
first
,
last
);
for
(
auto
first
=
std
::
begin
(
src
);
first
!=
std
::
end
(
src
)
;)
{
auto
rv
=
parse_next_link_header_once
(
first
,
std
::
end
(
src
)
);
first
=
rv
.
second
;
auto
&
link
=
rv
.
first
;
if
(
!
link
.
uri
.
empty
())
{
...
...
src/http2.h
View file @
ad8be7d4
...
...
@@ -322,11 +322,11 @@ struct LinkHeader {
StringRef
uri
;
};
// Returns next URI-reference in Link header field value |src|
of
//
length |len|. If no URI-reference found after searching all input,
//
returned uri field is empty. This imply that empty URI-reference
//
is ignored during
parsing.
std
::
vector
<
LinkHeader
>
parse_link_header
(
const
char
*
src
,
size_t
len
);
// Returns next URI-reference in Link header field value |src|
. If no
//
URI-reference found after searching all input, returned uri field
//
is empty. This imply that empty URI-reference is ignored during
// parsing.
std
::
vector
<
LinkHeader
>
parse_link_header
(
const
StringRef
&
src
);
// Constructs path by combining base path |base_path| with another
// path |rel_path|. The base path and another path can have optional
...
...
src/http2_test.cc
View file @
ad8be7d4
...
...
@@ -282,388 +282,385 @@ void test_http2_lookup_token(void) {
void
test_http2_parse_link_header
(
void
)
{
{
// only URI appears; we don't extract URI unless it bears rel=preload
constexpr
char
s
[]
=
"<url>"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// URI url should be extracted
constexpr
char
s
[]
=
"<url>; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; rel=preload"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// With extra link-param. URI url should be extracted
constexpr
char
s
[]
=
"<url>; rel=preload; as=file"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; rel=preload; as=file"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// With extra link-param. URI url should be extracted
constexpr
char
s
[]
=
"<url>; as=file; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; as=file; rel=preload"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// With extra link-param and quote-string. URI url should be
// extracted
constexpr
char
s
[]
=
R"(<url>; rel=preload; title="foo,bar")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel=preload; title="foo,bar")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// With extra link-param and quote-string. URI url should be
// extracted
constexpr
char
s
[]
=
R"(<url>; title="foo,bar"; rel=preload)"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; title="foo,bar"; rel=preload)"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// ',' after quote-string
constexpr
char
s
[]
=
R"(<url>; title="foo,bar", <url2>; rel=preload)"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; title="foo,bar", <url2>; rel=preload)"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url2"
==
res
[
0
].
uri
);
CU_ASSERT
(
&
s
[
25
]
==
&
res
[
0
].
uri
[
0
]);
}
{
// Only first URI should be extracted.
constexpr
char
s
[]
=
"<url>; rel=preload, <url2>"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; rel=preload, <url2>"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// Both have rel=preload, so both urls should be extracted
constexpr
char
s
[]
=
"<url>; rel=preload, <url2>; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; rel=preload, <url2>; rel=preload"
));
CU_ASSERT
(
2
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
CU_ASSERT
(
"url2"
==
res
[
1
].
uri
);
}
{
// Second URI uri should be extracted.
constexpr
char
s
[]
=
"<url>, <url2>;rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>, <url2>;rel=preload"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url2"
==
res
[
0
].
uri
);
}
{
// Error if input ends with ';'
constexpr
char
s
[]
=
"<url>;rel=preload;"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>;rel=preload;"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// Error if link header ends with ';'
constexpr
char
s
[]
=
"<url>;rel=preload;, <url>"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>;rel=preload;, <url>"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// OK if input ends with ','
constexpr
char
s
[]
=
"<url>;rel=preload,"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>;rel=preload,"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// Multiple repeated ','s between fields is OK
constexpr
char
s
[]
=
"<url>,,,<url2>;rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>,,,<url2>;rel=preload"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url2"
==
res
[
0
].
uri
);
}
{
// Error if url is not enclosed by <>
constexpr
char
s
[]
=
"url>;rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"url>;rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// Error if url is not enclosed by <>
constexpr
char
s
[]
=
"<url;rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url;rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// Empty parameter value is not allowed
constexpr
char
s
[]
=
"<url>;rel=preload; as="
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>;rel=preload; as="
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// Empty parameter value is not allowed
constexpr
char
s
[]
=
"<url>;as=;rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>;as=;rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// Empty parameter value is not allowed
constexpr
char
s
[]
=
"<url>;as=, <url>;rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>;as=, <url>;rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// Empty parameter name is not allowed
constexpr
char
s
[]
=
"<url>; =file; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; =file; rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// Without whitespaces
constexpr
char
s
[]
=
"<url>;as=file;rel=preload,<url2>;rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>;as=file;rel=preload,<url2>;rel=preload"
));
CU_ASSERT
(
2
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
CU_ASSERT
(
"url2"
==
res
[
1
].
uri
);
}
{
// link-extension may have no value
constexpr
char
s
[]
=
"<url>; as; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; as; rel=preload"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// ext-name-star
constexpr
char
s
[]
=
"<url>; foo*=bar; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; foo*=bar; rel=preload"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// '*' is not allowed expect for trailing one
constexpr
char
s
[]
=
"<url>; *=bar; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; *=bar; rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// '*' is not allowed expect for trailing one
constexpr
char
s
[]
=
"<url>; foo*bar=buzz; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; foo*bar=buzz; rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// ext-name-star must be followed by '='
constexpr
char
s
[]
=
"<url>; foo*; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; foo*; rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// '>' is not followed by ';'
constexpr
char
s
[]
=
"<url> rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url> rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// Starting with whitespace is no problem.
constexpr
char
s
[]
=
" <url>; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
" <url>; rel=preload"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// preload is a prefix of bogus rel parameter value
constexpr
char
s
[]
=
"<url>; rel=preloadx"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; rel=preloadx"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// preload in relation-types list
constexpr
char
s
[]
=
R"(<url>; rel="preload")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="preload")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// preload in relation-types list followed by another parameter
constexpr
char
s
[]
=
R"(<url>; rel="preload foo")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="preload foo")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// preload in relation-types list following another parameter
constexpr
char
s
[]
=
R"(<url>; rel="foo preload")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="foo preload")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// preload in relation-types list between other parameters
constexpr
char
s
[]
=
R"(<url>; rel="foo preload bar")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="foo preload bar")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// preload in relation-types list between other parameters
constexpr
char
s
[]
=
R"(<url>; rel="foo preload bar")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="foo preload bar")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// no preload in relation-types list
constexpr
char
s
[]
=
R"(<url>; rel="foo")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="foo")"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// no preload in relation-types list, multiple unrelated elements.
constexpr
char
s
[]
=
R"(<url>; rel="foo bar")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="foo bar")"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// preload in relation-types list, followed by another link-value.
constexpr
char
s
[]
=
R"(<url>; rel="preload", <url2>)"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="preload", <url2>)"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// preload in relation-types list, following another link-value.
constexpr
char
s
[]
=
R"(<url>, <url2>; rel="preload")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>, <url2>; rel="preload")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url2"
==
res
[
0
].
uri
);
}
{
// preload in relation-types list, followed by another link-param.
constexpr
char
s
[]
=
R"(<url>; rel="preload"; as="font")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="preload"; as="font")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// preload in relation-types list, followed by character other
// than ';' or ','
constexpr
char
s
[]
=
R"(<url>; rel="preload".)"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="preload".)"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// preload in relation-types list, followed by ';' but it
// terminates input
constexpr
char
s
[]
=
R"(<url>; rel="preload";)"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="preload";)"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// preload in relation-types list, followed by ',' but it
// terminates input
constexpr
char
s
[]
=
R"(<url>; rel="preload",)"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="preload",)"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// preload in relation-types list but there is preceding white
// space.
constexpr
char
s
[]
=
R"(<url>; rel=" preload")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel=" preload")"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// preload in relation-types list but there is trailing white
// space.
constexpr
char
s
[]
=
R"(<url>; rel="preload ")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel="preload ")"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// backslash escaped characters in quoted-string
constexpr
char
s
[]
=
R"(<url>; rel=preload; title="foo\"baz\"bar")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel=preload; title="foo\"baz\"bar")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// anchor="" is acceptable
constexpr
char
s
[]
=
R"(<url>; rel=preload; anchor="")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel=preload; anchor="")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// With anchor="#foo", url should be ignored
constexpr
char
s
[]
=
R"(<url>; rel=preload; anchor="#foo")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel=preload; anchor="#foo")"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// With anchor=f, url should be ignored
constexpr
char
s
[]
=
"<url>; rel=preload; anchor=f"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; rel=preload; anchor=f"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// First url is ignored With anchor="#foo", but url should be
// accepted.
constexpr
char
s
[]
=
R"(<url>; rel=preload; anchor="#foo", <url2>; rel=preload)"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel=preload; anchor="#foo", <url2>; rel=preload)"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url2"
==
res
[
0
].
uri
);
}
{
// With loadpolicy="next", url should be ignored
constexpr
char
s
[]
=
R"(<url>; rel=preload; loadpolicy="next")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel=preload; loadpolicy="next")"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// url should be picked up if empty loadpolicy is specified
constexpr
char
s
[]
=
R"(<url>; rel=preload; loadpolicy="")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel=preload; loadpolicy="")"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// case-insensitive match
constexpr
char
s
[]
=
R"(<url>; rel=preload; ANCHOR="#foo", <url2>; )"
R"(REL=PRELOAD, <url3>; REL="foo PRELOAD bar")"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
R"(<url>; rel=preload; ANCHOR="#foo", <url2>; )"
R"(REL=PRELOAD, <url3>; REL="foo PRELOAD bar")"
));
CU_ASSERT
(
2
==
res
.
size
());
CU_ASSERT
(
"url2"
==
res
[
0
].
uri
);
CU_ASSERT
(
"url3"
==
res
[
1
].
uri
);
}
{
// nopush at the end of input
constexpr
char
s
[]
=
"<url>; rel=preload; nopush"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; rel=preload; nopush"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// nopush followed by ';'
constexpr
char
s
[]
=
"<url>; rel=preload; nopush; foo"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; rel=preload; nopush; foo"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// nopush followed by ','
constexpr
char
s
[]
=
"<url>; nopush; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; nopush; rel=preload"
));
CU_ASSERT
(
0
==
res
.
size
());
}
{
// string whose prefix is nopush
constexpr
char
s
[]
=
"<url>; nopushyes; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; nopushyes; rel=preload"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
{
// rel=preload twice
constexpr
char
s
[]
=
"<url>; rel=preload; rel=preload"
;
auto
res
=
http2
::
parse_link_header
(
s
,
str_size
(
s
));
auto
res
=
http2
::
parse_link_header
(
StringRef
::
from_lit
(
"<url>; rel=preload; rel=preload"
));
CU_ASSERT
(
1
==
res
.
size
());
CU_ASSERT
(
"url"
==
res
[
0
].
uri
);
}
...
...
src/shrpx_http2_upstream.cc
View file @
ad8be7d4
...
...
@@ -1782,9 +1782,7 @@ int Http2Upstream::prepare_push_promise(Downstream *downstream) {
if
(
kv
.
token
!=
http2
::
HD_LINK
)
{
continue
;
}
for
(
auto
&
link
:
http2
::
parse_link_header
(
kv
.
value
.
c_str
(),
kv
.
value
.
size
()))
{
for
(
auto
&
link
:
http2
::
parse_link_header
(
kv
.
value
))
{
StringRef
scheme
,
authority
,
path
;
rv
=
http2
::
construct_push_component
(
balloc
,
scheme
,
authority
,
path
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment