mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
1f707842d2
* Prysm web UI basic idea * Refactor to use shared.Service interface, add sanity test * register web server * Determine mimetype * Use 4242 as port for web * Allow localhost or 127.0.0.1 for CORS. More tests, commentary * Add flags, add site_data.go * ignore site data * Add sha * gofmt * gofmt * fix script * Lints * fix vis Co-authored-by: Victor Farazdagi <simple.square@gmail.com>
54 lines
1.2 KiB
Go
54 lines
1.2 KiB
Go
package web
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
)
|
|
|
|
func TestWebHandler(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
requestURI string
|
|
wantStatus int
|
|
wantContentType string
|
|
}{
|
|
{
|
|
name: "base route",
|
|
requestURI: "/",
|
|
wantStatus: 200,
|
|
wantContentType: "text/html; charset=utf-8",
|
|
},
|
|
{
|
|
name: "index.html",
|
|
requestURI: "/index.html",
|
|
wantStatus: 200,
|
|
wantContentType: "text/html; charset=utf-8",
|
|
},
|
|
{
|
|
name: "bad route",
|
|
requestURI: "/foobar_bad",
|
|
wantStatus: 200, // Serves index.html by default.
|
|
wantContentType: "text/html; charset=utf-8",
|
|
},
|
|
{
|
|
name: "favicon.ico",
|
|
requestURI: "/favicon.ico",
|
|
wantStatus: 200,
|
|
wantContentType: "image/vnd.microsoft.icon",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
req := &http.Request{RequestURI: tt.requestURI}
|
|
res := httptest.NewRecorder()
|
|
webHandler(res, req)
|
|
assert.Equal(t, tt.wantStatus, res.Result().StatusCode)
|
|
assert.Equal(t, tt.wantContentType, res.Result().Header.Get("Content-Type"))
|
|
})
|
|
}
|
|
}
|