Improve LFS tests + fix lfs url refs + keep path upper/lowercase in db. (#3092)
* Add failing test * Fix urls * Improve url in tests * improve testing * Remove debug code * Add deps * LFS corner-case : Search on lower but store with case * Temporary comment of blocking action * fix hooks * Use temporary repo for git client test * Use userPassword in place of hard-coded passwordrelease/v1.15
parent
aecfc56156
commit
ef78309b65
|
@ -6,27 +6,32 @@ package integrations
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"math/rand"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"code.gitea.io/git"
|
"code.gitea.io/git"
|
||||||
|
"code.gitea.io/gitea/modules/setting"
|
||||||
|
api "code.gitea.io/sdk/gitea"
|
||||||
|
|
||||||
"github.com/Unknwon/com"
|
"github.com/Unknwon/com"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
func onGiteaWebRun(t *testing.T, callback func(*testing.T, string)) {
|
func onGiteaWebRun(t *testing.T, callback func(*testing.T, *url.URL)) {
|
||||||
s := http.Server{
|
s := http.Server{
|
||||||
Handler: mac,
|
Handler: mac,
|
||||||
}
|
}
|
||||||
|
|
||||||
listener, err := net.Listen("tcp", "")
|
u, err := url.Parse(setting.AppURL)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
listener, err := net.Listen("tcp", u.Host)
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
|
|
||||||
defer func() {
|
defer func() {
|
||||||
|
@ -37,24 +42,144 @@ func onGiteaWebRun(t *testing.T, callback func(*testing.T, string)) {
|
||||||
|
|
||||||
go s.Serve(listener)
|
go s.Serve(listener)
|
||||||
|
|
||||||
_, port, err := net.SplitHostPort(listener.Addr().String())
|
callback(t, u)
|
||||||
assert.NoError(t, err)
|
|
||||||
|
|
||||||
callback(t, fmt.Sprintf("http://localhost:%s/", port))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestClone_ViaHTTP_NoLogin(t *testing.T) {
|
func TestGit(t *testing.T) {
|
||||||
prepareTestEnv(t)
|
prepareTestEnv(t)
|
||||||
|
|
||||||
onGiteaWebRun(t, func(t *testing.T, urlPrefix string) {
|
onGiteaWebRun(t, func(t *testing.T, u *url.URL) {
|
||||||
dstPath, err := ioutil.TempDir("", "repo1")
|
dstPath, err := ioutil.TempDir("", "repo-tmp-17")
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
defer os.RemoveAll(dstPath)
|
defer os.RemoveAll(dstPath)
|
||||||
|
u.Path = "user2/repo1.git"
|
||||||
|
|
||||||
err = git.Clone(fmt.Sprintf("%suser2/repo1.git", urlPrefix),
|
t.Run("Standard", func(t *testing.T) {
|
||||||
dstPath, git.CloneRepoOptions{})
|
|
||||||
assert.NoError(t, err)
|
|
||||||
|
|
||||||
assert.True(t, com.IsExist(filepath.Join(dstPath, "README.md")))
|
t.Run("CloneNoLogin", func(t *testing.T) {
|
||||||
|
dstLocalPath, err := ioutil.TempDir("", "repo1")
|
||||||
|
assert.NoError(t, err)
|
||||||
|
defer os.RemoveAll(dstLocalPath)
|
||||||
|
err = git.Clone(u.String(), dstLocalPath, git.CloneRepoOptions{})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.True(t, com.IsExist(filepath.Join(dstLocalPath, "README.md")))
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("CreateRepo", func(t *testing.T) {
|
||||||
|
session := loginUser(t, "user2")
|
||||||
|
req := NewRequestWithJSON(t, "POST", "/api/v1/user/repos", &api.CreateRepoOption{
|
||||||
|
AutoInit: true,
|
||||||
|
Description: "Temporary repo",
|
||||||
|
Name: "repo-tmp-17",
|
||||||
|
Private: false,
|
||||||
|
Gitignores: "",
|
||||||
|
License: "WTFPL",
|
||||||
|
Readme: "Default",
|
||||||
|
})
|
||||||
|
session.MakeRequest(t, req, http.StatusCreated)
|
||||||
|
})
|
||||||
|
|
||||||
|
u.Path = "user2/repo-tmp-17.git"
|
||||||
|
u.User = url.UserPassword("user2", userPassword)
|
||||||
|
t.Run("Clone", func(t *testing.T) {
|
||||||
|
err = git.Clone(u.String(), dstPath, git.CloneRepoOptions{})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.True(t, com.IsExist(filepath.Join(dstPath, "README.md")))
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("PushCommit", func(t *testing.T) {
|
||||||
|
data := make([]byte, 1024)
|
||||||
|
_, err := rand.Read(data)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
tmpFile, err := ioutil.TempFile(dstPath, "data-file-")
|
||||||
|
defer tmpFile.Close()
|
||||||
|
_, err = tmpFile.Write(data)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
//Commit
|
||||||
|
err = git.AddChanges(dstPath, false, filepath.Base(tmpFile.Name()))
|
||||||
|
assert.NoError(t, err)
|
||||||
|
err = git.CommitChanges(dstPath, git.CommitChangesOptions{
|
||||||
|
Committer: &git.Signature{
|
||||||
|
Email: "user2@example.com",
|
||||||
|
Name: "User Two",
|
||||||
|
When: time.Now(),
|
||||||
|
},
|
||||||
|
Author: &git.Signature{
|
||||||
|
Email: "user2@example.com",
|
||||||
|
Name: "User Two",
|
||||||
|
When: time.Now(),
|
||||||
|
},
|
||||||
|
Message: "Testing commit",
|
||||||
|
})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
//Push
|
||||||
|
err = git.Push(dstPath, git.PushOptions{
|
||||||
|
Branch: "master",
|
||||||
|
Remote: u.String(),
|
||||||
|
Force: false,
|
||||||
|
})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
t.Run("LFS", func(t *testing.T) {
|
||||||
|
t.Run("PushCommit", func(t *testing.T) {
|
||||||
|
/* Generate random file */
|
||||||
|
data := make([]byte, 1024)
|
||||||
|
_, err := rand.Read(data)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
tmpFile, err := ioutil.TempFile(dstPath, "data-file-")
|
||||||
|
defer tmpFile.Close()
|
||||||
|
_, err = tmpFile.Write(data)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
//Setup git LFS
|
||||||
|
_, err = git.NewCommand("lfs").AddArguments("install").RunInDir(dstPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
_, err = git.NewCommand("lfs").AddArguments("track", "data-file-*").RunInDir(dstPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
//Commit
|
||||||
|
err = git.AddChanges(dstPath, false, ".gitattributes", filepath.Base(tmpFile.Name()))
|
||||||
|
assert.NoError(t, err)
|
||||||
|
err = git.CommitChanges(dstPath, git.CommitChangesOptions{
|
||||||
|
Committer: &git.Signature{
|
||||||
|
Email: "user2@example.com",
|
||||||
|
Name: "User Two",
|
||||||
|
When: time.Now(),
|
||||||
|
},
|
||||||
|
Author: &git.Signature{
|
||||||
|
Email: "user2@example.com",
|
||||||
|
Name: "User Two",
|
||||||
|
When: time.Now(),
|
||||||
|
},
|
||||||
|
Message: "Testing LFS ",
|
||||||
|
})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
//Push
|
||||||
|
u.User = url.UserPassword("user2", userPassword)
|
||||||
|
err = git.Push(dstPath, git.PushOptions{
|
||||||
|
Branch: "master",
|
||||||
|
Remote: u.String(),
|
||||||
|
Force: false,
|
||||||
|
})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
})
|
||||||
|
t.Run("Locks", func(t *testing.T) {
|
||||||
|
_, err = git.NewCommand("remote").AddArguments("set-url", "origin", u.String()).RunInDir(dstPath) //TODO add test ssh git-lfs-creds
|
||||||
|
assert.NoError(t, err)
|
||||||
|
_, err = git.NewCommand("lfs").AddArguments("locks").RunInDir(dstPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
_, err = git.NewCommand("lfs").AddArguments("lock", "README.md").RunInDir(dstPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
_, err = git.NewCommand("lfs").AddArguments("locks").RunInDir(dstPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
_, err = git.NewCommand("lfs").AddArguments("unlock", "README.md").RunInDir(dstPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
"$GITEA_ROOT/gitea" hook --config='integrations/app.ini' post-receive
|
"$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" post-receive
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
"$GITEA_ROOT/gitea" hook --config='integrations/app.ini' pre-receive
|
"$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" pre-receive
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
"$GITEA_ROOT/gitea" hook --config='integrations/app.ini' update $1 $2 $3
|
"$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" update $1 $2 $3
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
"$GITEA_ROOT/gitea" hook --config='integrations/app.ini' post-receive
|
"$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" post-receive
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
"$GITEA_ROOT/gitea" hook --config='integrations/app.ini' pre-receive
|
"$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" pre-receive
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
"$GITEA_ROOT/gitea" hook --config='integrations/app.ini' update $1 $2 $3
|
"$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" update $1 $2 $3
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
"$GITEA_ROOT/gitea" hook --config='integrations/app.ini' post-receive
|
"$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" post-receive
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
"$GITEA_ROOT/gitea" hook --config='integrations/app.ini' pre-receive
|
"$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" pre-receive
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
"$GITEA_ROOT/gitea" hook --config='integrations/app.ini' update $1 $2 $3
|
"$GITEA_ROOT/gitea" hook --config="$GITEA_ROOT/$GITEA_CONF" update $1 $2 $3
|
||||||
|
|
|
@ -36,7 +36,7 @@ func (l *LFSLock) AfterLoad() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func cleanPath(p string) string {
|
func cleanPath(p string) string {
|
||||||
return strings.ToLower(path.Clean(p))
|
return path.Clean(p)
|
||||||
}
|
}
|
||||||
|
|
||||||
// APIFormat convert a Release to lfs.LFSLock
|
// APIFormat convert a Release to lfs.LFSLock
|
||||||
|
@ -73,8 +73,8 @@ func CreateLFSLock(lock *LFSLock) (*LFSLock, error) {
|
||||||
// GetLFSLock returns release by given path.
|
// GetLFSLock returns release by given path.
|
||||||
func GetLFSLock(repoID int64, path string) (*LFSLock, error) {
|
func GetLFSLock(repoID int64, path string) (*LFSLock, error) {
|
||||||
path = cleanPath(path)
|
path = cleanPath(path)
|
||||||
rel := &LFSLock{RepoID: repoID, Path: path}
|
rel := &LFSLock{RepoID: repoID}
|
||||||
has, err := x.Get(rel)
|
has, err := x.Where("lower(path) = ?", strings.ToLower(path)).Get(rel)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,12 +68,12 @@ type ObjectError struct {
|
||||||
|
|
||||||
// ObjectLink builds a URL linking to the object.
|
// ObjectLink builds a URL linking to the object.
|
||||||
func (v *RequestVars) ObjectLink() string {
|
func (v *RequestVars) ObjectLink() string {
|
||||||
return setting.AppURL + path.Join(v.User, v.Repo, "info/lfs/objects", v.Oid)
|
return setting.AppURL + path.Join(v.User, v.Repo+".git", "info/lfs/objects", v.Oid)
|
||||||
}
|
}
|
||||||
|
|
||||||
// VerifyLink builds a URL for verifying the object.
|
// VerifyLink builds a URL for verifying the object.
|
||||||
func (v *RequestVars) VerifyLink() string {
|
func (v *RequestVars) VerifyLink() string {
|
||||||
return setting.AppURL + path.Join(v.User, v.Repo, "info/lfs/verify")
|
return setting.AppURL + path.Join(v.User, v.Repo+".git", "info/lfs/verify")
|
||||||
}
|
}
|
||||||
|
|
||||||
// link provides a structure used to build a hypermedia representation of an HTTP link.
|
// link provides a structure used to build a hypermedia representation of an HTTP link.
|
||||||
|
|
|
@ -179,7 +179,7 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st
|
||||||
ctx.Data["IsLFSFile"] = true
|
ctx.Data["IsLFSFile"] = true
|
||||||
ctx.Data["FileSize"] = size
|
ctx.Data["FileSize"] = size
|
||||||
filenameBase64 := base64.RawURLEncoding.EncodeToString([]byte(blob.Name()))
|
filenameBase64 := base64.RawURLEncoding.EncodeToString([]byte(blob.Name()))
|
||||||
ctx.Data["RawFileLink"] = fmt.Sprintf("%s%s/info/lfs/objects/%s/%s", setting.AppURL, ctx.Repo.Repository.FullName(), oid, filenameBase64)
|
ctx.Data["RawFileLink"] = fmt.Sprintf("%s%s.git/info/lfs/objects/%s/%s", setting.AppURL, ctx.Repo.Repository.FullName(), oid, filenameBase64)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue