internal/resources/providers/awslib/configservice/mock_client.go (140 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 configservice import ( context "context" serviceconfigservice "github.com/aws/aws-sdk-go-v2/service/configservice" 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} } // DescribeConfigurationRecorderStatus provides a mock function with given fields: ctx, params, optFns func (_m *MockClient) DescribeConfigurationRecorderStatus(ctx context.Context, params *serviceconfigservice.DescribeConfigurationRecorderStatusInput, optFns ...func(*serviceconfigservice.Options)) (*serviceconfigservice.DescribeConfigurationRecorderStatusOutput, 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 DescribeConfigurationRecorderStatus") } var r0 *serviceconfigservice.DescribeConfigurationRecorderStatusOutput var r1 error if rf, ok := ret.Get(0).(func(context.Context, *serviceconfigservice.DescribeConfigurationRecorderStatusInput, ...func(*serviceconfigservice.Options)) (*serviceconfigservice.DescribeConfigurationRecorderStatusOutput, error)); ok { return rf(ctx, params, optFns...) } if rf, ok := ret.Get(0).(func(context.Context, *serviceconfigservice.DescribeConfigurationRecorderStatusInput, ...func(*serviceconfigservice.Options)) *serviceconfigservice.DescribeConfigurationRecorderStatusOutput); ok { r0 = rf(ctx, params, optFns...) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*serviceconfigservice.DescribeConfigurationRecorderStatusOutput) } } if rf, ok := ret.Get(1).(func(context.Context, *serviceconfigservice.DescribeConfigurationRecorderStatusInput, ...func(*serviceconfigservice.Options)) error); ok { r1 = rf(ctx, params, optFns...) } else { r1 = ret.Error(1) } return r0, r1 } // MockClient_DescribeConfigurationRecorderStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DescribeConfigurationRecorderStatus' type MockClient_DescribeConfigurationRecorderStatus_Call struct { *mock.Call } // DescribeConfigurationRecorderStatus is a helper method to define mock.On call // - ctx context.Context // - params *serviceconfigservice.DescribeConfigurationRecorderStatusInput // - optFns ...func(*serviceconfigservice.Options) func (_e *MockClient_Expecter) DescribeConfigurationRecorderStatus(ctx interface{}, params interface{}, optFns ...interface{}) *MockClient_DescribeConfigurationRecorderStatus_Call { return &MockClient_DescribeConfigurationRecorderStatus_Call{Call: _e.mock.On("DescribeConfigurationRecorderStatus", append([]interface{}{ctx, params}, optFns...)...)} } func (_c *MockClient_DescribeConfigurationRecorderStatus_Call) Run(run func(ctx context.Context, params *serviceconfigservice.DescribeConfigurationRecorderStatusInput, optFns ...func(*serviceconfigservice.Options))) *MockClient_DescribeConfigurationRecorderStatus_Call { _c.Call.Run(func(args mock.Arguments) { variadicArgs := make([]func(*serviceconfigservice.Options), len(args)-2) for i, a := range args[2:] { if a != nil { variadicArgs[i] = a.(func(*serviceconfigservice.Options)) } } run(args[0].(context.Context), args[1].(*serviceconfigservice.DescribeConfigurationRecorderStatusInput), variadicArgs...) }) return _c } func (_c *MockClient_DescribeConfigurationRecorderStatus_Call) Return(_a0 *serviceconfigservice.DescribeConfigurationRecorderStatusOutput, _a1 error) *MockClient_DescribeConfigurationRecorderStatus_Call { _c.Call.Return(_a0, _a1) return _c } func (_c *MockClient_DescribeConfigurationRecorderStatus_Call) RunAndReturn(run func(context.Context, *serviceconfigservice.DescribeConfigurationRecorderStatusInput, ...func(*serviceconfigservice.Options)) (*serviceconfigservice.DescribeConfigurationRecorderStatusOutput, error)) *MockClient_DescribeConfigurationRecorderStatus_Call { _c.Call.Return(run) return _c } // DescribeConfigurationRecorders provides a mock function with given fields: ctx, params, optFns func (_m *MockClient) DescribeConfigurationRecorders(ctx context.Context, params *serviceconfigservice.DescribeConfigurationRecordersInput, optFns ...func(*serviceconfigservice.Options)) (*serviceconfigservice.DescribeConfigurationRecordersOutput, 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 DescribeConfigurationRecorders") } var r0 *serviceconfigservice.DescribeConfigurationRecordersOutput var r1 error if rf, ok := ret.Get(0).(func(context.Context, *serviceconfigservice.DescribeConfigurationRecordersInput, ...func(*serviceconfigservice.Options)) (*serviceconfigservice.DescribeConfigurationRecordersOutput, error)); ok { return rf(ctx, params, optFns...) } if rf, ok := ret.Get(0).(func(context.Context, *serviceconfigservice.DescribeConfigurationRecordersInput, ...func(*serviceconfigservice.Options)) *serviceconfigservice.DescribeConfigurationRecordersOutput); ok { r0 = rf(ctx, params, optFns...) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*serviceconfigservice.DescribeConfigurationRecordersOutput) } } if rf, ok := ret.Get(1).(func(context.Context, *serviceconfigservice.DescribeConfigurationRecordersInput, ...func(*serviceconfigservice.Options)) error); ok { r1 = rf(ctx, params, optFns...) } else { r1 = ret.Error(1) } return r0, r1 } // MockClient_DescribeConfigurationRecorders_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DescribeConfigurationRecorders' type MockClient_DescribeConfigurationRecorders_Call struct { *mock.Call } // DescribeConfigurationRecorders is a helper method to define mock.On call // - ctx context.Context // - params *serviceconfigservice.DescribeConfigurationRecordersInput // - optFns ...func(*serviceconfigservice.Options) func (_e *MockClient_Expecter) DescribeConfigurationRecorders(ctx interface{}, params interface{}, optFns ...interface{}) *MockClient_DescribeConfigurationRecorders_Call { return &MockClient_DescribeConfigurationRecorders_Call{Call: _e.mock.On("DescribeConfigurationRecorders", append([]interface{}{ctx, params}, optFns...)...)} } func (_c *MockClient_DescribeConfigurationRecorders_Call) Run(run func(ctx context.Context, params *serviceconfigservice.DescribeConfigurationRecordersInput, optFns ...func(*serviceconfigservice.Options))) *MockClient_DescribeConfigurationRecorders_Call { _c.Call.Run(func(args mock.Arguments) { variadicArgs := make([]func(*serviceconfigservice.Options), len(args)-2) for i, a := range args[2:] { if a != nil { variadicArgs[i] = a.(func(*serviceconfigservice.Options)) } } run(args[0].(context.Context), args[1].(*serviceconfigservice.DescribeConfigurationRecordersInput), variadicArgs...) }) return _c } func (_c *MockClient_DescribeConfigurationRecorders_Call) Return(_a0 *serviceconfigservice.DescribeConfigurationRecordersOutput, _a1 error) *MockClient_DescribeConfigurationRecorders_Call { _c.Call.Return(_a0, _a1) return _c } func (_c *MockClient_DescribeConfigurationRecorders_Call) RunAndReturn(run func(context.Context, *serviceconfigservice.DescribeConfigurationRecordersInput, ...func(*serviceconfigservice.Options)) (*serviceconfigservice.DescribeConfigurationRecordersOutput, error)) *MockClient_DescribeConfigurationRecorders_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 }