2023-05-23 03:29:15 +02:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-29 23:00:02 +02:00
|
|
|
|
|
|
|
package install
|
|
|
|
|
|
|
|
import (
|
2023-05-23 03:29:15 +02:00
|
|
|
"net/http/httptest"
|
|
|
|
"path/filepath"
|
2021-06-29 23:00:02 +02:00
|
|
|
"testing"
|
|
|
|
|
2023-05-23 03:29:15 +02:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
|
2021-06-29 23:00:02 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRoutes(t *testing.T) {
|
2023-05-23 03:29:15 +02:00
|
|
|
r := Routes()
|
|
|
|
assert.NotNil(t, r)
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
req := httptest.NewRequest("GET", "/", nil)
|
|
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.EqualValues(t, 200, w.Code)
|
|
|
|
assert.Contains(t, w.Body.String(), `class="page-content install"`)
|
|
|
|
|
|
|
|
w = httptest.NewRecorder()
|
|
|
|
req = httptest.NewRequest("GET", "/no-such", nil)
|
|
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.EqualValues(t, 404, w.Code)
|
|
|
|
|
|
|
|
w = httptest.NewRecorder()
|
|
|
|
req = httptest.NewRequest("GET", "/assets/img/gitea.svg", nil)
|
|
|
|
r.ServeHTTP(w, req)
|
|
|
|
assert.EqualValues(t, 200, w.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
})
|
2021-06-29 23:00:02 +02:00
|
|
|
}
|