/* Copyright 2019 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. 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. */ package cmd import ( "github.com/aws/aws-sdk-go/aws" awsrequest "github.com/aws/aws-sdk-go/aws/request" awssession "github.com/aws/aws-sdk-go/aws/session" cloudwatchlogs "github.com/aws/aws-sdk-go/service/cloudwatchlogs" ) // Interface which enables us to mock the CloudWatchLogsClient. type mockableCloudWatchLogsClient interface { FilterLogEventsRequest(*cloudwatchlogs.FilterLogEventsInput) (*awsrequest.Request, *cloudwatchlogs.FilterLogEventsOutput) } // Concrete implementation which forwards to the actual client. type concreteCloudWatchLogsClient struct { client *cloudwatchlogs.CloudWatchLogs } // Forwarding implementation of FilterLogEventsRequest. func (m concreteCloudWatchLogsClient) FilterLogEventsRequest(input *cloudwatchlogs.FilterLogEventsInput) (*awsrequest.Request, *cloudwatchlogs.FilterLogEventsOutput) { req, output := m.client.FilterLogEventsRequest(input) return req, output } // Create client wrapped by interface to allow for mocking. func createCloudWatchLogsClientForConfig(awsConfig aws.Config) mockableCloudWatchLogsClient { session, _ := awssession.NewSessionWithOptions( awssession.Options{ SharedConfigState: awssession.SharedConfigEnable, Config: awsConfig, }) return concreteCloudWatchLogsClient{ client: cloudwatchlogs.New(session), } }