39 lines
703 B
Go
39 lines
703 B
Go
package updater
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"forge.cadoles.com/Pyxis/orion/emlid"
|
|
)
|
|
|
|
func TestClientTestResults(t *testing.T) {
|
|
|
|
if !*runUpdaterIntegrationTests {
|
|
t.Skip("To run this test, use: go test -updater-integration")
|
|
}
|
|
|
|
client := NewClient(
|
|
emlid.WithStandardLogger(),
|
|
emlid.WithEndpoint(*reachHost, 80),
|
|
)
|
|
if err := client.Connect(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer cancel()
|
|
results, err := client.TestResults(ctx)
|
|
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()
|
|
|
|
}
|