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:
authorSami Hiltunen <shiltunen@gitlab.com>2022-01-24 18:45:53 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2022-01-27 15:51:08 +0300
commit6c91c8e8b0917567fdcd6b14b075c8bdf20d2c5f (patch)
tree38f87248a6ee7993e137aa74580c3860558511a0 /internal/gitaly/hook/prereceive_test.go
parentb4a1fffaa707d5f0dc19af21f06947d0274db878 (diff)
Automatically clean up testhelper.Context
testhelper.Context() currently return a cancellation function as a second return value. Majority of the tests do not need to explicitly cancel the context but they simply defer its cancellation to clean up after the test. Given this, we can reduce the test verbosity and make testhelper.Context easier to compose by removing the unnecessary second return value. This adds a t.Cleanup function to automatically cancel the context at the end of the tests and omits the returned cancellation function. Tests which simply `defer cancel()` have had the extra call removed. Some tests explicitly call the cancellation, and these tests have been modified to add context.WithCancel around the testhelper.Context call. There are a few loctions where testing.TB was passed down to test helpers that create the context.
Diffstat (limited to 'internal/gitaly/hook/prereceive_test.go')
-rw-r--r--internal/gitaly/hook/prereceive_test.go9
1 files changed, 3 insertions, 6 deletions
diff --git a/internal/gitaly/hook/prereceive_test.go b/internal/gitaly/hook/prereceive_test.go
index 14d39c9e8..a67a053c8 100644
--- a/internal/gitaly/hook/prereceive_test.go
+++ b/internal/gitaly/hook/prereceive_test.go
@@ -40,8 +40,7 @@ func TestPrereceive_customHooks(t *testing.T) {
Protocol: "web",
}
- ctx, cleanup := testhelper.Context()
- defer cleanup()
+ ctx := testhelper.Context(t)
payload, err := git.NewHooksPayload(cfg, repo, nil, receiveHooksPayload, git.PreReceiveHook, featureflag.RawFromContext(ctx)).Env()
require.NoError(t, err)
@@ -175,8 +174,7 @@ func TestPrereceive_customHooks(t *testing.T) {
}
func TestPrereceive_quarantine(t *testing.T) {
- ctx, cleanup := testhelper.Context()
- defer cleanup()
+ ctx := testhelper.Context(t)
cfg, repoProto, repoPath := testcfg.BuildWithRepo(t)
@@ -352,8 +350,7 @@ func TestPrereceive_gitlab(t *testing.T) {
for _, tc := range testCases {
t.Run(tc.desc, func(t *testing.T) {
- ctx, cleanup := testhelper.Context()
- defer cleanup()
+ ctx := testhelper.Context(t)
gitlabAPI := prereceiveAPIMock{
allowed: func(ctx context.Context, params gitlab.AllowedParams) (bool, string, error) {