internal/resources/providers/awslib/cloudtrail/mock_client.go (198 lines of code) (raw):
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
// Code generated by mockery v2.53.3. DO NOT EDIT.
package cloudtrail
import (
context "context"
servicecloudtrail "github.com/aws/aws-sdk-go-v2/service/cloudtrail"
mock "github.com/stretchr/testify/mock"
)
// MockClient is an autogenerated mock type for the Client type
type MockClient struct {
mock.Mock
}
type MockClient_Expecter struct {
mock *mock.Mock
}
func (_m *MockClient) EXPECT() *MockClient_Expecter {
return &MockClient_Expecter{mock: &_m.Mock}
}
// DescribeTrails provides a mock function with given fields: ctx, params, optFns
func (_m *MockClient) DescribeTrails(ctx context.Context, params *servicecloudtrail.DescribeTrailsInput, optFns ...func(*servicecloudtrail.Options)) (*servicecloudtrail.DescribeTrailsOutput, error) {
_va := make([]interface{}, len(optFns))
for _i := range optFns {
_va[_i] = optFns[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, params)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
if len(ret) == 0 {
panic("no return value specified for DescribeTrails")
}
var r0 *servicecloudtrail.DescribeTrailsOutput
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, *servicecloudtrail.DescribeTrailsInput, ...func(*servicecloudtrail.Options)) (*servicecloudtrail.DescribeTrailsOutput, error)); ok {
return rf(ctx, params, optFns...)
}
if rf, ok := ret.Get(0).(func(context.Context, *servicecloudtrail.DescribeTrailsInput, ...func(*servicecloudtrail.Options)) *servicecloudtrail.DescribeTrailsOutput); ok {
r0 = rf(ctx, params, optFns...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*servicecloudtrail.DescribeTrailsOutput)
}
}
if rf, ok := ret.Get(1).(func(context.Context, *servicecloudtrail.DescribeTrailsInput, ...func(*servicecloudtrail.Options)) error); ok {
r1 = rf(ctx, params, optFns...)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// MockClient_DescribeTrails_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DescribeTrails'
type MockClient_DescribeTrails_Call struct {
*mock.Call
}
// DescribeTrails is a helper method to define mock.On call
// - ctx context.Context
// - params *servicecloudtrail.DescribeTrailsInput
// - optFns ...func(*servicecloudtrail.Options)
func (_e *MockClient_Expecter) DescribeTrails(ctx interface{}, params interface{}, optFns ...interface{}) *MockClient_DescribeTrails_Call {
return &MockClient_DescribeTrails_Call{Call: _e.mock.On("DescribeTrails",
append([]interface{}{ctx, params}, optFns...)...)}
}
func (_c *MockClient_DescribeTrails_Call) Run(run func(ctx context.Context, params *servicecloudtrail.DescribeTrailsInput, optFns ...func(*servicecloudtrail.Options))) *MockClient_DescribeTrails_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]func(*servicecloudtrail.Options), len(args)-2)
for i, a := range args[2:] {
if a != nil {
variadicArgs[i] = a.(func(*servicecloudtrail.Options))
}
}
run(args[0].(context.Context), args[1].(*servicecloudtrail.DescribeTrailsInput), variadicArgs...)
})
return _c
}
func (_c *MockClient_DescribeTrails_Call) Return(_a0 *servicecloudtrail.DescribeTrailsOutput, _a1 error) *MockClient_DescribeTrails_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *MockClient_DescribeTrails_Call) RunAndReturn(run func(context.Context, *servicecloudtrail.DescribeTrailsInput, ...func(*servicecloudtrail.Options)) (*servicecloudtrail.DescribeTrailsOutput, error)) *MockClient_DescribeTrails_Call {
_c.Call.Return(run)
return _c
}
// GetEventSelectors provides a mock function with given fields: ctx, params, optFns
func (_m *MockClient) GetEventSelectors(ctx context.Context, params *servicecloudtrail.GetEventSelectorsInput, optFns ...func(*servicecloudtrail.Options)) (*servicecloudtrail.GetEventSelectorsOutput, error) {
_va := make([]interface{}, len(optFns))
for _i := range optFns {
_va[_i] = optFns[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, params)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
if len(ret) == 0 {
panic("no return value specified for GetEventSelectors")
}
var r0 *servicecloudtrail.GetEventSelectorsOutput
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, *servicecloudtrail.GetEventSelectorsInput, ...func(*servicecloudtrail.Options)) (*servicecloudtrail.GetEventSelectorsOutput, error)); ok {
return rf(ctx, params, optFns...)
}
if rf, ok := ret.Get(0).(func(context.Context, *servicecloudtrail.GetEventSelectorsInput, ...func(*servicecloudtrail.Options)) *servicecloudtrail.GetEventSelectorsOutput); ok {
r0 = rf(ctx, params, optFns...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*servicecloudtrail.GetEventSelectorsOutput)
}
}
if rf, ok := ret.Get(1).(func(context.Context, *servicecloudtrail.GetEventSelectorsInput, ...func(*servicecloudtrail.Options)) error); ok {
r1 = rf(ctx, params, optFns...)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// MockClient_GetEventSelectors_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetEventSelectors'
type MockClient_GetEventSelectors_Call struct {
*mock.Call
}
// GetEventSelectors is a helper method to define mock.On call
// - ctx context.Context
// - params *servicecloudtrail.GetEventSelectorsInput
// - optFns ...func(*servicecloudtrail.Options)
func (_e *MockClient_Expecter) GetEventSelectors(ctx interface{}, params interface{}, optFns ...interface{}) *MockClient_GetEventSelectors_Call {
return &MockClient_GetEventSelectors_Call{Call: _e.mock.On("GetEventSelectors",
append([]interface{}{ctx, params}, optFns...)...)}
}
func (_c *MockClient_GetEventSelectors_Call) Run(run func(ctx context.Context, params *servicecloudtrail.GetEventSelectorsInput, optFns ...func(*servicecloudtrail.Options))) *MockClient_GetEventSelectors_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]func(*servicecloudtrail.Options), len(args)-2)
for i, a := range args[2:] {
if a != nil {
variadicArgs[i] = a.(func(*servicecloudtrail.Options))
}
}
run(args[0].(context.Context), args[1].(*servicecloudtrail.GetEventSelectorsInput), variadicArgs...)
})
return _c
}
func (_c *MockClient_GetEventSelectors_Call) Return(_a0 *servicecloudtrail.GetEventSelectorsOutput, _a1 error) *MockClient_GetEventSelectors_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *MockClient_GetEventSelectors_Call) RunAndReturn(run func(context.Context, *servicecloudtrail.GetEventSelectorsInput, ...func(*servicecloudtrail.Options)) (*servicecloudtrail.GetEventSelectorsOutput, error)) *MockClient_GetEventSelectors_Call {
_c.Call.Return(run)
return _c
}
// GetTrailStatus provides a mock function with given fields: ctx, params, optFns
func (_m *MockClient) GetTrailStatus(ctx context.Context, params *servicecloudtrail.GetTrailStatusInput, optFns ...func(*servicecloudtrail.Options)) (*servicecloudtrail.GetTrailStatusOutput, error) {
_va := make([]interface{}, len(optFns))
for _i := range optFns {
_va[_i] = optFns[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, params)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
if len(ret) == 0 {
panic("no return value specified for GetTrailStatus")
}
var r0 *servicecloudtrail.GetTrailStatusOutput
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, *servicecloudtrail.GetTrailStatusInput, ...func(*servicecloudtrail.Options)) (*servicecloudtrail.GetTrailStatusOutput, error)); ok {
return rf(ctx, params, optFns...)
}
if rf, ok := ret.Get(0).(func(context.Context, *servicecloudtrail.GetTrailStatusInput, ...func(*servicecloudtrail.Options)) *servicecloudtrail.GetTrailStatusOutput); ok {
r0 = rf(ctx, params, optFns...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*servicecloudtrail.GetTrailStatusOutput)
}
}
if rf, ok := ret.Get(1).(func(context.Context, *servicecloudtrail.GetTrailStatusInput, ...func(*servicecloudtrail.Options)) error); ok {
r1 = rf(ctx, params, optFns...)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// MockClient_GetTrailStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetTrailStatus'
type MockClient_GetTrailStatus_Call struct {
*mock.Call
}
// GetTrailStatus is a helper method to define mock.On call
// - ctx context.Context
// - params *servicecloudtrail.GetTrailStatusInput
// - optFns ...func(*servicecloudtrail.Options)
func (_e *MockClient_Expecter) GetTrailStatus(ctx interface{}, params interface{}, optFns ...interface{}) *MockClient_GetTrailStatus_Call {
return &MockClient_GetTrailStatus_Call{Call: _e.mock.On("GetTrailStatus",
append([]interface{}{ctx, params}, optFns...)...)}
}
func (_c *MockClient_GetTrailStatus_Call) Run(run func(ctx context.Context, params *servicecloudtrail.GetTrailStatusInput, optFns ...func(*servicecloudtrail.Options))) *MockClient_GetTrailStatus_Call {
_c.Call.Run(func(args mock.Arguments) {
variadicArgs := make([]func(*servicecloudtrail.Options), len(args)-2)
for i, a := range args[2:] {
if a != nil {
variadicArgs[i] = a.(func(*servicecloudtrail.Options))
}
}
run(args[0].(context.Context), args[1].(*servicecloudtrail.GetTrailStatusInput), variadicArgs...)
})
return _c
}
func (_c *MockClient_GetTrailStatus_Call) Return(_a0 *servicecloudtrail.GetTrailStatusOutput, _a1 error) *MockClient_GetTrailStatus_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *MockClient_GetTrailStatus_Call) RunAndReturn(run func(context.Context, *servicecloudtrail.GetTrailStatusInput, ...func(*servicecloudtrail.Options)) (*servicecloudtrail.GetTrailStatusOutput, error)) *MockClient_GetTrailStatus_Call {
_c.Call.Return(run)
return _c
}
// NewMockClient creates a new instance of MockClient. 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 NewMockClient(t interface {
mock.TestingT
Cleanup(func())
}) *MockClient {
mock := &MockClient{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}