internal/resources/providers/awslib/kms/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 kms import ( context "context" servicekms "github.com/aws/aws-sdk-go-v2/service/kms" 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} } // DescribeKey provides a mock function with given fields: ctx, params, optFns func (_m *MockClient) DescribeKey(ctx context.Context, params *servicekms.DescribeKeyInput, optFns ...func(*servicekms.Options)) (*servicekms.DescribeKeyOutput, 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 DescribeKey") } var r0 *servicekms.DescribeKeyOutput var r1 error if rf, ok := ret.Get(0).(func(context.Context, *servicekms.DescribeKeyInput, ...func(*servicekms.Options)) (*servicekms.DescribeKeyOutput, error)); ok { return rf(ctx, params, optFns...) } if rf, ok := ret.Get(0).(func(context.Context, *servicekms.DescribeKeyInput, ...func(*servicekms.Options)) *servicekms.DescribeKeyOutput); ok { r0 = rf(ctx, params, optFns...) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*servicekms.DescribeKeyOutput) } } if rf, ok := ret.Get(1).(func(context.Context, *servicekms.DescribeKeyInput, ...func(*servicekms.Options)) error); ok { r1 = rf(ctx, params, optFns...) } else { r1 = ret.Error(1) } return r0, r1 } // MockClient_DescribeKey_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DescribeKey' type MockClient_DescribeKey_Call struct { *mock.Call } // DescribeKey is a helper method to define mock.On call // - ctx context.Context // - params *servicekms.DescribeKeyInput // - optFns ...func(*servicekms.Options) func (_e *MockClient_Expecter) DescribeKey(ctx interface{}, params interface{}, optFns ...interface{}) *MockClient_DescribeKey_Call { return &MockClient_DescribeKey_Call{Call: _e.mock.On("DescribeKey", append([]interface{}{ctx, params}, optFns...)...)} } func (_c *MockClient_DescribeKey_Call) Run(run func(ctx context.Context, params *servicekms.DescribeKeyInput, optFns ...func(*servicekms.Options))) *MockClient_DescribeKey_Call { _c.Call.Run(func(args mock.Arguments) { variadicArgs := make([]func(*servicekms.Options), len(args)-2) for i, a := range args[2:] { if a != nil { variadicArgs[i] = a.(func(*servicekms.Options)) } } run(args[0].(context.Context), args[1].(*servicekms.DescribeKeyInput), variadicArgs...) }) return _c } func (_c *MockClient_DescribeKey_Call) Return(_a0 *servicekms.DescribeKeyOutput, _a1 error) *MockClient_DescribeKey_Call { _c.Call.Return(_a0, _a1) return _c } func (_c *MockClient_DescribeKey_Call) RunAndReturn(run func(context.Context, *servicekms.DescribeKeyInput, ...func(*servicekms.Options)) (*servicekms.DescribeKeyOutput, error)) *MockClient_DescribeKey_Call { _c.Call.Return(run) return _c } // GetKeyRotationStatus provides a mock function with given fields: ctx, params, optFns func (_m *MockClient) GetKeyRotationStatus(ctx context.Context, params *servicekms.GetKeyRotationStatusInput, optFns ...func(*servicekms.Options)) (*servicekms.GetKeyRotationStatusOutput, 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 GetKeyRotationStatus") } var r0 *servicekms.GetKeyRotationStatusOutput var r1 error if rf, ok := ret.Get(0).(func(context.Context, *servicekms.GetKeyRotationStatusInput, ...func(*servicekms.Options)) (*servicekms.GetKeyRotationStatusOutput, error)); ok { return rf(ctx, params, optFns...) } if rf, ok := ret.Get(0).(func(context.Context, *servicekms.GetKeyRotationStatusInput, ...func(*servicekms.Options)) *servicekms.GetKeyRotationStatusOutput); ok { r0 = rf(ctx, params, optFns...) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*servicekms.GetKeyRotationStatusOutput) } } if rf, ok := ret.Get(1).(func(context.Context, *servicekms.GetKeyRotationStatusInput, ...func(*servicekms.Options)) error); ok { r1 = rf(ctx, params, optFns...) } else { r1 = ret.Error(1) } return r0, r1 } // MockClient_GetKeyRotationStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetKeyRotationStatus' type MockClient_GetKeyRotationStatus_Call struct { *mock.Call } // GetKeyRotationStatus is a helper method to define mock.On call // - ctx context.Context // - params *servicekms.GetKeyRotationStatusInput // - optFns ...func(*servicekms.Options) func (_e *MockClient_Expecter) GetKeyRotationStatus(ctx interface{}, params interface{}, optFns ...interface{}) *MockClient_GetKeyRotationStatus_Call { return &MockClient_GetKeyRotationStatus_Call{Call: _e.mock.On("GetKeyRotationStatus", append([]interface{}{ctx, params}, optFns...)...)} } func (_c *MockClient_GetKeyRotationStatus_Call) Run(run func(ctx context.Context, params *servicekms.GetKeyRotationStatusInput, optFns ...func(*servicekms.Options))) *MockClient_GetKeyRotationStatus_Call { _c.Call.Run(func(args mock.Arguments) { variadicArgs := make([]func(*servicekms.Options), len(args)-2) for i, a := range args[2:] { if a != nil { variadicArgs[i] = a.(func(*servicekms.Options)) } } run(args[0].(context.Context), args[1].(*servicekms.GetKeyRotationStatusInput), variadicArgs...) }) return _c } func (_c *MockClient_GetKeyRotationStatus_Call) Return(_a0 *servicekms.GetKeyRotationStatusOutput, _a1 error) *MockClient_GetKeyRotationStatus_Call { _c.Call.Return(_a0, _a1) return _c } func (_c *MockClient_GetKeyRotationStatus_Call) RunAndReturn(run func(context.Context, *servicekms.GetKeyRotationStatusInput, ...func(*servicekms.Options)) (*servicekms.GetKeyRotationStatusOutput, error)) *MockClient_GetKeyRotationStatus_Call { _c.Call.Return(run) return _c } // ListKeys provides a mock function with given fields: ctx, params, optFns func (_m *MockClient) ListKeys(ctx context.Context, params *servicekms.ListKeysInput, optFns ...func(*servicekms.Options)) (*servicekms.ListKeysOutput, 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 ListKeys") } var r0 *servicekms.ListKeysOutput var r1 error if rf, ok := ret.Get(0).(func(context.Context, *servicekms.ListKeysInput, ...func(*servicekms.Options)) (*servicekms.ListKeysOutput, error)); ok { return rf(ctx, params, optFns...) } if rf, ok := ret.Get(0).(func(context.Context, *servicekms.ListKeysInput, ...func(*servicekms.Options)) *servicekms.ListKeysOutput); ok { r0 = rf(ctx, params, optFns...) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*servicekms.ListKeysOutput) } } if rf, ok := ret.Get(1).(func(context.Context, *servicekms.ListKeysInput, ...func(*servicekms.Options)) error); ok { r1 = rf(ctx, params, optFns...) } else { r1 = ret.Error(1) } return r0, r1 } // MockClient_ListKeys_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListKeys' type MockClient_ListKeys_Call struct { *mock.Call } // ListKeys is a helper method to define mock.On call // - ctx context.Context // - params *servicekms.ListKeysInput // - optFns ...func(*servicekms.Options) func (_e *MockClient_Expecter) ListKeys(ctx interface{}, params interface{}, optFns ...interface{}) *MockClient_ListKeys_Call { return &MockClient_ListKeys_Call{Call: _e.mock.On("ListKeys", append([]interface{}{ctx, params}, optFns...)...)} } func (_c *MockClient_ListKeys_Call) Run(run func(ctx context.Context, params *servicekms.ListKeysInput, optFns ...func(*servicekms.Options))) *MockClient_ListKeys_Call { _c.Call.Run(func(args mock.Arguments) { variadicArgs := make([]func(*servicekms.Options), len(args)-2) for i, a := range args[2:] { if a != nil { variadicArgs[i] = a.(func(*servicekms.Options)) } } run(args[0].(context.Context), args[1].(*servicekms.ListKeysInput), variadicArgs...) }) return _c } func (_c *MockClient_ListKeys_Call) Return(_a0 *servicekms.ListKeysOutput, _a1 error) *MockClient_ListKeys_Call { _c.Call.Return(_a0, _a1) return _c } func (_c *MockClient_ListKeys_Call) RunAndReturn(run func(context.Context, *servicekms.ListKeysInput, ...func(*servicekms.Options)) (*servicekms.ListKeysOutput, error)) *MockClient_ListKeys_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 }