mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
package web
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
)
|
|
|
|
func TestHandler(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: "",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
req := &http.Request{RequestURI: tt.requestURI}
|
|
res := httptest.NewRecorder()
|
|
Handler(res, req)
|
|
assert.Equal(t, tt.wantStatus, res.Result().StatusCode)
|
|
if tt.wantContentType != "" {
|
|
assert.Equal(t, tt.wantContentType, res.Result().Header.Get("Content-Type"))
|
|
}
|
|
})
|
|
}
|
|
}
|