Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
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-ce
Commits
c406e788
Commit
c406e788
authored
Aug 17, 2018
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor cleanup of gitaly test server
parent
ef80978f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
188 additions
and
181 deletions
+188
-181
internal/testhelper/gitaly.go
internal/testhelper/gitaly.go
+18
-181
internal/testhelper/gitaly_dummies.go
internal/testhelper/gitaly_dummies.go
+170
-0
No files found.
internal/testhelper/gitaly.go
View file @
c406e788
...
...
@@ -9,6 +9,7 @@ import (
"sync"
"github.com/golang/protobuf/jsonpb"
"github.com/golang/protobuf/proto"
log
"github.com/sirupsen/logrus"
pb
"gitlab.com/gitlab-org/gitaly-proto/go"
...
...
@@ -72,17 +73,7 @@ func (s *GitalyTestServer) InfoRefsUploadPack(in *pb.InfoRefsRequest, stream pb.
GitalyInfoRefsResponseMock
,
},
"
\0
00"
))
nSends
,
err
:=
sendBytes
(
data
,
100
,
func
(
p
[]
byte
)
error
{
return
stream
.
Send
(
&
pb
.
InfoRefsResponse
{
Data
:
p
})
})
if
err
!=
nil
{
return
err
}
if
nSends
<=
1
{
panic
(
"should have sent more than one message"
)
}
return
s
.
finalError
()
return
s
.
sendInfoRefs
(
stream
,
data
)
}
func
(
s
*
GitalyTestServer
)
InfoRefsReceivePack
(
in
*
pb
.
InfoRefsRequest
,
stream
pb
.
SmartHTTPService_InfoRefsReceivePackServer
)
error
{
...
...
@@ -95,8 +86,7 @@ func (s *GitalyTestServer) InfoRefsReceivePack(in *pb.InfoRefsRequest, stream pb
fmt
.
Printf
(
"Result: %+v
\n
"
,
in
)
marshaler
:=
&
jsonpb
.
Marshaler
{}
jsonString
,
err
:=
marshaler
.
MarshalToString
(
in
)
jsonString
,
err
:=
marshalJSON
(
in
)
if
err
!=
nil
{
return
err
}
...
...
@@ -107,6 +97,19 @@ func (s *GitalyTestServer) InfoRefsReceivePack(in *pb.InfoRefsRequest, stream pb
GitalyInfoRefsResponseMock
,
},
"
\0
00"
))
return
s
.
sendInfoRefs
(
stream
,
data
)
}
func
marshalJSON
(
msg
proto
.
Message
)
(
string
,
error
)
{
marshaler
:=
&
jsonpb
.
Marshaler
{}
return
marshaler
.
MarshalToString
(
msg
)
}
type
infoRefsSender
interface
{
Send
(
*
pb
.
InfoRefsResponse
)
error
}
func
(
s
*
GitalyTestServer
)
sendInfoRefs
(
stream
infoRefsSender
,
data
[]
byte
)
error
{
nSends
,
err
:=
sendBytes
(
data
,
100
,
func
(
p
[]
byte
)
error
{
return
stream
.
Send
(
&
pb
.
InfoRefsResponse
{
Data
:
p
})
})
...
...
@@ -134,8 +137,7 @@ func (s *GitalyTestServer) PostReceivePack(stream pb.SmartHTTPService_PostReceiv
return
err
}
marshaler
:=
&
jsonpb
.
Marshaler
{}
jsonString
,
err
:=
marshaler
.
MarshalToString
(
req
)
jsonString
,
err
:=
marshalJSON
(
req
)
if
err
!=
nil
{
return
err
}
...
...
@@ -180,8 +182,7 @@ func (s *GitalyTestServer) PostUploadPack(stream pb.SmartHTTPService_PostUploadP
return
err
}
marshaler
:=
&
jsonpb
.
Marshaler
{}
jsonString
,
err
:=
marshaler
.
MarshalToString
(
req
)
jsonString
,
err
:=
marshalJSON
(
req
)
if
err
!=
nil
{
return
err
}
...
...
@@ -333,170 +334,6 @@ func (s *GitalyTestServer) GetSnapshot(in *pb.GetSnapshotRequest, stream pb.Repo
return
s
.
finalError
()
}
func
(
s
*
GitalyTestServer
)
RepositoryExists
(
context
.
Context
,
*
pb
.
RepositoryExistsRequest
)
(
*
pb
.
RepositoryExistsResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
RepackIncremental
(
context
.
Context
,
*
pb
.
RepackIncrementalRequest
)
(
*
pb
.
RepackIncrementalResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
RepackFull
(
context
.
Context
,
*
pb
.
RepackFullRequest
)
(
*
pb
.
RepackFullResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
GarbageCollect
(
context
.
Context
,
*
pb
.
GarbageCollectRequest
)
(
*
pb
.
GarbageCollectResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
RepositorySize
(
context
.
Context
,
*
pb
.
RepositorySizeRequest
)
(
*
pb
.
RepositorySizeResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
ApplyGitattributes
(
context
.
Context
,
*
pb
.
ApplyGitattributesRequest
)
(
*
pb
.
ApplyGitattributesResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
FetchRemote
(
context
.
Context
,
*
pb
.
FetchRemoteRequest
)
(
*
pb
.
FetchRemoteResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
FetchSourceBranch
(
context
.
Context
,
*
pb
.
FetchSourceBranchRequest
)
(
*
pb
.
FetchSourceBranchResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CreateRepository
(
context
.
Context
,
*
pb
.
CreateRepositoryRequest
)
(
*
pb
.
CreateRepositoryResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
Exists
(
context
.
Context
,
*
pb
.
RepositoryExistsRequest
)
(
*
pb
.
RepositoryExistsResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
HasLocalBranches
(
ctx
context
.
Context
,
in
*
pb
.
HasLocalBranchesRequest
)
(
*
pb
.
HasLocalBranchesResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CommitDelta
(
in
*
pb
.
CommitDeltaRequest
,
stream
pb
.
DiffService_CommitDeltaServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CommitDiff
(
in
*
pb
.
CommitDiffRequest
,
stream
pb
.
DiffService_CommitDiffServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CommitPatch
(
in
*
pb
.
CommitPatchRequest
,
stream
pb
.
DiffService_CommitPatchServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
GetBlobs
(
in
*
pb
.
GetBlobsRequest
,
stream
pb
.
BlobService_GetBlobsServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
GetAllLFSPointers
(
*
pb
.
GetAllLFSPointersRequest
,
pb
.
BlobService_GetAllLFSPointersServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
GetLFSPointers
(
*
pb
.
GetLFSPointersRequest
,
pb
.
BlobService_GetLFSPointersServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
GetNewLFSPointers
(
*
pb
.
GetNewLFSPointersRequest
,
pb
.
BlobService_GetNewLFSPointersServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CreateFork
(
context
.
Context
,
*
pb
.
CreateForkRequest
)
(
*
pb
.
CreateForkResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CalculateChecksum
(
context
.
Context
,
*
pb
.
CalculateChecksumRequest
)
(
*
pb
.
CalculateChecksumResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CreateBundle
(
*
pb
.
CreateBundleRequest
,
pb
.
RepositoryService_CreateBundleServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CreateRepositoryFromBundle
(
pb
.
RepositoryService_CreateRepositoryFromBundleServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CreateRepositoryFromURL
(
context
.
Context
,
*
pb
.
CreateRepositoryFromURLRequest
)
(
*
pb
.
CreateRepositoryFromURLResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
FindLicense
(
context
.
Context
,
*
pb
.
FindLicenseRequest
)
(
*
pb
.
FindLicenseResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
FindMergeBase
(
context
.
Context
,
*
pb
.
FindMergeBaseRequest
)
(
*
pb
.
FindMergeBaseResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
Fsck
(
context
.
Context
,
*
pb
.
FsckRequest
)
(
*
pb
.
FsckResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
GetInfoAttributes
(
*
pb
.
GetInfoAttributesRequest
,
pb
.
RepositoryService_GetInfoAttributesServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
IsRebaseInProgress
(
context
.
Context
,
*
pb
.
IsRebaseInProgressRequest
)
(
*
pb
.
IsRebaseInProgressResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
IsSquashInProgress
(
context
.
Context
,
*
pb
.
IsSquashInProgressRequest
)
(
*
pb
.
IsSquashInProgressResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
WriteConfig
(
context
.
Context
,
*
pb
.
WriteConfigRequest
)
(
*
pb
.
WriteConfigResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
WriteRef
(
context
.
Context
,
*
pb
.
WriteRefRequest
)
(
*
pb
.
WriteRefResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
Cleanup
(
context
.
Context
,
*
pb
.
CleanupRequest
)
(
*
pb
.
CleanupResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CreateRepositoryFromSnapshot
(
context
.
Context
,
*
pb
.
CreateRepositoryFromSnapshotRequest
)
(
*
pb
.
CreateRepositoryFromSnapshotResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
BackupCustomHooks
(
*
pb
.
BackupCustomHooksRequest
,
pb
.
RepositoryService_BackupCustomHooksServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
DeleteConfig
(
context
.
Context
,
*
pb
.
DeleteConfigRequest
)
(
*
pb
.
DeleteConfigResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
GetRawChanges
(
*
pb
.
GetRawChangesRequest
,
pb
.
RepositoryService_GetRawChangesServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
RestoreCustomHooks
(
pb
.
RepositoryService_RestoreCustomHooksServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
SearchFilesByContent
(
*
pb
.
SearchFilesByContentRequest
,
pb
.
RepositoryService_SearchFilesByContentServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
SearchFilesByName
(
*
pb
.
SearchFilesByNameRequest
,
pb
.
RepositoryService_SearchFilesByNameServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
SetConfig
(
context
.
Context
,
*
pb
.
SetConfigRequest
)
(
*
pb
.
SetConfigResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
DiffStats
(
*
pb
.
DiffStatsRequest
,
pb
.
DiffService_DiffStatsServer
)
error
{
return
nil
}
// sendBytes returns the number of times the 'sender' function was called and an error.
func
sendBytes
(
data
[]
byte
,
chunkSize
int
,
sender
func
([]
byte
)
error
)
(
int
,
error
)
{
i
:=
0
...
...
internal/testhelper/gitaly_dummies.go
0 → 100644
View file @
c406e788
package
testhelper
import
(
pb
"gitlab.com/gitlab-org/gitaly-proto/go"
"golang.org/x/net/context"
)
func
(
s
*
GitalyTestServer
)
RepositoryExists
(
context
.
Context
,
*
pb
.
RepositoryExistsRequest
)
(
*
pb
.
RepositoryExistsResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
RepackIncremental
(
context
.
Context
,
*
pb
.
RepackIncrementalRequest
)
(
*
pb
.
RepackIncrementalResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
RepackFull
(
context
.
Context
,
*
pb
.
RepackFullRequest
)
(
*
pb
.
RepackFullResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
GarbageCollect
(
context
.
Context
,
*
pb
.
GarbageCollectRequest
)
(
*
pb
.
GarbageCollectResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
RepositorySize
(
context
.
Context
,
*
pb
.
RepositorySizeRequest
)
(
*
pb
.
RepositorySizeResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
ApplyGitattributes
(
context
.
Context
,
*
pb
.
ApplyGitattributesRequest
)
(
*
pb
.
ApplyGitattributesResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
FetchRemote
(
context
.
Context
,
*
pb
.
FetchRemoteRequest
)
(
*
pb
.
FetchRemoteResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
FetchSourceBranch
(
context
.
Context
,
*
pb
.
FetchSourceBranchRequest
)
(
*
pb
.
FetchSourceBranchResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CreateRepository
(
context
.
Context
,
*
pb
.
CreateRepositoryRequest
)
(
*
pb
.
CreateRepositoryResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
Exists
(
context
.
Context
,
*
pb
.
RepositoryExistsRequest
)
(
*
pb
.
RepositoryExistsResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
HasLocalBranches
(
ctx
context
.
Context
,
in
*
pb
.
HasLocalBranchesRequest
)
(
*
pb
.
HasLocalBranchesResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CommitDelta
(
in
*
pb
.
CommitDeltaRequest
,
stream
pb
.
DiffService_CommitDeltaServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CommitDiff
(
in
*
pb
.
CommitDiffRequest
,
stream
pb
.
DiffService_CommitDiffServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CommitPatch
(
in
*
pb
.
CommitPatchRequest
,
stream
pb
.
DiffService_CommitPatchServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
GetBlobs
(
in
*
pb
.
GetBlobsRequest
,
stream
pb
.
BlobService_GetBlobsServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
GetAllLFSPointers
(
*
pb
.
GetAllLFSPointersRequest
,
pb
.
BlobService_GetAllLFSPointersServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
GetLFSPointers
(
*
pb
.
GetLFSPointersRequest
,
pb
.
BlobService_GetLFSPointersServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
GetNewLFSPointers
(
*
pb
.
GetNewLFSPointersRequest
,
pb
.
BlobService_GetNewLFSPointersServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CreateFork
(
context
.
Context
,
*
pb
.
CreateForkRequest
)
(
*
pb
.
CreateForkResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CalculateChecksum
(
context
.
Context
,
*
pb
.
CalculateChecksumRequest
)
(
*
pb
.
CalculateChecksumResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CreateBundle
(
*
pb
.
CreateBundleRequest
,
pb
.
RepositoryService_CreateBundleServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CreateRepositoryFromBundle
(
pb
.
RepositoryService_CreateRepositoryFromBundleServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
CreateRepositoryFromURL
(
context
.
Context
,
*
pb
.
CreateRepositoryFromURLRequest
)
(
*
pb
.
CreateRepositoryFromURLResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
FindLicense
(
context
.
Context
,
*
pb
.
FindLicenseRequest
)
(
*
pb
.
FindLicenseResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
FindMergeBase
(
context
.
Context
,
*
pb
.
FindMergeBaseRequest
)
(
*
pb
.
FindMergeBaseResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
Fsck
(
context
.
Context
,
*
pb
.
FsckRequest
)
(
*
pb
.
FsckResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
GetInfoAttributes
(
*
pb
.
GetInfoAttributesRequest
,
pb
.
RepositoryService_GetInfoAttributesServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
IsRebaseInProgress
(
context
.
Context
,
*
pb
.
IsRebaseInProgressRequest
)
(
*
pb
.
IsRebaseInProgressResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
IsSquashInProgress
(
context
.
Context
,
*
pb
.
IsSquashInProgressRequest
)
(
*
pb
.
IsSquashInProgressResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
WriteConfig
(
context
.
Context
,
*
pb
.
WriteConfigRequest
)
(
*
pb
.
WriteConfigResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
WriteRef
(
context
.
Context
,
*
pb
.
WriteRefRequest
)
(
*
pb
.
WriteRefResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
Cleanup
(
context
.
Context
,
*
pb
.
CleanupRequest
)
(
*
pb
.
CleanupResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
CreateRepositoryFromSnapshot
(
context
.
Context
,
*
pb
.
CreateRepositoryFromSnapshotRequest
)
(
*
pb
.
CreateRepositoryFromSnapshotResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
BackupCustomHooks
(
*
pb
.
BackupCustomHooksRequest
,
pb
.
RepositoryService_BackupCustomHooksServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
DeleteConfig
(
context
.
Context
,
*
pb
.
DeleteConfigRequest
)
(
*
pb
.
DeleteConfigResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
GetRawChanges
(
*
pb
.
GetRawChangesRequest
,
pb
.
RepositoryService_GetRawChangesServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
RestoreCustomHooks
(
pb
.
RepositoryService_RestoreCustomHooksServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
SearchFilesByContent
(
*
pb
.
SearchFilesByContentRequest
,
pb
.
RepositoryService_SearchFilesByContentServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
SearchFilesByName
(
*
pb
.
SearchFilesByNameRequest
,
pb
.
RepositoryService_SearchFilesByNameServer
)
error
{
return
nil
}
func
(
s
*
GitalyTestServer
)
SetConfig
(
context
.
Context
,
*
pb
.
SetConfigRequest
)
(
*
pb
.
SetConfigResponse
,
error
)
{
return
nil
,
nil
}
func
(
s
*
GitalyTestServer
)
DiffStats
(
*
pb
.
DiffStatsRequest
,
pb
.
DiffService_DiffStatsServer
)
error
{
return
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