Files
core/http/handler/api/about_test.go
2024-10-30 17:12:29 +01:00

39 lines
835 B
Go

package api
import (
"net/http"
"testing"
"github.com/datarhei/core/v16/http/api"
"github.com/datarhei/core/v16/http/mock"
"github.com/datarhei/core/v16/internal/mock/resources"
"github.com/datarhei/core/v16/internal/mock/restream"
"github.com/stretchr/testify/require"
"github.com/labstack/echo/v4"
)
func getDummyAboutRouter() (*echo.Echo, error) {
router := mock.DummyEcho()
rs, err := restream.New(nil, nil, nil, nil)
if err != nil {
return nil, err
}
handler := NewAbout(rs, resources.New(), func() []string { return []string{} })
router.Add("GET", "/", handler.About)
return router, nil
}
func TestAbout(t *testing.T) {
router, err := getDummyAboutRouter()
require.NoError(t, err)
response := mock.Request(t, http.StatusOK, router, "GET", "/", nil)
mock.Validate(t, &api.About{}, response.Data)
}