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-21 12:31:52 +02:00
|
|
|
package updater
|
2018-09-19 16:30:37 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2018-09-21 12:31:52 +02:00
|
|
|
|
|
|
|
"forge.cadoles.com/Pyxis/orion/emlid"
|
2018-09-19 16:30:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestClientOPKGUpdate(t *testing.T) {
|
|
|
|
|
2018-09-19 17:13:45 +02:00
|
|
|
if !*runUpdaterIntegrationTests {
|
2018-09-19 17:24:50 +02:00
|
|
|
t.Skip("To run this test, use: go test -updater-integration")
|
2018-09-19 16:30:37 +02:00
|
|
|
}
|
|
|
|
|
2018-09-21 12:31:52 +02:00
|
|
|
client := NewClient(
|
|
|
|
emlid.WithStandardLogger(),
|
|
|
|
emlid.WithEndpoint(*reachHost, 80),
|
2018-09-19 16:30:37 +02:00
|
|
|
)
|
|
|
|
if err := client.Connect(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2018-09-19 17:24:50 +02:00
|
|
|
_, err := client.Update()
|
2018-09-19 16:30:37 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer client.Close()
|
|
|
|
|
|
|
|
}
|