Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-06-17 13:32:08 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-06-20 17:13:43 +0300
commit6108cf3521b36d440e90e68b7d50dd46baf1b676 (patch)
tree683e16eafd1ddb8327d7e9366d8b22d8b2e0bf2e
parentda5c4f09dd1ed2a563e79318abce593065800a3a (diff)
smarthttp: Adjust test names for PostReceivePack tests
Adjust test names for PostReceivePack tests to match our best practices.
-rw-r--r--internal/gitaly/service/smarthttp/receive_pack_test.go22
1 files changed, 11 insertions, 11 deletions
diff --git a/internal/gitaly/service/smarthttp/receive_pack_test.go b/internal/gitaly/service/smarthttp/receive_pack_test.go
index 38f315ae3..6da3cc659 100644
--- a/internal/gitaly/service/smarthttp/receive_pack_test.go
+++ b/internal/gitaly/service/smarthttp/receive_pack_test.go
@@ -37,7 +37,7 @@ const (
uploadPackCapabilities = "report-status side-band-64k agent=git/2.12.0"
)
-func TestSuccessfulReceivePackRequest(t *testing.T) {
+func TestPostReceivePack_successful(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -117,7 +117,7 @@ func TestSuccessfulReceivePackRequest(t *testing.T) {
}, payload)
}
-func TestReceivePackHiddenRefs(t *testing.T) {
+func TestPostReceivePack_hiddenRefs(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -173,7 +173,7 @@ func TestReceivePackHiddenRefs(t *testing.T) {
}
}
-func TestSuccessfulReceivePackRequestWithGitProtocol(t *testing.T) {
+func TestPostReceivePack_protocolV2(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -213,7 +213,7 @@ func TestSuccessfulReceivePackRequestWithGitProtocol(t *testing.T) {
gittest.Exec(t, cfg, "-C", repoPath, "show", newCommitID.String())
}
-func TestFailedReceivePackRequestWithGitOpts(t *testing.T) {
+func TestPostReceivePack_rejectViaGitConfigOptions(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -243,7 +243,7 @@ func TestFailedReceivePackRequestWithGitOpts(t *testing.T) {
require.Equal(t, expectedResponse, response)
}
-func TestFailedReceivePackRequestDueToHooksFailure(t *testing.T) {
+func TestPostReceivePack_rejectViaHooks(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -328,7 +328,7 @@ func createPushRequest(t *testing.T, cfg config.Cfg) (git.ObjectID, git.ObjectID
return oldCommitID, newCommitID, &request
}
-func TestFailedReceivePackRequestDueToValidationError(t *testing.T) {
+func TestPostReceivePack_requestValidation(t *testing.T) {
t.Parallel()
cfg := testcfg.Build(t)
@@ -550,7 +550,7 @@ func TestPostReceivePack_invalidObjects(t *testing.T) {
}
}
-func TestReceivePackFsck(t *testing.T) {
+func TestPostReceivePack_fsck(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -607,7 +607,7 @@ func drainPostReceivePackResponse(stream gitalypb.SmartHTTPService_PostReceivePa
return err
}
-func TestPostReceivePackToHooks(t *testing.T) {
+func TestPostReceivePack_hooks(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -669,7 +669,7 @@ func TestPostReceivePackToHooks(t *testing.T) {
require.Equal(t, io.EOF, drainPostReceivePackResponse(stream))
}
-func TestPostReceiveWithTransactionsViaPraefect(t *testing.T) {
+func TestPostReceivePack_transactionsViaPraefect(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -732,7 +732,7 @@ func (t *testTransactionServer) VoteTransaction(ctx context.Context, in *gitalyp
}, nil
}
-func TestPostReceiveWithReferenceTransactionHook(t *testing.T) {
+func TestPostReceivePack_referenceTransactionHook(t *testing.T) {
t.Parallel()
ctx := testhelper.Context(t)
@@ -812,7 +812,7 @@ func TestPostReceiveWithReferenceTransactionHook(t *testing.T) {
})
}
-func TestPostReceive_allRejected(t *testing.T) {
+func TestPostReceivePack_notAllowed(t *testing.T) {
t.Parallel()
cfg := testcfg.Build(t)