Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
SouthboundInterface.go 2.90 KiB
// Code generated by mockery 2.7.5. DO NOT EDIT.

package mocks

import (
	gosdnsouthbound "code.fbi.h-da.de/danet/api/go/gosdn/southbound"
	gnmi "github.com/openconfig/gnmi/proto/gnmi"

	mock "github.com/stretchr/testify/mock"

	uuid "github.com/google/uuid"

	yang "github.com/openconfig/goyang/pkg/yang"

	ygot "github.com/openconfig/ygot/ygot"

	ytypes "github.com/openconfig/ygot/ytypes"
)

// SouthboundInterface is an autogenerated mock type for the SouthboundInterface type
type SouthboundInterface struct {
	mock.Mock
}

// ID provides a mock function with given fields:
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
}

// SbiIdentifier provides a mock function with given fields:
func (_m *SouthboundInterface) SbiIdentifier() 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
}
// 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...)
	} else {
		r0 = ret.Error(0)
	}

	return r0
}

// Type provides a mock function with given fields:
func (_m *SouthboundInterface) Type() gosdnsouthbound.Type {
	ret := _m.Called()

	var r0 gosdnsouthbound.Type
	if rf, ok := ret.Get(0).(func() gosdnsouthbound.Type); ok {
		r0 = rf()
	} else {
		r0 = ret.Get(0).(gosdnsouthbound.Type)
	}

	return r0
}

// Unmarshal provides a mock function with given fields: _a0, _a1, _a2, _a3
func (_m *SouthboundInterface) Unmarshal(_a0 []byte, _a1 []string, _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
	if rf, ok := ret.Get(0).(func([]byte, []string, ygot.ValidatedGoStruct, ...ytypes.UnmarshalOpt) error); ok {
		r0 = rf(_a0, _a1, _a2, _a3...)
	} else {
		r0 = ret.Error(0)
	}

	return r0
}