Commit 3df94c6f by Carl Bergquist Committed by GitHub

serverlock: run tests async should be more linear time wise (#17059)

parent 6c7224c7
...@@ -7,34 +7,29 @@ import ( ...@@ -7,34 +7,29 @@ import (
"testing" "testing"
"time" "time"
. "github.com/smartystreets/goconvey/convey" "github.com/stretchr/testify/assert"
) )
func TestServerLok(t *testing.T) { func TestServerLok(t *testing.T) {
sl := createTestableServerLock(t) sl := createTestableServerLock(t)
Convey("Server lock integration tests", t, func() {
counter := 0 counter := 0
var err error fn := func() { counter++ }
incCounter := func() { counter++ }
atInterval := time.Second * 1 atInterval := time.Second * 1
ctx := context.Background() ctx := context.Background()
//this time `fn` should be executed //this time `fn` should be executed
So(sl.LockAndExecute(ctx, "test-operation", atInterval, incCounter), ShouldBeNil) assert.Nil(t, sl.LockAndExecute(ctx, "test-operation", atInterval, fn))
//this should not execute `fn` //this should not execute `fn`
So(sl.LockAndExecute(ctx, "test-operation", atInterval, incCounter), ShouldBeNil) assert.Nil(t, sl.LockAndExecute(ctx, "test-operation", atInterval, fn))
So(sl.LockAndExecute(ctx, "test-operation", atInterval, incCounter), ShouldBeNil) assert.Nil(t, sl.LockAndExecute(ctx, "test-operation", atInterval, fn))
So(sl.LockAndExecute(ctx, "test-operation", atInterval, incCounter), ShouldBeNil)
So(sl.LockAndExecute(ctx, "test-operation", atInterval, incCounter), ShouldBeNil)
// wait 5 second. // wait 2 second.
<-time.After(atInterval * 2) <-time.After(time.Second * 2)
// now `fn` should be executed again // now `fn` should be executed again
err = sl.LockAndExecute(ctx, "test-operation", atInterval, incCounter) err := sl.LockAndExecute(ctx, "test-operation", atInterval, fn)
So(err, ShouldBeNil) assert.Nil(t, err)
So(counter, ShouldEqual, 2) assert.Equal(t, counter, 2)
})
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment