31 lines
468 B
Go
31 lines
468 B
Go
package updater
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forge.cadoles.com/Pyxis/orion/emlid"
|
|
)
|
|
|
|
func TestClientOPKGUpdate(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)
|
|
}
|
|
|
|
_, err := client.Update()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
defer client.Close()
|
|
|
|
}
|