mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
673cf6af76
This PR removed `unittest.MainTest` the second parameter `TestOptions.GiteaRoot`. Now it detects the root directory by current working directory. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
38 lines
844 B
Go
38 lines
844 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package install
|
|
|
|
import (
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRoutes(t *testing.T) {
|
|
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)
|
|
}
|