saasitone/pkg/handlers/pages_test.go

24 lines
515 B
Go
Raw Normal View History

package handlers
2021-12-05 17:22:45 -08:00
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
// Simple example of how to test routes and their markup using the test HTTP server spun up within
// this test package
func TestPages__About(t *testing.T) {
2021-12-06 07:38:55 -08:00
doc := request(t).
setRoute(routeNameAbout).
2021-12-06 07:38:55 -08:00
get().
2021-12-06 04:42:20 -08:00
assertStatusCode(http.StatusOK).
toDoc()
// Goquery is an excellent package to use for testing HTML markup
2021-12-05 17:22:45 -08:00
h1 := doc.Find("h1.title")
assert.Len(t, h1.Nodes, 1)
assert.Equal(t, "About", h1.Text())
}