orion/emlid/updater/reachview_version_test.go

38 lines
665 B
Go
Raw Normal View History

package updater
2018-09-19 15:53:40 +02:00
import (
"context"
2018-09-19 15:53:40 +02:00
"testing"
"time"
"forge.cadoles.com/Pyxis/orion/emlid"
2018-09-19 15:53:40 +02:00
)
func TestClientReachViewVersion(t *testing.T) {
if !*runUpdaterIntegrationTests {
t.Skip("To run this test, use: go test -updater-integration")
2018-09-19 15:53:40 +02:00
}
client := NewClient(
emlid.WithStandardLogger(),
emlid.WithEndpoint(*reachHost, 80),
2018-09-19 15:53:40 +02:00
)
if err := client.Connect(); err != nil {
t.Fatal(err)
}
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
version, err := client.ReachViewVersion(ctx)
2018-09-19 15:53:40 +02:00
if err != nil {
t.Error(err)
}
if version == "" {
t.Error("version should not be empty")
}
defer client.Close()
}