2021-02-22 17:27:13 +05:30
|
|
|
package staticpages
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
"gitlab.com/gitlab-org/gitlab/workhorse/internal/testhelper"
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIfNoDeployPageExist(t *testing.T) {
|
2022-07-23 23:45:48 +05:30
|
|
|
dir := t.TempDir()
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
|
|
|
|
executed := false
|
2021-03-05 16:19:46 +05:30
|
|
|
st := &Static{DocumentRoot: dir}
|
2021-02-22 17:27:13 +05:30
|
|
|
st.DeployPage(http.HandlerFunc(func(_ http.ResponseWriter, _ *http.Request) {
|
|
|
|
executed = true
|
|
|
|
})).ServeHTTP(w, nil)
|
|
|
|
if !executed {
|
|
|
|
t.Error("The handler should get executed")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIfDeployPageExist(t *testing.T) {
|
2022-07-23 23:45:48 +05:30
|
|
|
dir := t.TempDir()
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
deployPage := "DEPLOY"
|
2022-07-23 23:45:48 +05:30
|
|
|
os.WriteFile(filepath.Join(dir, "index.html"), []byte(deployPage), 0600)
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
|
|
|
|
executed := false
|
2021-03-05 16:19:46 +05:30
|
|
|
st := &Static{DocumentRoot: dir}
|
2021-02-22 17:27:13 +05:30
|
|
|
st.DeployPage(http.HandlerFunc(func(_ http.ResponseWriter, _ *http.Request) {
|
|
|
|
executed = true
|
|
|
|
})).ServeHTTP(w, nil)
|
|
|
|
if executed {
|
|
|
|
t.Error("The handler should not get executed")
|
|
|
|
}
|
|
|
|
w.Flush()
|
|
|
|
|
|
|
|
require.Equal(t, 200, w.Code)
|
|
|
|
testhelper.RequireResponseBody(t, w, deployPage)
|
|
|
|
}
|