]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: tests: First regression testing file.
authorFrédéric Lécaille <flecaille@haproxy.com>
Mon, 18 Jun 2018 17:32:10 +0000 (19:32 +0200)
committerWilly Tarreau <w@1wt.eu>
Tue, 19 Jun 2018 08:14:59 +0000 (10:14 +0200)
Add a makefile target 'reg-tests' to run all regression testing file
found in 'reg-tests' directory.
Add reg-tests/lua/h00000.vtc first regression testing file for a LUA
fixed by f874a83 commit.

.gitignore
Makefile
reg-tests/lua/h00000.lua [new file with mode: 0644]
reg-tests/lua/h00000.vtc [new file with mode: 0644]

index 73eaeae2d08fef5b551724013f74044b7b4475f4..32a8a84d2460b079f55c0695f7522de7965b735e 100644 (file)
@@ -22,6 +22,7 @@
 !/tests
 !/debian
 !/scripts
+!/reg-tests
 # Reject some generic files
 *.o
 *~
index 5d1700410065750d56ada22752f6c714e7ec8aab..69f6ebb647603115cd64659b5bb3692e0ab88e9c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -91,6 +91,8 @@
 #   VERSION        : force haproxy version reporting.
 #   SUBVERS        : add a sub-version (eg: platform, model, ...).
 #   VERDATE        : force haproxy's release date.
+#
+#   VARNISHTEST_PROGRAM : location of the varnishtest program to run reg-tests.
 
 # Function used to detect support of a given option by the compiler.
 # Usage: CFLAGS += $(call cc-opt,option). Eg: $(call cc-opt,-fwrapv)
@@ -996,3 +998,12 @@ update-version:
        echo "$(VERSION)" > VERSION
        echo "$(SUBVERS)" > SUBVERS
        echo "$(VERDATE)" > VERDATE
+
+reg-tests:
+       @if [ ! -x "$(VARNISHTEST_PROGRAM)" ]; then \
+               echo "Please make the VARNISHTEST_PROGRAM variable point to the location of the varnishtest program."; \
+               exit 1; \
+       fi
+       @find reg-tests -type f -name "*.vtc" -print0 | \
+          xargs -0 $(VARNISHTEST_PROGRAM) -l -t5
+.PHONY: reg-tests
diff --git a/reg-tests/lua/h00000.lua b/reg-tests/lua/h00000.lua
new file mode 100644 (file)
index 0000000..d2401fa
--- /dev/null
@@ -0,0 +1,3 @@
+core.register_action("foo", { "http-req" }, function(txn)
+       txn.sc:ipmask(txn.f:src(), 24, 112)
+end)
diff --git a/reg-tests/lua/h00000.vtc b/reg-tests/lua/h00000.vtc
new file mode 100644 (file)
index 0000000..2b2ffb0
--- /dev/null
@@ -0,0 +1,74 @@
+# commit f874a83
+# BUG/MINOR: lua: Segfaults with wrong usage of types.
+#
+# Patrick reported that this simple configuration made haproxy segfaults:
+#
+#     global
+#         lua-load /tmp/haproxy.lua
+#
+#     frontend f1
+#         mode http
+#         bind :8000
+#         default_backend b1
+#
+#         http-request lua.foo
+#
+#     backend b1
+#         mode http
+#         server s1 127.0.0.1:8080
+#
+# with this '/tmp/haproxy.lua' script:
+#
+#     core.register_action("foo", { "http-req" }, function(txn)
+#         txn.sc:ipmask(txn.f:src(), 24, 112)
+#     end)
+#
+# This is due to missing initialization of the array of arguments
+# passed to hlua_lua2arg_check() which makes it enter code with
+# corrupted arguments.
+#
+# Thanks a lot to Patrick Hemmer for having reported this issue.
+
+
+varnishtest "Basic LUA test h00000"
+feature ignore_unknown_macro
+
+server s1 -repeat 2 {
+    rxreq
+    txresp
+} -start
+
+haproxy h1 -conf {
+    global
+        lua-load ${testdir}/h00000.lua
+
+    frontend fe1
+        mode http
+        bind "fd@${fe1}"
+        default_backend b1
+
+        http-request lua.foo
+
+    backend b1
+        mode http
+        server s1 ${s1_addr}:${s1_port}
+
+} -start
+
+client c0 -connect ${h1_fe1_sock} {
+    txreq -url "/foo"
+    rxresp
+    expect resp.status == 200
+}
+
+client c1 -connect ${h1_fe1_sock} {
+    txreq -url "/foo"
+    rxresp
+    expect resp.status == 200
+}
+
+client c0 -start
+client c1 -start
+
+client c0 -wait
+client c1 -wait