prysm-pulse/validator/web/handler_test.go
Raul Jordan d077483577
Add V3 Suffix to All Prysm Packages (#11083)
* v3 import renamings

* tidy

* fmt

* rev

* Update beacon-chain/core/epoch/precompute/reward_penalty_test.go

* Update beacon-chain/core/helpers/validators_test.go

* Update beacon-chain/db/alias.go

* Update beacon-chain/db/alias.go

* Update beacon-chain/db/alias.go

* Update beacon-chain/db/iface/BUILD.bazel

* Update beacon-chain/db/kv/kv.go

* Update beacon-chain/db/kv/state.go

* Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go

* Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go

* Update beacon-chain/sync/initial-sync/service.go

* fix deps

* fix bad replacements

* fix bad replacements

* change back

* gohashtree version

* fix deps

Co-authored-by: Nishant Das <nishdas93@gmail.com>
Co-authored-by: Potuz <potuz@prysmaticlabs.com>
2022-08-16 12:20:13 +00:00

56 lines
1.2 KiB
Go

package web
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/prysmaticlabs/prysm/v3/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"))
}
})
}
}