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/cache
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/cache')
-rw-r--r--internal/cache/diskcache_test.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/internal/cache/diskcache_test.go b/internal/cache/diskcache_test.go
index d52dbbc7f..761d44859 100644
--- a/internal/cache/diskcache_test.go
+++ b/internal/cache/diskcache_test.go
@@ -56,9 +56,7 @@ func TestStreamDBNaiveKeyer(t *testing.T) {
req2 := &gitalypb.InfoRefsRequest{
Repository: repo2,
}
-
- ctx, cancel := testhelper.Context()
- defer cancel()
+ ctx := testhelper.Context(t)
ctx = testhelper.SetCtxGrpcMethod(ctx, "InfoRefsUploadPack")
t.Run("empty cache", func(t *testing.T) {
@@ -168,9 +166,7 @@ func TestLoserCount(t *testing.T) {
StorageName: "storage-1",
},
}
-
- ctx, cancel := testhelper.Context()
- defer cancel()
+ ctx := testhelper.Context(t)
ctx = testhelper.SetCtxGrpcMethod(ctx, "InfoRefsUploadPack")
leashes := []chan struct{}{make(chan struct{}), make(chan struct{}), make(chan struct{})}