Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-selector
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
libvmod-selector
Commits
da790e74
Commit
da790e74
authored
Jul 07, 2018
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix and verify some error cases for .hasprefix().
parent
60aceb98
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
5 deletions
+45
-5
prefix.vtc
src/tests/prefix.vtc
+39
-0
vmod_selector.c
src/vmod_selector.c
+6
-5
No files found.
src/tests/prefix.vtc
View file @
da790e74
...
...
@@ -1446,3 +1446,42 @@ client c1 {
expect resp.http.Which-Shortest == "0"
expect resp.http.Which-Longest == "0"
} -run
varnish v1 -vcl {
import ${vmod_selector};
backend b { .host = "${bad_ip}"; }
sub vcl_init {
new t = selector.set();
t.add("foo");
new n = selector.set();
}
sub vcl_recv {
return (synth(200));
}
sub vcl_synth {
set resp.http.Undef = t.hasprefix(req.http.No-Such-Header);
set resp.http.Nil = n.hasprefix("foo");
return (deliver);
}
}
logexpect l1 -v v1 -d 0 -g vxid -q "VCL_Error" {
expect 0 * Begin req
expect * = VCL_Error {^vmod selector error: t\.hasprefix\(\): subject string is NULL$}
expect * = VCL_Error {^vmod selector error: n\.hasprefix\(\): no entries were added$}
expect * = End
} -start
client c1 {
txreq
rxresp
expect resp.status == 200
expect resp.http.Undef == "false"
expect resp.http.Nil == "false"
} -run
logexpect l1 -wait
src/vmod_selector.c
View file @
da790e74
...
...
@@ -419,15 +419,16 @@ vmod_set_hasprefix(VRT_CTX, struct vmod_selector_set *set, VCL_STRING subject)
CHECK_OBJ_NOTNULL
(
ctx
,
VRT_CTX_MAGIC
);
CHECK_OBJ_NOTNULL
(
set
,
VMOD_SELECTOR_SET_MAGIC
);
AN
(
set
->
origo
);
if
(
s
ubject
==
NULL
)
{
VERR
(
ctx
,
"%s.hasprefix():
subject string is NULL
"
,
if
(
s
et
->
nmembers
==
0
)
{
VERR
(
ctx
,
"%s.hasprefix():
no entries were added
"
,
set
->
vcl_name
);
return
(
0
);
}
if
(
set
->
nmembers
==
0
)
{
VERR
(
ctx
,
"%s.hasprefix(): no entries were added"
,
AN
(
set
->
origo
);
if
(
subject
==
NULL
)
{
VERR
(
ctx
,
"%s.hasprefix(): subject string is NULL"
,
set
->
vcl_name
);
return
(
0
);
}
...
...
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