Timestamp chat messages.

This commit is contained in:
Juliusz Chroboczek
2020-09-30 00:33:23 +02:00
parent 480922268e
commit 3bd9a1db4e
6 changed files with 89 additions and 11 deletions
+22
View File
@@ -0,0 +1,22 @@
package rtpconn
import (
"testing"
"time"
)
func TestJSTime(t *testing.T) {
tm := time.Now()
js := toJSTime(tm)
tm2 := fromJSTime(js)
js2 := toJSTime(tm2)
if js != js2 {
t.Errorf("%v != %v", js, js2)
}
delta := tm.Sub(tm2)
if delta < -time.Millisecond/2 || delta > time.Millisecond/2 {
t.Errorf("Delta %v, %v, %v", delta, tm, tm2)
}
}