Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Yegor Myskin committed Jun 3, 2019
1 parent f1dd5ae commit 236a4d2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
27 changes: 27 additions & 0 deletions rate_limiter_channel_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// Copyright 2019 Yegor Myskin. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package tailor

import (
"testing"
"time"
)

func TestChannelBasedRateLimiterDisallow(t *testing.T) {
l := NewChannelBasedRateLimiter(30)
defer l.Close()

start := time.Now()
for i := 0; i < 100; i++ {
if !l.Allow() {
t.FailNow()
}
}
dur := time.Since(start)

if dur < 3333*time.Millisecond || dur > 3500*time.Millisecond {
t.Errorf("expected duration: ~3.33s, actual: %s", dur)
}
}
4 changes: 4 additions & 0 deletions seeker_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2019 Yegor Myskin. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package tailor

import (
Expand Down

0 comments on commit 236a4d2

Please sign in to comment.