Tests: Go application tests.

This commit is contained in:
Andrey Zelenkov
2018-06-08 18:32:55 +03:00
parent 2b39ed5dfb
commit f2a856aa3b
11 changed files with 377 additions and 5 deletions

View File

@@ -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)
}