33 lines
486 B
Go
33 lines
486 B
Go
package reach
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestClientReachViewVersion(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)
|
|
}
|
|
|
|
version, err := client.ReachViewVersion()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if version == "" {
|
|
t.Error("version should not be empty")
|
|
}
|
|
|
|
defer client.Close()
|
|
|
|
}
|