32 lines
462 B
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()
|
||
|
|
||
|
}
|