summaryrefslogtreecommitdiff
path: root/util/fasttime_test.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2019-01-05 13:35:58 +0300
committerWolfy-J <[email protected]>2019-01-05 13:35:58 +0300
commit04f7ac73c477938b7390ec6ec101d0e4bcc8cd80 (patch)
tree361c8cd8a00824d0b2e5003c6a5978f630c20469 /util/fasttime_test.go
parent46009112a783a1fdae95e0a061d4c8c41a1c8ff1 (diff)
second set of patches
Diffstat (limited to 'util/fasttime_test.go')
-rw-r--r--util/fasttime_test.go46
1 files changed, 46 insertions, 0 deletions
diff --git a/util/fasttime_test.go b/util/fasttime_test.go
index c7d86821..c8ff0e13 100644
--- a/util/fasttime_test.go
+++ b/util/fasttime_test.go
@@ -1 +1,47 @@
package util
+
+import (
+ "github.com/stretchr/testify/assert"
+ "testing"
+ "time"
+)
+
+func TestFTime_UnixNano(t *testing.T) {
+ ft := NewFastTime(time.Millisecond)
+ defer ft.Stop()
+
+ var d int64
+
+ d = time.Now().UnixNano() - ft.UnixNano()
+
+ assert.True(t, d >= 0)
+ assert.True(t, d <= int64(time.Millisecond*2))
+
+ time.Sleep(time.Millisecond * 100)
+ d = time.Now().UnixNano() - ft.UnixNano()
+
+ assert.True(t, d >= 0)
+ assert.True(t, d <= int64(time.Millisecond*2))
+}
+
+func Benchmark_FastTime(b *testing.B) {
+ ft := NewFastTime(time.Microsecond)
+ defer ft.Stop()
+
+ b.ReportAllocs()
+
+ for n := 0; n < b.N; n++ {
+ _ = ft.UnixNano()
+ }
+}
+
+func Benchmark_Time(b *testing.B) {
+ ft := NewFastTime(time.Microsecond)
+ defer ft.Stop()
+
+ b.ReportAllocs()
+
+ for n := 0; n < b.N; n++ {
+ _ = time.Now().UnixNano()
+ }
+}