This repository has been archived on 2024-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
orion/reach/time_sync_test.go

32 lines
462 B
Go

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()
}