2021-05-10 03:20:06 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2021-05-10 03:20:06 +05:30
|
|
|
|
2022-09-03 00:48:23 +05:30
|
|
|
package integration
|
2021-05-10 03:20:06 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2022-09-03 00:48:23 +05:30
|
|
|
"code.gitea.io/gitea/tests"
|
2021-11-17 18:04:35 +05:30
|
|
|
|
2021-05-10 03:20:06 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGoGet(t *testing.T) {
|
2022-09-03 00:48:23 +05:30
|
|
|
defer tests.PrepareTestEnv(t)()
|
2021-05-10 03:20:06 +05:30
|
|
|
|
|
|
|
req := NewRequest(t, "GET", "/blah/glah/plah?go-get=1")
|
|
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
expected := fmt.Sprintf(`<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta name="go-import" content="%[1]s:%[2]s/blah/glah git %[3]sblah/glah.git">
|
|
|
|
<meta name="go-source" content="%[1]s:%[2]s/blah/glah _ %[3]sblah/glah/src/branch/master{/dir} %[3]sblah/glah/src/branch/master{/dir}/{file}#L{line}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
go get --insecure %[1]s:%[2]s/blah/glah
|
|
|
|
</body>
|
2022-04-01 14:17:50 +05:30
|
|
|
</html>`, setting.Domain, setting.HTTPPort, setting.AppURL)
|
2021-05-10 03:20:06 +05:30
|
|
|
|
|
|
|
assert.Equal(t, expected, resp.Body.String())
|
|
|
|
}
|