orion/emlid/reachview/configuration_test.go

42 lines
695 B
Go
Raw Normal View History

package reachview
2018-09-20 17:28:18 +02:00
import (
"testing"
"forge.cadoles.com/Pyxis/orion/emlid"
2018-09-21 15:39:21 +02:00
"github.com/davecgh/go-spew/spew"
2018-09-20 17:28:18 +02:00
)
func TestReachViewConfiguration(t *testing.T) {
if !*runReachViewIntegrationTests {
t.Skip("To run this test, use: go test -reachview-integration")
}
client := NewClient(
emlid.WithStandardLogger(),
emlid.WithEndpoint(*reachHost, 80),
2018-09-20 17:28:18 +02:00
)
if err := client.Connect(); err != nil {
t.Fatal(err)
}
config, err := client.Configuration()
if err != nil {
t.Error(err)
}
if config == nil {
t.Fatal("config should not be nil")
}
if config.RTKSettings == nil {
t.Fatal("config.RTKSettings should not be nil")
2018-09-20 17:28:18 +02:00
}
2018-09-21 15:39:21 +02:00
spew.Dump(config)
2018-09-20 17:28:18 +02:00
defer client.Close()
}