orion/reach/reachview_version_test.go

33 lines
500 B
Go
Raw Normal View History

2018-09-19 15:53:40 +02:00
package reach
import (
"testing"
)
func TestClientReachViewVersion(t *testing.T) {
if !*runUpdaterIntegrationTests {
2018-09-19 15:53:40 +02:00
t.Skip("To run this test, use: go test -integration")
}
client := NewUpdaterClient(
2018-09-19 15:53:40 +02:00
WithStandardLogger(),
WithEndpoint(*reachHost, 80),
)
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()
}