orion/emlid/updater/reachview_version_test.go

35 lines
555 B
Go
Raw Normal View History

package updater
2018-09-19 15:53:40 +02:00
import (
"testing"
"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)
}
version, err := client.ReachViewVersion()
if err != nil {
t.Error(err)
}
if version == "" {
t.Error("version should not be empty")
}
defer client.Close()
}