[master] 5625a9a Expose resp.body for inspection and testing in varnishtest

Martin Blix Grydeland martin at varnish-cache.org
Mon Apr 16 16:19:46 CEST 2012


commit 5625a9a532536f5c77ea9a1798b89127589e7fce
Author: Martin Blix Grydeland <martin at varnish-software.com>
Date:   Tue Mar 27 14:12:33 2012 +0200

    Expose resp.body for inspection and testing in varnishtest
    
    Needed to test #1123

diff --git a/bin/varnishtest/vtc_http.c b/bin/varnishtest/vtc_http.c
index 00be0be..0678efd 100644
--- a/bin/varnishtest/vtc_http.c
+++ b/bin/varnishtest/vtc_http.c
@@ -190,6 +190,8 @@ cmd_var_resolve(struct http *hp, char *spec)
 		return(hp->chunklen);
 	if (!strcmp(spec, "resp.bodylen"))
 		return(hp->bodylen);
+	if (!strcmp(spec, "resp.body"))
+		return(hp->body != NULL ? hp->body : spec);
 	if (!memcmp(spec, "req.http.", 9)) {
 		hh = hp->req;
 		hdr = spec + 9;



More information about the varnish-commit mailing list