Commit 1bb0f189 authored by Nils Goroll's avatar Nils Goroll Committed by Dridi Boukelmoune

Clear the IMS object attribute when copying from a stale object

The fact that the previous object was IMS/INM eligable does not make
one created from it eligable as well.

Also test for the miss + hfm case with IMS/INM

Fixes #2763
parent fa4b81b4
......@@ -716,6 +716,7 @@ vbf_stp_condfetch(struct worker *wrk, struct busyobj *bo)
OA_ESIDATA));
AZ(ObjCopyAttr(bo->wrk, bo->fetch_objcore, bo->stale_oc, OA_FLAGS));
ObjSetFlag(bo->wrk, bo->fetch_objcore, OF_IMSCAND, 0);
AZ(ObjCopyAttr(bo->wrk, bo->fetch_objcore, bo->stale_oc, OA_GZIPBITS));
if (bo->do_stream) {
......
varnishtest "Cacheable IMS replaced by HFM object"
server s1 {
rxreq
expect req.url == "/etag"
txresp -hdr "ETag: foo" -bodylen 7
rxreq
expect req.url == "/etag"
expect req.http.If-None-Match == "foo"
txresp -status 304 -hdr "ETag: foo"
rxreq
expect req.url == "/etag"
txresp -hdr "ETag: foo" -bodylen 7
} -start
varnish v1 -vcl+backend {
sub vcl_miss {
set req.http.X-Cache = "MISS";
}
sub vcl_pass {
set req.http.X-Cache = "PASS";
}
sub vcl_backend_response {
if (bereq.http.HFM) {
set beresp.uncacheable = true;
} else {
set beresp.ttl = 0.0001s;
set beresp.grace = 0s;
set beresp.keep = 1m;
}
return (deliver);
}
sub vcl_deliver {
set resp.http.X-Cache = req.http.X-Cache;
}
} -start
client c1 {
txreq -url "/etag"
rxresp
expect resp.status == 200
expect resp.bodylen == 7
expect resp.http.ETag == "foo"
expect resp.http.X-Cache == "MISS"
delay 0.1
txreq -url "/etag" -hdr "HFM: true"
rxresp
expect resp.status == 200
expect resp.bodylen == 7
expect resp.http.ETag == "foo"
expect resp.http.X-Cache == "MISS"
txreq -url "/etag"
rxresp
expect resp.status == 200
expect resp.bodylen == 7
expect resp.http.ETag == "foo"
expect resp.http.X-Cache == "MISS"
} -run
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment