This repository has been archived on 2024-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
2018-09-18 18:07:40 +02:00
|
|
|
package reach
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2018-09-19 13:00:08 +02:00
|
|
|
func TestClientTestResults(t *testing.T) {
|
2018-09-18 18:07:40 +02:00
|
|
|
|
2018-09-19 17:13:45 +02:00
|
|
|
if !*runUpdaterIntegrationTests {
|
2018-09-19 17:24:17 +02:00
|
|
|
t.Skip("To run this test, use: go test -updater-integration")
|
2018-09-19 15:29:44 +02:00
|
|
|
}
|
|
|
|
|
2018-09-19 17:13:45 +02:00
|
|
|
client := NewUpdaterClient(
|
2018-09-18 18:07:40 +02:00
|
|
|
WithStandardLogger(),
|
2018-09-19 15:29:44 +02:00
|
|
|
WithEndpoint(*reachHost, 80),
|
2018-09-18 18:07:40 +02:00
|
|
|
)
|
|
|
|
if err := client.Connect(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
results, err := client.TestResults()
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if g, e := results.Device, "ReachRS"; g != e {
|
|
|
|
t.Errorf("results.Device: got '%s', expected '%s'", g, e)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer client.Close()
|
|
|
|
|
|
|
|
}
|