orion/reach/update_test.go

29 lines
421 B
Go
Raw Normal View History

2018-09-19 16:30:37 +02:00
package reach
import (
"testing"
)
func TestClientOPKGUpdate(t *testing.T) {
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
}
client := NewUpdaterClient(
2018-09-19 16:30:37 +02:00
WithStandardLogger(),
WithEndpoint(*reachHost, 80),
)
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()
}