Created
June 20, 2016 22:43
-
-
Save russellsimpkins/4772c47007633c852c423223ec048f40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
varnishtest "Cache busting test" | |
server s1 { | |
rxreq | |
expect req.url == "/foo/svc.json?api-key=abc%20qwer1234&another=value&name=value" | |
txresp | |
} -start | |
varnish v1 -vcl+backend { | |
import std; | |
sub vcl_recv { | |
if (req.url ~ "_=[0-9]+") { | |
set req.http.clean = regsuball(req.url, "(_=[0-9]+)", ""); | |
set req.http.clean = regsub(req.http.clean, "\?&", "?"); | |
set req.http.clean = regsub(req.http.clean, "&&", "&"); | |
set req.http.clean = regsub(req.http.clean, "&$", ""); | |
set req.http.clean = regsub(req.http.clean, "\?$", ""); | |
set req.url = req.http.clean; | |
} | |
} | |
sub vcl_deliver { | |
set resp.http.clean = req.http.clean; | |
} | |
} -start | |
client c1 { | |
txreq -url "/foo/svc.json?api-key=abc%20qwer1234&another=value&_=123412341234&name=value&_=12341234" | |
rxresp | |
expect resp.http.clean == "/foo/svc.json?api-key=abc%20qwer1234&another=value&name=value" | |
} | |
client c1 -run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment