aboutsummaryrefslogtreecommitdiff
path: root/godoc/server_test.go
blob: 9fa411fd0697f10759a5c936f785f34c3790653b (plain)
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
65
66
67
68
69
70
71
72
73
74
75
package godoc

import (
	"errors"
	"expvar"
	"net/http"
	"net/http/httptest"
	"testing"
	"text/template"
)

var (
	// NOTE: with no plain-text in the template, template.Execute will not
	// return an error when http.ResponseWriter.Write does return an error.
	tmpl = template.Must(template.New("test").Parse("{{.Foo}}"))
)

type withFoo struct {
	Foo int
}

type withoutFoo struct {
}

type errResponseWriter struct {
}

func (*errResponseWriter) Header() http.Header {
	return http.Header{}
}

func (*errResponseWriter) WriteHeader(int) {
}

func (*errResponseWriter) Write(p []byte) (int, error) {
	return 0, errors.New("error")
}

func TestApplyTemplateToResponseWriter(t *testing.T) {
	for _, tc := range []struct {
		desc    string
		rw      http.ResponseWriter
		data    interface{}
		expVars int
	}{
		{
			desc:    "no error",
			rw:      &httptest.ResponseRecorder{},
			data:    &withFoo{},
			expVars: 0,
		},
		{
			desc:    "template error",
			rw:      &httptest.ResponseRecorder{},
			data:    &withoutFoo{},
			expVars: 0,
		},
		{
			desc:    "ResponseWriter error",
			rw:      &errResponseWriter{},
			data:    &withFoo{},
			expVars: 1,
		},
	} {
		httpErrors.Init()
		applyTemplateToResponseWriter(tc.rw, tmpl, tc.data)
		gotVars := 0
		httpErrors.Do(func(expvar.KeyValue) {
			gotVars++
		})
		if gotVars != tc.expVars {
			t.Errorf("applyTemplateToResponseWriter(%q): got %d vars, want %d", tc.desc, gotVars, tc.expVars)
		}
	}
}