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/404/404.html | 6 ++++++ test/go/404/app.go | 22 ++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 test/go/404/404.html create mode 100644 test/go/404/app.go (limited to 'test/go/404') diff --git a/test/go/404/404.html b/test/go/404/404.html new file mode 100644 index 00000000..6d0c635a --- /dev/null +++ b/test/go/404/404.html @@ -0,0 +1,6 @@ + +404 Not Found + +

404 Not Found

+ + diff --git a/test/go/404/app.go b/test/go/404/app.go new file mode 100644 index 00000000..abb33066 --- /dev/null +++ b/test/go/404/app.go @@ -0,0 +1,22 @@ +package main + +import ( + "io" + "io/ioutil" + "net/http" + "nginx/unit" +) + +func handler(w http.ResponseWriter, r *http.Request) { + b, e := ioutil.ReadFile("404.html") + + if e == nil { + w.WriteHeader(http.StatusNotFound) + io.WriteString(w, string(b)) + } +} + +func main() { + http.HandleFunc("/", handler) + unit.ListenAndServe(":7080", nil) +} -- cgit