Skip to content

Commit ca96206

Browse files
committed
Confirm CSS content type is provided
1 parent 45fb450 commit ca96206

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

main_test.go

+21
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,27 @@ func TestServeFile(t *testing.T) {
6363
assert.Equal(t, fmt.Sprintf("%s/%s\n", testDir, filePath), string(body))
6464
}
6565

66+
func TestServeCSS(t *testing.T) {
67+
testDir := "root"
68+
filePath := "style.css"
69+
70+
s := &Serve{
71+
Dir: fmt.Sprintf("testdata/%s", testDir),
72+
}
73+
74+
handler := s.handler()
75+
76+
request := httptest.NewRequest("GET", fmt.Sprintf("/%s", filePath), nil)
77+
recorder := httptest.NewRecorder()
78+
79+
handler.ServeHTTP(recorder, request)
80+
81+
response := recorder.Result()
82+
83+
assert.Equal(t, http.StatusOK, response.StatusCode)
84+
assert.Equal(t, "text/css; charset=utf-8", response.Header.Get("Content-Type"))
85+
}
86+
6687
func TestServeSubIndex(t *testing.T) {
6788
testDir := "root"
6889
dirPath := "sub"

testdata/root/style.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
html {
2+
font-family: var(--sans-font);
3+
}

0 commit comments

Comments
 (0)