mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
29 lines
562 B
Go
29 lines
562 B
Go
|
package robots_txt
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
"net/http"
|
||
|
"net/http/httptest"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func Test_RobotsTxt(t *testing.T) {
|
||
|
req := httptest.NewRequest(http.MethodGet, "/robots.txt", nil)
|
||
|
recorder := httptest.NewRecorder()
|
||
|
|
||
|
handler, err := Start()
|
||
|
handler.ServeHTTP(recorder, req)
|
||
|
assert.Equal(t, nil, err)
|
||
|
|
||
|
res := recorder.Result()
|
||
|
body, err := io.ReadAll(res.Body)
|
||
|
assert.Equal(t, nil, err)
|
||
|
|
||
|
assert.Equal(t, 200, res.StatusCode)
|
||
|
assert.Equal(t, "User-agent: *\nDisallow: /\n", string(body))
|
||
|
|
||
|
defer res.Body.Close()
|
||
|
}
|