blob: 72d3304b9e3f509b1996db25323655dd4801ff11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package main
import (
"fmt"
"log"
"net/http"
"net/http/httptest"
"os"
"testing"
)
func logToNull() {
hush, err := os.Open("/dev/null")
if err != nil {
log.Printf("%v\n", err)
}
log.SetOutput(hush)
}
func Test_indexHandler(t *testing.T) {
logToNull()
t.Run("indexHandler", func(t *testing.T) {
w := httptest.NewRecorder()
req := httptest.NewRequest("GET", "localhost:9001/", nil)
indexHandler(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf(fmt.Sprintf("%v", resp.StatusCode))
}
})
}
|