forked from gruntwork-io/cloud-nuke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda_test.go
161 lines (124 loc) · 3.75 KB
/
lambda_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package aws
import (
"archive/zip"
"io"
"io/ioutil"
"os"
"strings"
"testing"
"time"
"github.com/aws/aws-sdk-go/aws"
awsgo "github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/lambda"
"github.com/aws/aws-sdk-go/service/s3"
"github.com/aws/aws-sdk-go/service/s3/s3manager"
"github.com/gruntwork-io/cloud-nuke/util"
"github.com/gruntwork-io/gruntwork-cli/errors"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
// TODO: Move this into the utils package
func createZipFile(filename string, file string) error {
err := ioutil.WriteFile(file, []byte("package test"), 0755)
newZipFile, _ := os.Create(filename)
defer newZipFile.Close()
zipWriter := zip.NewWriter(newZipFile)
defer zipWriter.Close()
err = addFileToZip(zipWriter, file)
if err != nil {
return err
}
err = removeFile(file)
if err != nil {
return err
}
return nil
}
// TODO: Move this into the utils package
func removeFile(zipFileName string) error {
err := os.Remove(zipFileName)
if err != nil {
return err
}
return nil
}
// TODO: Move this into the utils package
func addFileToZip(zipWriter *zip.Writer, filename string) error {
fileToZip, err := os.Open(filename)
defer fileToZip.Close()
info, err := fileToZip.Stat()
header, err := zip.FileInfoHeader(info)
if err != nil {
return err
}
header.Name = filename
header.Method = zip.Deflate
writer, err := zipWriter.CreateHeader(header)
_, err = io.Copy(writer, fileToZip)
return err
}
func createTestLambdaFunction(t *testing.T, session *session.Session, name string) {
svc := lambda.New(session)
uniqueTestID := "cloud-nuke-test-" + util.UniqueID()
roleName := uniqueTestID + "-role"
bucketName := uniqueTestID + "-bucket"
zipFileName := uniqueTestID + ".zip"
goFileName := uniqueTestID + ".go"
// Prepare resources
// Create the IAM roles for Lambda function
role := createLambdaRole(t, session, roleName)
defer deleteLambdaRole(session, role)
// IAM resources are slow to propagate, so give it some
// time
time.Sleep(15 * time.Second)
svcs3 := s3.New(session)
svcs3.CreateBucket(&s3.CreateBucketInput{
Bucket: aws.String(bucketName),
})
createZipFile(zipFileName, goFileName)
defer removeFile(zipFileName)
// Upload Zip
reader := strings.NewReader(zipFileName)
uploader := s3manager.NewUploader(session)
uploader.Upload(&s3manager.UploadInput{
Bucket: aws.String(bucketName),
Key: aws.String(zipFileName),
Body: reader,
})
runTime := "go1.x"
contents, err := ioutil.ReadFile(zipFileName)
createCode := &lambda.FunctionCode{
ZipFile: contents,
}
params := &lambda.CreateFunctionInput{
Code: createCode,
FunctionName: &name,
Handler: awsgo.String(goFileName),
Role: role.Arn,
Runtime: &runTime,
}
_, err = svc.CreateFunction(params)
require.NoError(t, err)
}
func TestNukeLambdaFunction(t *testing.T) {
t.Parallel()
region, err := getRandomRegion()
require.NoError(t, errors.WithStackTrace(err))
session, err := session.NewSession(&awsgo.Config{
Region: awsgo.String(region)},
)
lambdaFunctionName := "cloud-nuke-test-" + util.UniqueID()
excludeAfter := time.Now().Add(1 * time.Hour)
createTestLambdaFunction(t, session, lambdaFunctionName)
defer func() {
nukeAllLambdaFunctions(session, []*string{&lambdaFunctionName})
lambdaFunctionNames, _ := getAllLambdaFunctions(session, excludeAfter)
assert.NotContains(t, awsgo.StringValueSlice(lambdaFunctionNames), lambdaFunctionName)
}()
lambdaFunctions, err := getAllLambdaFunctions(session, excludeAfter)
if err != nil {
assert.Failf(t, "Unable to fetch list of Lambda Functions", errors.WithStackTrace(err).Error())
}
assert.Contains(t, awsgo.StringValueSlice(lambdaFunctions), lambdaFunctionName)
}