Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-workhorse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-workhorse
Commits
40e73c60
Commit
40e73c60
authored
Oct 11, 2018
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Gitaly integration test
parent
3ab95e20
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
148 additions
and
0 deletions
+148
-0
.gitlab-ci.yml
.gitlab-ci.yml
+7
-0
gitaly_integration_test.go
gitaly_integration_test.go
+140
-0
internal/gitaly/gitaly.go
internal/gitaly/gitaly.go
+1
-0
No files found.
.gitlab-ci.yml
View file @
40e73c60
...
...
@@ -6,6 +6,13 @@ verify:
-
make verify
.test_template
:
&test_definition
services
:
-
name
:
registry.gitlab.com/gitlab-org/build/cng/gitaly:latest
# Disable the hooks so we don't have to stub the GitLab API
command
:
[
"
bash"
,
"
-c"
,
"
mkdir
/home/git/repositories
&&
rm
-rf
/srv/gitlab-shell/hooks/*
&&
exec
/scripts/process-wrapper"
]
alias
:
gitaly
variables
:
GITALY_ADDRESS
:
"
tcp://gitaly:8075"
script
:
-
apt update -qq && apt install -y unzip bzip2
-
go version
...
...
gitaly_integration_test.go
0 → 100644
View file @
40e73c60
// Tests in this file need access to a real Gitaly server to run. The address
// is supplied via the GITALY_ADDRESS environment variable
package
main
import
(
"context"
"fmt"
"os"
"os/exec"
"testing"
"github.com/stretchr/testify/require"
pb
"gitlab.com/gitlab-org/gitaly-proto/go"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab-workhorse/internal/gitaly"
)
var
(
gitalyAddress
string
)
func
init
()
{
gitalyAddress
=
os
.
Getenv
(
"GITALY_ADDRESS"
)
}
func
skipUnlessRealGitaly
(
t
*
testing
.
T
)
{
t
.
Log
(
gitalyAddress
)
if
gitalyAddress
!=
""
{
return
}
t
.
Skip
(
`Please set GITALY_ADDRESS="..." to run Gitaly integration tests`
)
}
func
realGitalyAuthResponse
(
apiResponse
*
api
.
Response
)
*
api
.
Response
{
apiResponse
.
GitalyServer
.
Address
=
gitalyAddress
return
apiResponse
}
func
realGitalyOkBody
(
t
*
testing
.
T
)
*
api
.
Response
{
return
realGitalyAuthResponse
(
gitOkBody
(
t
))
}
func
ensureGitalyRepository
(
t
*
testing
.
T
,
apiResponse
*
api
.
Response
)
error
{
namespace
,
err
:=
gitaly
.
NewNamespaceClient
(
apiResponse
.
GitalyServer
)
if
err
!=
nil
{
return
err
}
repository
,
err
:=
gitaly
.
NewRepositoryClient
(
apiResponse
.
GitalyServer
)
if
err
!=
nil
{
return
err
}
// Remove the repository if it already exists, for consistency
rmNsReq
:=
&
pb
.
RemoveNamespaceRequest
{
StorageName
:
apiResponse
.
Repository
.
StorageName
,
Name
:
apiResponse
.
Repository
.
RelativePath
,
}
_
,
err
=
namespace
.
RemoveNamespace
(
context
.
Background
(),
rmNsReq
)
if
err
!=
nil
{
return
err
}
createReq
:=
&
pb
.
CreateRepositoryFromURLRequest
{
Repository
:
&
apiResponse
.
Repository
,
Url
:
"https://gitlab.com/gitlab-org/gitlab-test.git"
,
}
_
,
err
=
repository
.
CreateRepositoryFromURL
(
context
.
Background
(),
createReq
)
return
err
}
func
TestAllowedClone
(
t
*
testing
.
T
)
{
skipUnlessRealGitaly
(
t
)
// Create the repository in the Gitaly server
apiResponse
:=
realGitalyOkBody
(
t
)
require
.
NoError
(
t
,
ensureGitalyRepository
(
t
,
apiResponse
))
// Prepare test server and backend
ts
:=
testAuthServer
(
nil
,
200
,
apiResponse
)
defer
ts
.
Close
()
ws
:=
startWorkhorseServer
(
ts
.
URL
)
defer
ws
.
Close
()
// Do the git clone
require
.
NoError
(
t
,
os
.
RemoveAll
(
scratchDir
))
cloneCmd
:=
exec
.
Command
(
"git"
,
"clone"
,
fmt
.
Sprintf
(
"%s/%s"
,
ws
.
URL
,
testRepo
),
checkoutDir
)
runOrFail
(
t
,
cloneCmd
)
// We may have cloned an 'empty' repository, 'git log' will fail in it
logCmd
:=
exec
.
Command
(
"git"
,
"log"
,
"-1"
,
"--oneline"
)
logCmd
.
Dir
=
checkoutDir
runOrFail
(
t
,
logCmd
)
}
func
TestAllowedShallowClone
(
t
*
testing
.
T
)
{
skipUnlessRealGitaly
(
t
)
// Create the repository in the Gitaly server
apiResponse
:=
realGitalyOkBody
(
t
)
require
.
NoError
(
t
,
ensureGitalyRepository
(
t
,
apiResponse
))
// Prepare test server and backend
ts
:=
testAuthServer
(
nil
,
200
,
apiResponse
)
defer
ts
.
Close
()
ws
:=
startWorkhorseServer
(
ts
.
URL
)
defer
ws
.
Close
()
// Shallow git clone (depth 1)
require
.
NoError
(
t
,
os
.
RemoveAll
(
scratchDir
))
cloneCmd
:=
exec
.
Command
(
"git"
,
"clone"
,
"--depth"
,
"1"
,
fmt
.
Sprintf
(
"%s/%s"
,
ws
.
URL
,
testRepo
),
checkoutDir
)
runOrFail
(
t
,
cloneCmd
)
// We may have cloned an 'empty' repository, 'git log' will fail in it
logCmd
:=
exec
.
Command
(
"git"
,
"log"
,
"-1"
,
"--oneline"
)
logCmd
.
Dir
=
checkoutDir
runOrFail
(
t
,
logCmd
)
}
func
TestAllowedPush
(
t
*
testing
.
T
)
{
skipUnlessRealGitaly
(
t
)
// Create the repository in the Gitaly server
apiResponse
:=
realGitalyOkBody
(
t
)
require
.
NoError
(
t
,
ensureGitalyRepository
(
t
,
apiResponse
))
// Prepare the test server and backend
ts
:=
testAuthServer
(
nil
,
200
,
realGitalyOkBody
(
t
))
defer
ts
.
Close
()
ws
:=
startWorkhorseServer
(
ts
.
URL
)
defer
ws
.
Close
()
// Perform the git push
pushCmd
:=
exec
.
Command
(
"git"
,
"push"
,
fmt
.
Sprintf
(
"%s/%s"
,
ws
.
URL
,
testRepo
),
fmt
.
Sprintf
(
"master:%s"
,
newBranch
()))
pushCmd
.
Dir
=
checkoutDir
runOrFail
(
t
,
pushCmd
)
}
internal/gitaly/gitaly.go
View file @
40e73c60
...
...
@@ -51,6 +51,7 @@ func NewRepositoryClient(server Server) (*RepositoryClient, error) {
return
&
RepositoryClient
{
grpcClient
},
nil
}
// NewNamespaceClient is only used by the Gitaly integration tests at present
func
NewNamespaceClient
(
server
Server
)
(
*
NamespaceClient
,
error
)
{
conn
,
err
:=
getOrCreateConnection
(
server
)
if
err
!=
nil
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment