-
Notifications
You must be signed in to change notification settings - Fork 0
/
myserver_test.go
64 lines (52 loc) · 1.31 KB
/
myserver_test.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
"strings"
"testing"
)
func TestWebServerDefaultNoArgs(t *testing.T) {
var name = "Cruel World"
server := httptest.NewServer(http.HandlerFunc(ServeHTTP))
defer server.Close()
resp, err := http.Get(server.URL)
if err != nil {
t.Fatal(err)
}
if resp.StatusCode != 200 {
t.Fatalf("Received non-200 response: %d\n", resp.StatusCode)
}
var expected = fmt.Sprintf("Hello, %s!", name)
actual, err := ioutil.ReadAll(resp.Body)
actualAsString := strings.Trim(string(actual), "\n\t\r")
if err != nil {
t.Fatal(err)
}
if expected != actualAsString {
t.Errorf("Expected the message '%s'\n", expected)
}
}
func TestWebServerWithArgs(t *testing.T) {
var name = "Itamar"
server := httptest.NewServer(http.HandlerFunc(ServeHTTP))
defer server.Close()
address := fmt.Sprintf("%s?name=%s",server.URL, name)
resp, err := http.Get(address)
if err != nil {
t.Fatal(err)
}
if resp.StatusCode != 200 {
t.Fatalf("Received non-200 response: %d\n", resp.StatusCode)
}
var expected = fmt.Sprintf("Hello, %s!", name)
actual, err := ioutil.ReadAll(resp.Body)
actualAsString := strings.Trim(string(actual), "\n\t\r")
if err != nil {
t.Fatal(err)
}
if expected != actualAsString {
t.Errorf("Expected the message '%s'\n", expected)
}
}