orion/reach/time_sync_test.go

32 lines
462 B
Go
Raw Normal View History

2018-09-19 15:35:56 +02:00
package reach
import (
"log"
"testing"
)
func TestClientTimeSync(t *testing.T) {
if !*runIntegrationTests {
t.Skip("To run this test, use: go test -integration")
}
client := NewClient(
WithStandardLogger(),
WithEndpoint(*reachHost, 80),
)
if err := client.Connect(); err != nil {
t.Fatal(err)
}
synced, err := client.TimeSyncStatus()
if err != nil {
t.Error(err)
}
log.Printf("time sync result: %v", synced)
defer client.Close()
}