gnoigo is a go gNOI client library that provides convenience functions for
constructing and running gNOI operations.
To build and execute the gnoigo unit tests, run the following:
go build ./...
go test ./...
Following is an example of how to use gnoigo API for performing a Ping
Operation which is present in the System module.
-
Create the
gnoigoclients object.conn, err := grpc.DialContext(ctx, "host") if err != nil { return err } clients := gnoigo.NewClients(conn) -
Create the PingOperation object with inputs like source and destination.
pingOp := system.NewPingOperation().Destination("1.2.3.4").Source("5.6.7.8") -
Call the Execute operation to perform the Ping operation.
response, err := gnoigo.Execute(ctx, clients, pingOp)In this example
responsewill be of typePingResponse.