// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). You may // not use this file except in compliance with the License. A copy of the // License is located at // // http://aws.amazon.com/apache2.0/ // // or in the "license" file accompanying this file. This file 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 MockGen. DO NOT EDIT. // Source: github.com/aws/amazon-ecs-agent/agent/ecr (interfaces: ECRSDK,ECRFactory,ECRClient) // Package mock_ecr is a generated GoMock package. package mock_ecr import ( reflect "reflect" container "github.com/aws/amazon-ecs-agent/agent/api/container" ecr "github.com/aws/amazon-ecs-agent/agent/ecr" ecr0 "github.com/aws/amazon-ecs-agent/agent/ecr/model/ecr" gomock "github.com/golang/mock/gomock" ) // MockECRSDK is a mock of ECRSDK interface. type MockECRSDK struct { ctrl *gomock.Controller recorder *MockECRSDKMockRecorder } // MockECRSDKMockRecorder is the mock recorder for MockECRSDK. type MockECRSDKMockRecorder struct { mock *MockECRSDK } // NewMockECRSDK creates a new mock instance. func NewMockECRSDK(ctrl *gomock.Controller) *MockECRSDK { mock := &MockECRSDK{ctrl: ctrl} mock.recorder = &MockECRSDKMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockECRSDK) EXPECT() *MockECRSDKMockRecorder { return m.recorder } // GetAuthorizationToken mocks base method. func (m *MockECRSDK) GetAuthorizationToken(arg0 *ecr0.GetAuthorizationTokenInput) (*ecr0.GetAuthorizationTokenOutput, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetAuthorizationToken", arg0) ret0, _ := ret[0].(*ecr0.GetAuthorizationTokenOutput) ret1, _ := ret[1].(error) return ret0, ret1 } // GetAuthorizationToken indicates an expected call of GetAuthorizationToken. func (mr *MockECRSDKMockRecorder) GetAuthorizationToken(arg0 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAuthorizationToken", reflect.TypeOf((*MockECRSDK)(nil).GetAuthorizationToken), arg0) } // MockECRFactory is a mock of ECRFactory interface. type MockECRFactory struct { ctrl *gomock.Controller recorder *MockECRFactoryMockRecorder } // MockECRFactoryMockRecorder is the mock recorder for MockECRFactory. type MockECRFactoryMockRecorder struct { mock *MockECRFactory } // NewMockECRFactory creates a new mock instance. func NewMockECRFactory(ctrl *gomock.Controller) *MockECRFactory { mock := &MockECRFactory{ctrl: ctrl} mock.recorder = &MockECRFactoryMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockECRFactory) EXPECT() *MockECRFactoryMockRecorder { return m.recorder } // GetClient mocks base method. func (m *MockECRFactory) GetClient(arg0 *container.ECRAuthData) (ecr.ECRClient, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetClient", arg0) ret0, _ := ret[0].(ecr.ECRClient) ret1, _ := ret[1].(error) return ret0, ret1 } // GetClient indicates an expected call of GetClient. func (mr *MockECRFactoryMockRecorder) GetClient(arg0 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetClient", reflect.TypeOf((*MockECRFactory)(nil).GetClient), arg0) } // MockECRClient is a mock of ECRClient interface. type MockECRClient struct { ctrl *gomock.Controller recorder *MockECRClientMockRecorder } // MockECRClientMockRecorder is the mock recorder for MockECRClient. type MockECRClientMockRecorder struct { mock *MockECRClient } // NewMockECRClient creates a new mock instance. func NewMockECRClient(ctrl *gomock.Controller) *MockECRClient { mock := &MockECRClient{ctrl: ctrl} mock.recorder = &MockECRClientMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockECRClient) EXPECT() *MockECRClientMockRecorder { return m.recorder } // GetAuthorizationToken mocks base method. func (m *MockECRClient) GetAuthorizationToken(arg0 string) (*ecr0.AuthorizationData, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetAuthorizationToken", arg0) ret0, _ := ret[0].(*ecr0.AuthorizationData) ret1, _ := ret[1].(error) return ret0, ret1 } // GetAuthorizationToken indicates an expected call of GetAuthorizationToken. func (mr *MockECRClientMockRecorder) GetAuthorizationToken(arg0 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAuthorizationToken", reflect.TypeOf((*MockECRClient)(nil).GetAuthorizationToken), arg0) }