Add TimeSyncStatus() API

This commit is contained in:
wpetit 2018-09-19 15:35:56 +02:00
parent 23aee0fb68
commit 1bf205347e
2 changed files with 78 additions and 0 deletions

47
reach/time_sync.go Normal file
View File

@ -0,0 +1,47 @@
package reach
import (
"sync"
"forge.cadoles.com/Pyxis/golang-socketio"
"github.com/pkg/errors"
)
const (
eventGetTimeSyncStatus = "get time sync status"
eventTimeSyncResults = "time sync status"
)
type timeSyncStatus struct {
Status bool `json:"status"`
}
// TimeSyncStatus returns the ReachRS module time sync status
func (c *Client) TimeSyncStatus() (bool, error) {
var err error
var synced bool
var wg sync.WaitGroup
wg.Add(1)
err = c.conn.On(eventTimeSyncResults, func(h *gosocketio.Channel, st *timeSyncStatus) {
synced = st.Status
c.conn.Off(eventTimeSyncResults)
wg.Done()
})
if err != nil {
return false, errors.Wrapf(err, "error while binding to '%s' event", eventTimeSyncResults)
}
c.logf("sending '%s' event", eventGetTimeSyncStatus)
if err = c.conn.Emit(eventGetTimeSyncStatus, nil); err != nil {
return false, errors.Wrapf(err, "error while emitting '%s' event", eventGetTimeSyncStatus)
}
c.logf("'%s' event sent", eventGetTimeSyncStatus)
wg.Wait()
return synced, err
}

31
reach/time_sync_test.go Normal file
View File

@ -0,0 +1,31 @@
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()
}