-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yegor Myskin
committed
Jun 3, 2019
1 parent
f1dd5ae
commit 236a4d2
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -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) | ||
} | ||
} |
This file contains 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