- Notifications
You must be signed in to change notification settings - Fork1k
fix(coderd/provisionerdserver): fix test flake in TestHeartbeat#11808
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
4 commits Select commitHold shift + click to select a range
bb32c58
fix(coderd/provisionerdserver): fix test flake in TestHeartbeat
johnstcn6449c93
Revert "fix(coderd/provisionerdserver): fix test flake in TestHeartbeat"
johnstcn334a4a6
use testutil.RequireRecvCtx, rely on goleak for checking heartbeat go…
johnstcn7f42388
testutil ctx with timeout
johnstcnFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
29 changes: 9 additions & 20 deletionscoderd/provisionerdserver/provisionerdserver_test.go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -67,7 +67,7 @@ func testUserQuietHoursScheduleStore() *atomic.Pointer[schedule.UserQuietHoursSc | ||
func TestAcquireJob_LongPoll(t *testing.T) { | ||
t.Parallel() | ||
//nolint:dogsled | ||
srv, _, _, _ := setup(t, false, &overrides{acquireJobLongPollDuration: time.Microsecond}) | ||
job, err := srv.AcquireJob(context.Background(), nil) | ||
require.NoError(t, err) | ||
@@ -76,7 +76,7 @@ func TestAcquireJob_LongPoll(t *testing.T) { | ||
func TestAcquireJobWithCancel_Cancel(t *testing.T) { | ||
t.Parallel() | ||
//nolint:dogsled | ||
srv, _, _, _ := setup(t, false, nil) | ||
ctx, cancel := context.WithTimeout(context.Background(), testutil.WaitShort) | ||
defer cancel() | ||
@@ -101,8 +101,8 @@ func TestAcquireJobWithCancel_Cancel(t *testing.T) { | ||
func TestHeartbeat(t *testing.T) { | ||
t.Parallel() | ||
numBeats:=3 | ||
ctx := testutil.Context(t, testutil.WaitShort) | ||
heartbeatChan := make(chan struct{}) | ||
heartbeatFn := func(hbCtx context.Context) error { | ||
t.Logf("heartbeat") | ||
@@ -114,28 +114,17 @@ func TestHeartbeat(t *testing.T) { | ||
return nil | ||
} | ||
} | ||
//nolint:dogsled | ||
_, _, _, _ = setup(t, false, &overrides{ | ||
ctx: ctx, | ||
heartbeatFn: heartbeatFn, | ||
heartbeatInterval: testutil.IntervalFast, | ||
johnstcn marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
}) | ||
for i := 0; i < numBeats; i++ { | ||
testutil.RequireRecvCtx(ctx, t, heartbeatChan) | ||
johnstcn marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
} | ||
// goleak.VerifyTestMain ensures that the heartbeat goroutine does not leak | ||
} | ||
func TestAcquireJob(t *testing.T) { | ||
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.