// Code generated by mockery v2.47.0. DO NOT EDIT. package mocks import ( context "context" entities "dynatron.me/x/stillbox/pkg/rbac/entities" mock "github.com/stretchr/testify/mock" rbac "dynatron.me/x/stillbox/pkg/rbac" restrict "github.com/el-mike/restrict/v2" ) // RBAC is an autogenerated mock type for the RBAC type type RBAC struct { mock.Mock } type RBAC_Expecter struct { mock *mock.Mock } func (_m *RBAC) EXPECT() *RBAC_Expecter { return &RBAC_Expecter{mock: &_m.Mock} } // Check provides a mock function with given fields: ctx, res, opts func (_m *RBAC) Check(ctx context.Context, res restrict.Resource, opts ...rbac.CheckOption) (entities.Subject, error) { _va := make([]interface{}, len(opts)) for _i := range opts { _va[_i] = opts[_i] } var _ca []interface{} _ca = append(_ca, ctx, res) _ca = append(_ca, _va...) ret := _m.Called(_ca...) if len(ret) == 0 { panic("no return value specified for Check") } var r0 entities.Subject var r1 error if rf, ok := ret.Get(0).(func(context.Context, restrict.Resource, ...rbac.CheckOption) (entities.Subject, error)); ok { return rf(ctx, res, opts...) } if rf, ok := ret.Get(0).(func(context.Context, restrict.Resource, ...rbac.CheckOption) entities.Subject); ok { r0 = rf(ctx, res, opts...) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(entities.Subject) } } if rf, ok := ret.Get(1).(func(context.Context, restrict.Resource, ...rbac.CheckOption) error); ok { r1 = rf(ctx, res, opts...) } else { r1 = ret.Error(1) } return r0, r1 } // RBAC_Check_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Check' type RBAC_Check_Call struct { *mock.Call } // Check is a helper method to define mock.On call // - ctx context.Context // - res restrict.Resource // - opts ...rbac.CheckOption func (_e *RBAC_Expecter) Check(ctx interface{}, res interface{}, opts ...interface{}) *RBAC_Check_Call { return &RBAC_Check_Call{Call: _e.mock.On("Check", append([]interface{}{ctx, res}, opts...)...)} } func (_c *RBAC_Check_Call) Run(run func(ctx context.Context, res restrict.Resource, opts ...rbac.CheckOption)) *RBAC_Check_Call { _c.Call.Run(func(args mock.Arguments) { variadicArgs := make([]rbac.CheckOption, len(args)-2) for i, a := range args[2:] { if a != nil { variadicArgs[i] = a.(rbac.CheckOption) } } run(args[0].(context.Context), args[1].(restrict.Resource), variadicArgs...) }) return _c } func (_c *RBAC_Check_Call) Return(_a0 entities.Subject, _a1 error) *RBAC_Check_Call { _c.Call.Return(_a0, _a1) return _c } func (_c *RBAC_Check_Call) RunAndReturn(run func(context.Context, restrict.Resource, ...rbac.CheckOption) (entities.Subject, error)) *RBAC_Check_Call { _c.Call.Return(run) return _c } // NewRBAC creates a new instance of RBAC. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. // The first argument is typically a *testing.T value. func NewRBAC(t interface { mock.TestingT Cleanup(func()) }) *RBAC { mock := &RBAC{} mock.Mock.Test(t) t.Cleanup(func() { mock.AssertExpectations(t) }) return mock }