Documentation ¶
Overview ¶
Package binding holds the Ondatra binding interface.
Index ¶
- func ATEAs(ate ATE, target any) error
- func DUTAs(dut DUT, target any) error
- type ATE
- type AbstractATE
- func (*AbstractATE) DialGNMI(context.Context, ...grpc.DialOption) (gpb.GNMIClient, error)
- func (*AbstractATE) DialIxNetwork(context.Context) (*IxNetwork, error)
- func (*AbstractATE) DialOTG(context.Context, ...grpc.DialOption) (gosnappi.GosnappiApi, error)
- func (a *AbstractATE) HardwareModel() string
- func (a *AbstractATE) Name() string
- func (a *AbstractATE) Ports() map[string]*Port
- func (a *AbstractATE) SoftwareVersion() string
- func (a *AbstractATE) String() string
- func (a *AbstractATE) Vendor() opb.Device_Vendor
- type AbstractCLIClient
- type AbstractCommandResult
- type AbstractConsoleClient
- type AbstractDUT
- func (*AbstractDUT) DialCLI(context.Context) (CLIClient, error)
- func (*AbstractDUT) DialConsole(context.Context) (ConsoleClient, error)
- func (*AbstractDUT) DialGNMI(ctx context.Context, opts ...grpc.DialOption) (gpb.GNMIClient, error)
- func (*AbstractDUT) DialGNOI(context.Context, ...grpc.DialOption) (gnoigo.Clients, error)
- func (*AbstractDUT) DialGNSI(context.Context, ...grpc.DialOption) (GNSIClients, error)
- func (*AbstractDUT) DialGRIBI(context.Context, ...grpc.DialOption) (grpb.GRIBIClient, error)
- func (*AbstractDUT) DialP4RT(context.Context, ...grpc.DialOption) (p4pb.P4RuntimeClient, error)
- func (d *AbstractDUT) HardwareModel() string
- func (d *AbstractDUT) Name() string
- func (d *AbstractDUT) Ports() map[string]*Port
- func (*AbstractDUT) PushConfig(ctx context.Context, config string, reset bool) error
- func (d *AbstractDUT) SoftwareVersion() string
- func (d *AbstractDUT) String() string
- func (d *AbstractDUT) Vendor() opb.Device_Vendor
- type AbstractGNSIClients
- type Binding
- type CLIClient
- type CommandResult
- type ConsoleClient
- type DUT
- type Device
- type Dims
- type GNSIClients
- type IxNetwork
- type Port
- type Reservation
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ATE ¶
type ATE interface { Device // DialIxNetwork creates a client connection to the ATE's IxNetwork endpoint. DialIxNetwork(context.Context) (*IxNetwork, error) // DialGNMI creates a client connection to the ATE's gNMI endpoint. // See the interface comment for proper handling of dial options. // This method must be implemented to receive gNMI from OTG but not from IxNetwork; // Implementing DialIxNetwork is sufficient for gNMI support for IxNetwork. DialGNMI(context.Context, ...grpc.DialOption) (gpb.GNMIClient, error) // DialOTG creates a client connection to the ATE's OTG endpoint. // See the interface comment for proper handling of dial options. DialOTG(context.Context, ...grpc.DialOption) (gosnappi.GosnappiApi, error) // contains filtered or unexported methods }
ATE is a reserved ATE.
All implementations of this interface must embed AbstractATE.
For methods that dial gRPC endpoints, implementations must use a default set of dial options necessary to reach the endpoint, so that the dial succeeds when no options are provided by the caller. When the caller does specify options, implementations are encouraged to append those options to the default set, so the call can both inherit and override the default behavior.
type AbstractATE ¶
type AbstractATE struct {
Dims *Dims
}
AbstractATE is implementation support for the ATE interface. All implementations of the ATE interface must embed this type.
func (*AbstractATE) DialGNMI ¶
func (*AbstractATE) DialGNMI(context.Context, ...grpc.DialOption) (gpb.GNMIClient, error)
DialGNMI returns an unimplemented error.
func (*AbstractATE) DialIxNetwork ¶
func (*AbstractATE) DialIxNetwork(context.Context) (*IxNetwork, error)
DialIxNetwork returns an unimplemented error.
func (*AbstractATE) DialOTG ¶
func (*AbstractATE) DialOTG(context.Context, ...grpc.DialOption) (gosnappi.GosnappiApi, error)
DialOTG returns an unimplemented error.
func (*AbstractATE) HardwareModel ¶
func (a *AbstractATE) HardwareModel() string
HardwareModel returns the hardware model of the ATE.
func (*AbstractATE) Ports ¶
func (a *AbstractATE) Ports() map[string]*Port
Ports returns the reserved ports on the ATE.
func (*AbstractATE) SoftwareVersion ¶
func (a *AbstractATE) SoftwareVersion() string
SoftwareVersion returns the software version of the ATE.
func (*AbstractATE) String ¶
func (a *AbstractATE) String() string
func (*AbstractATE) Vendor ¶
func (a *AbstractATE) Vendor() opb.Device_Vendor
Vendor returns the vendor of the ATE.
type AbstractCLIClient ¶ added in v0.2.8
type AbstractCLIClient struct{}
AbstractCLIClient is implementation support for the CLIClient interface.
func (*AbstractCLIClient) RunCommand ¶ added in v0.4.2
func (*AbstractCLIClient) RunCommand(ctx context.Context, cmd string) (CommandResult, error)
RunCommand returns an unimplemented error.
type AbstractCommandResult ¶ added in v0.4.2
type AbstractCommandResult struct{}
AbstractCommandResult is implementation support for the CommandResult interface.
func (*AbstractCommandResult) Error ¶ added in v0.4.2
func (*AbstractCommandResult) Error() string
Error logs a fatal unimplemented error.
func (*AbstractCommandResult) Output ¶ added in v0.4.2
func (*AbstractCommandResult) Output() string
Output logs a fatal unimplemented error.
type AbstractConsoleClient ¶ added in v0.2.8
type AbstractConsoleClient struct{}
AbstractConsoleClient is implementation support for the ConsoleClient interface.
func (*AbstractConsoleClient) Close ¶ added in v0.2.8
func (*AbstractConsoleClient) Close() error
Close returns an unimplemented error.
func (*AbstractConsoleClient) Stderr ¶ added in v0.2.8
func (*AbstractConsoleClient) Stderr() io.ReadCloser
Stderr logs a fatal unimplemented error.
func (*AbstractConsoleClient) Stdin ¶ added in v0.2.8
func (*AbstractConsoleClient) Stdin() io.WriteCloser
Stdin logs a fatal unimplemented error.
func (*AbstractConsoleClient) Stdout ¶ added in v0.2.8
func (*AbstractConsoleClient) Stdout() io.ReadCloser
Stdout logs a fatal unimplemented error.
type AbstractDUT ¶
type AbstractDUT struct {
*Dims
}
AbstractDUT is a reserved DUT. All implementations of the DUT interface must embed this type.
func (*AbstractDUT) DialCLI ¶
func (*AbstractDUT) DialCLI(context.Context) (CLIClient, error)
DialCLI returns an unimplemented error.
func (*AbstractDUT) DialConsole ¶
func (*AbstractDUT) DialConsole(context.Context) (ConsoleClient, error)
DialConsole returns an unimplemented error.
func (*AbstractDUT) DialGNMI ¶
func (*AbstractDUT) DialGNMI(ctx context.Context, opts ...grpc.DialOption) (gpb.GNMIClient, error)
DialGNMI returns an unimplemented error.
func (*AbstractDUT) DialGNOI ¶
func (*AbstractDUT) DialGNOI(context.Context, ...grpc.DialOption) (gnoigo.Clients, error)
DialGNOI returns an unimplemented error.
func (*AbstractDUT) DialGNSI ¶ added in v0.2.1
func (*AbstractDUT) DialGNSI(context.Context, ...grpc.DialOption) (GNSIClients, error)
DialGNSI returns an unimplemented error.
func (*AbstractDUT) DialGRIBI ¶
func (*AbstractDUT) DialGRIBI(context.Context, ...grpc.DialOption) (grpb.GRIBIClient, error)
DialGRIBI returns an unimplemented error.
func (*AbstractDUT) DialP4RT ¶
func (*AbstractDUT) DialP4RT(context.Context, ...grpc.DialOption) (p4pb.P4RuntimeClient, error)
DialP4RT returns an unimplemented error.
func (*AbstractDUT) HardwareModel ¶
func (d *AbstractDUT) HardwareModel() string
HardwareModel returns the hardware model of the DUT.
func (*AbstractDUT) Ports ¶
func (d *AbstractDUT) Ports() map[string]*Port
Ports returns the reserved ports on the DUT.
func (*AbstractDUT) PushConfig ¶
PushConfig returns an unimplemented error.
func (*AbstractDUT) SoftwareVersion ¶
func (d *AbstractDUT) SoftwareVersion() string
SoftwareVersion returns the software version of the DUT.
func (*AbstractDUT) String ¶
func (d *AbstractDUT) String() string
func (*AbstractDUT) Vendor ¶
func (d *AbstractDUT) Vendor() opb.Device_Vendor
Vendor returns the vendor of the DUT.
type AbstractGNSIClients ¶ added in v0.2.1
type AbstractGNSIClients struct{}
AbstractGNSIClients is implementation support for the GNSIClients interface.
func (*AbstractGNSIClients) Acctz ¶ added in v0.2.8
func (*AbstractGNSIClients) Acctz() acctzpb.AcctzClient
Acctz logs a fatal unimplemented error.
func (*AbstractGNSIClients) Authz ¶ added in v0.2.1
func (*AbstractGNSIClients) Authz() authzpb.AuthzClient
Authz logs a fatal unimplemented error.
func (*AbstractGNSIClients) Certz ¶ added in v0.2.1
func (*AbstractGNSIClients) Certz() certzpb.CertzClient
Certz logs a fatal unimplemented error.
func (*AbstractGNSIClients) Credentialz ¶ added in v0.2.1
func (*AbstractGNSIClients) Credentialz() credzpb.CredentialzClient
Credentialz logs a fatal unimplemented error.
func (*AbstractGNSIClients) Pathz ¶ added in v0.2.1
func (*AbstractGNSIClients) Pathz() pathzpb.PathzClient
Pathz logs a fatal unimplemented error.
type Binding ¶
type Binding interface { // Reserve reserves resources matching the criteria in the specified testbed. // The framework has already verified that the testbed is valid, and will // validate that the returned reservation matches the testbed criteria. // // The testbed resources must be reserved for the specified runTime, or // until Release is called. A runTime of zero means the caller requested an // unlimited runTime. The implementation is free to impose a maximum limit on // the runTime and return an error if it exceeds that limit. The framework has // already checked that the runTime is not negative. // // This method may block for up to the specified waitTime for all testbed // resources to become available. Given a zero waitTime, the implementation // must choose a reasonable duration. The framework has already checked that // the waitTime is not negative. // // The 'partial' map gives a partial mapping of device and port IDs in the // testbed to concrete names to constrain the topology that is reserved. // // Devices in the returned reservation should be initialized with a fixed // base configuration. Implementations are encouraged to make this base // configuration "minimal," meaning a configuration that ensures the device // is reachable and capable of being configured further, but little else, // so that tests make as few assumptions about the devices as possible. Reserve(ctx context.Context, tb *opb.Testbed, runTime, waitTime time.Duration, partial map[string]string) (*Reservation, error) // Release releases the reserved testbed. // It is not called if the reservation was fetched. Release(ctx context.Context) error // FetchReservation looks up and returns the pre-existing reservation with // the specified ID. FetchReservation(ctx context.Context, id string) (*Reservation, error) }
Binding is a strategy interface for Ondatra vendor implementations.
The framework enforces that at most testbed is reserved at a time, so implementations can assume that these methods are never called out of order, e.g. Release() is never be called without a prior Reserve().
type CLIClient ¶ added in v0.2.8
type CLIClient interface { RunCommand(context.Context, string) (CommandResult, error) // contains filtered or unexported methods }
CLIClient provides the interface for sending CLI commands to the DUT. All implementations of this interface must embed AbstractCLIClient.
type CommandResult ¶ added in v0.4.2
type CommandResult interface { // Output returns the output of the command. // The return value may be non-empty even when the command fails. Output() string // Error returns an error message that occurred when running the command. // The return value is the empty string if and only if the command succeeds. Error() string // contains filtered or unexported methods }
CommandResult provides the interface for the result of a CLI command. All implementations of this interface must embed AbstractCommandResult.
type ConsoleClient ¶ added in v0.2.8
type ConsoleClient interface { Stdin() io.WriteCloser Stdout() io.ReadCloser Stderr() io.ReadCloser Close() error // contains filtered or unexported methods }
ConsoleClient provides the interface for console access to the DUT. All implementations of this interface must embed AbstractConsoleClient.
type DUT ¶
type DUT interface { Device // PushConfig adds config to the device. If reset is true, the device // is reset to its base config before the specified config is added. // The following Go template functions are allowed in config: // - {{ port "<portID>" }}: replaced with the physical port name // - {{ secrets "<arg1>" "<arg2>" }}: left untouched, returned as-is PushConfig(ctx context.Context, config string, reset bool) error // DialCLI creates a client connection to the DUT's CLI endpoint. DialCLI(context.Context) (CLIClient, error) // DialConsole creates a client connection to the DUT's Console endpoint. DialConsole(context.Context) (ConsoleClient, error) // DialGNMI creates a client connection to the DUT's gNMI endpoint. // See the interface comment for proper handling of dial options. DialGNMI(context.Context, ...grpc.DialOption) (gpb.GNMIClient, error) // DialGNOI creates a client connection to the DUT's gNOI endpoint. // See the interface comment for proper handling of dial options. DialGNOI(context.Context, ...grpc.DialOption) (gnoigo.Clients, error) // DialGNSI creates a client connection to the DUT's gNSI endpoint. // See the interface comment for proper handling of dial options. DialGNSI(context.Context, ...grpc.DialOption) (GNSIClients, error) // DialGRIBI creates a client connection to the DUT's gRIBI endpoint. // See the interface comment for proper handling of dial options. DialGRIBI(context.Context, ...grpc.DialOption) (grpb.GRIBIClient, error) // DialP4RT creates a client connection to the DUT's P4RT endpoint. // See the interface comment for proper handling of dial options. DialP4RT(context.Context, ...grpc.DialOption) (p4pb.P4RuntimeClient, error) // contains filtered or unexported methods }
DUT is a reserved DUT.
All implementations of this interface must embed AbstractDUT.
For methods that dial gRPC endpoints, implementations must use a default set of dial options necessary to reach the endpoint, so that the dial succeeds when no options are provided by the caller. When the caller does specify options, implementations are encouraged to append those options to the default set, so the call can both inherit and override the default behavior.
type Device ¶
type Device interface { Name() string Vendor() opb.Device_Vendor HardwareModel() string SoftwareVersion() string Ports() map[string]*Port }
Device is a reserved DUT or ATE.
type Dims ¶
type Dims struct { Name string Vendor opb.Device_Vendor HardwareModel string SoftwareVersion string Ports map[string]*Port }
Dims contains the dimensions of reserved DUT or ATE.
type GNSIClients ¶ added in v0.2.1
type GNSIClients interface { Authz() authzpb.AuthzClient Pathz() pathzpb.PathzClient Certz() certzpb.CertzClient Credentialz() credzpb.CredentialzClient Acctz() acctzpb.AcctzClient // contains filtered or unexported methods }
GNSIClients stores APIs to GNSI services. All implementations of this interface must embed AbstractGNSIClients.
type IxNetwork ¶
type IxNetwork struct { // Session is an IxNetwork session for an ATE. Session *ixweb.Session // ChassisHost is an optional hostname or IP address to use when assigning // Ixia VPorts. If empty, defaults to the name of the reserved ATE. ChassisHost string // SyslogHost is an optional hostname or IP address to which IxNetwork should // stream logs. If empty, syslog streaming is not enabled. SyslogHost string }
IxNetwork provides information for an IxNetwork session.
Directories ¶
Path | Synopsis |
---|---|
Package grpcutil contains gRPC utilities useful to binding implementations.
|
Package grpcutil contains gRPC utilities useful to binding implementations. |
testservice
Package testservice provides an interface for testing with the Test service.
|
Package testservice provides an interface for testing with the Test service. |
Package introspect provides an API to introspect grpc binding connections.
|
Package introspect provides an API to introspect grpc binding connections. |
Package ixweb provides a connection to the Ixia Web Platform.
|
Package ixweb provides a connection to the Ixia Web Platform. |
Package portgraph searches for a graph that satisfies a set of constraints.
|
Package portgraph searches for a graph that satisfies a set of constraints. |