Newer
Older
// Code generated by mockery v2.10.0. DO NOT EDIT.
gosdnsouthbound "code.fbi.h-da.de/danet/gosdn/api/go/gosdn/southbound"
yang "github.com/openconfig/goyang/pkg/yang"
ytypes "github.com/openconfig/ygot/ytypes"
)
// SouthboundInterface is an autogenerated mock type for the SouthboundInterface type
type SouthboundInterface struct {
mock.Mock
}
func (_m *SouthboundInterface) ID() uuid.UUID {
ret := _m.Called()
var r0 uuid.UUID
if rf, ok := ret.Get(0).(func() uuid.UUID); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(uuid.UUID)
}
}
return r0
}
// Name provides a mock function with given fields:
func (_m *SouthboundInterface) Name() string {
ret := _m.Called()
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// Schema provides a mock function with given fields:
func (_m *SouthboundInterface) Schema() *ytypes.Schema {
ret := _m.Called()
var r0 *ytypes.Schema
if rf, ok := ret.Get(0).(func() *ytypes.Schema); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*ytypes.Schema)
}
}
return r0
}
// SchemaTreeGzip provides a mock function with given fields:
func (_m *SouthboundInterface) SchemaTreeGzip() []byte {
ret := _m.Called()
var r0 []byte
if rf, ok := ret.Get(0).(func() []byte); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]byte)
}
}
return r0
}
// SetID provides a mock function with given fields: id
func (_m *SouthboundInterface) SetID(id uuid.UUID) {
_m.Called(id)
}
// SetNode provides a mock function with given fields: schema, root, path, val, opts
func (_m *SouthboundInterface) SetNode(schema *yang.Entry, root interface{}, path *gnmi.Path, val interface{}, opts ...ytypes.SetNodeOpt) error {
_va := make([]interface{}, len(opts))
for _i := range opts {
_va[_i] = opts[_i]
}
var _ca []interface{}
_ca = append(_ca, schema, root, path, val)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
var r0 error
if rf, ok := ret.Get(0).(func(*yang.Entry, interface{}, *gnmi.Path, interface{}, ...ytypes.SetNodeOpt) error); ok {
r0 = rf(schema, root, path, val, opts...)
// Type provides a mock function with given fields:
func (_m *SouthboundInterface) Type() gosdnsouthbound.Type {
var r0 gosdnsouthbound.Type
if rf, ok := ret.Get(0).(func() gosdnsouthbound.Type); ok {
// Unmarshal provides a mock function with given fields: _a0, _a1, _a2, _a3
Malte Bauch
committed
func (_m *SouthboundInterface) Unmarshal(_a0 []byte, _a1 *gnmi.Path, _a2 ygot.ValidatedGoStruct, _a3 ...ytypes.UnmarshalOpt) error {
_va := make([]interface{}, len(_a3))
for _i := range _a3 {
_va[_i] = _a3[_i]
}
var _ca []interface{}
_ca = append(_ca, _a0, _a1, _a2)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
var r0 error
Malte Bauch
committed
if rf, ok := ret.Get(0).(func([]byte, *gnmi.Path, ygot.ValidatedGoStruct, ...ytypes.UnmarshalOpt) error); ok {
r0 = rf(_a0, _a1, _a2, _a3...)
} else {
r0 = ret.Error(0)
}
return r0
}