From f2a856aa3b0ea0e0d892a9a3865c54de83c71a74 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Fri, 8 Jun 2018 18:32:55 +0300 Subject: Tests: Go application tests. --- test/go/get_variables/app.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/go/get_variables/app.go (limited to 'test/go/get_variables/app.go') diff --git a/test/go/get_variables/app.go b/test/go/get_variables/app.go new file mode 100644 index 00000000..563febc8 --- /dev/null +++ b/test/go/get_variables/app.go @@ -0,0 +1,17 @@ +package main + +import ( + "net/http" + "nginx/unit" +) + +func handler(w http.ResponseWriter, r *http.Request) { + w.Header().Set("X-Var-1", r.URL.Query().Get("var1")) + w.Header().Set("X-Var-2", r.URL.Query().Get("var2")) + w.Header().Set("X-Var-3", r.URL.Query().Get("var3")) +} + +func main() { + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) +} -- cgit