// Copyright 2016 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. package instancedetailedinformation import "fmt" // createMockExecutor creates an executor that returns the given stdout values on subsequent invocations. // If the number of invocations exceeds the number of outputs provided, the executor will return the last output. // For example createMockExecutor("a", "b", "c") will return an executor that returns the following values: // on first call -> "a" // on second call -> "b" // on third call -> "c" // on every call after that -> "c" func createMockExecutor(stdout ...string) func(string, ...string) ([]byte, error) { var index = 0 return func(string, ...string) ([]byte, error) { if index < len(stdout) { index += 1 } return []byte(stdout[index-1]), nil } } // createMockExecutorWithErrorOnNthExecution creates an executor that returns the given stdout values on subsequent invocations and returns // an error on the Nth execution. // If the number of invocations exceeds the number of outputs provided, the executor will return the last output. // For example createMockExecutorWithErrorOnNthExecution(2, "a", "b", "c") will return an executor that returns the following values: // on first call -> "a" // on second call -> Error // on third call -> "c" // on every call after that -> "c" func createMockExecutorWithErrorOnNthExecution(n int, stdout ...string) func(string, ...string) ([]byte, error) { var index = 0 return func(string, ...string) ([]byte, error) { if n == index+1 || stdout == nil { return []byte{}, fmt.Errorf("Random Error") } if index < len(stdout) { index += 1 } return []byte(stdout[index-1]), nil } }