22 lines
349 B
Go
22 lines
349 B
Go
|
|
package crypto
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"github.com/stretchr/testify/assert"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestTime(t *testing.T) {
|
||
|
|
UpdateTime(1571072494)
|
||
|
|
time.Sleep(1 * time.Second)
|
||
|
|
diff, err := getDiff()
|
||
|
|
|
||
|
|
if err != nil {
|
||
|
|
t.Fatal("Expected no error when calculating time difference, got:", err)
|
||
|
|
}
|
||
|
|
assert.Exactly(t, int64(1), diff)
|
||
|
|
|
||
|
|
UpdateTime(testTime)
|
||
|
|
}
|