2021-04-16 21:39:21 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-04-16 21:39:21 +00:00
|
|
|
|
2022-09-02 19:18:23 +00:00
|
|
|
package integration
|
2021-04-16 21:39:21 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
2021-09-22 05:38:34 +00:00
|
|
|
"os"
|
2021-04-16 21:39:21 +00:00
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
2022-09-02 19:18:23 +00:00
|
|
|
"code.gitea.io/gitea/tests"
|
2021-11-17 12:34:35 +00:00
|
|
|
|
2021-04-16 21:39:21 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2024-07-30 19:41:10 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2021-04-16 21:39:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func assertFileExist(t *testing.T, p string) {
|
|
|
|
exist, err := util.IsExist(p)
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2021-04-16 21:39:21 +00:00
|
|
|
assert.True(t, exist)
|
|
|
|
}
|
|
|
|
|
|
|
|
func assertFileEqual(t *testing.T, p string, content []byte) {
|
2021-09-22 05:38:34 +00:00
|
|
|
bs, err := os.ReadFile(p)
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2021-04-16 21:39:21 +00:00
|
|
|
assert.EqualValues(t, content, bs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRepoCloneWiki(t *testing.T) {
|
|
|
|
onGiteaRun(t, func(t *testing.T, u *url.URL) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2021-04-16 21:39:21 +00:00
|
|
|
|
2022-09-04 15:14:53 +00:00
|
|
|
dstPath := t.TempDir()
|
2021-04-16 21:39:21 +00:00
|
|
|
|
|
|
|
r := fmt.Sprintf("%suser2/repo1.wiki.git", u.String())
|
|
|
|
u, _ = url.Parse(r)
|
|
|
|
u.User = url.UserPassword("user2", userPassword)
|
|
|
|
t.Run("Clone", func(t *testing.T) {
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, git.CloneWithArgs(context.Background(), git.AllowLFSFiltersArgs(), u.String(), dstPath, git.CloneRepoOptions{}))
|
2021-04-16 21:39:21 +00:00
|
|
|
assertFileEqual(t, filepath.Join(dstPath, "Home.md"), []byte("# Home page\n\nThis is the home page!\n"))
|
|
|
|
assertFileExist(t, filepath.Join(dstPath, "Page-With-Image.md"))
|
|
|
|
assertFileExist(t, filepath.Join(dstPath, "Page-With-Spaced-Name.md"))
|
|
|
|
assertFileExist(t, filepath.Join(dstPath, "images"))
|
|
|
|
assertFileExist(t, filepath.Join(dstPath, "jpeg.jpg"))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|