forked from ekristen/aws-nuke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiam-instance-profile-role_mock_test.go
129 lines (108 loc) · 3.4 KB
/
iam-instance-profile-role_mock_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
package resources
import (
"context"
"testing"
"time"
"github.com/golang/mock/gomock"
"github.com/gotidy/ptr"
"github.com/stretchr/testify/assert"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/iam"
"github.com/ekristen/aws-nuke/v3/mocks/mock_iamiface"
)
func Test_Mock_IAMInstanceProfileRole_List(t *testing.T) {
a := assert.New(t)
ctrl := gomock.NewController(t)
defer ctrl.Finish()
mockIAM := mock_iamiface.NewMockIAMAPI(ctrl)
iamInstanceProfileRole := IAMInstanceProfileRole{
svc: mockIAM,
role: &iam.Role{
RoleName: ptr.String("role:foobar"),
},
profile: &iam.InstanceProfile{
Arn: ptr.String("arn:aws:iam::123456789012:instance-profile/profile:foobar"),
InstanceProfileName: ptr.String("profile:foobar"),
CreateDate: ptr.Time(time.Now()),
Roles: []*iam.Role{
{
Arn: ptr.String("arn:aws:iam::123456789012:role/role:foobar"),
RoleName: ptr.String("role:foobar"),
},
},
},
}
mockIAM.EXPECT().ListInstanceProfiles(gomock.Any()).Return(&iam.ListInstanceProfilesOutput{
InstanceProfiles: []*iam.InstanceProfile{
iamInstanceProfileRole.profile,
},
IsTruncated: ptr.Bool(false),
}, nil)
mockIAM.EXPECT().GetInstanceProfile(&iam.GetInstanceProfileInput{
InstanceProfileName: iamInstanceProfileRole.profile.InstanceProfileName,
}).Return(&iam.GetInstanceProfileOutput{
InstanceProfile: iamInstanceProfileRole.profile,
}, nil)
lister := IAMInstanceProfileRoleLister{
mockSvc: mockIAM,
}
resources, err := lister.List(context.TODO(), testListerOpts)
a.Nil(err)
a.Len(resources, 1)
}
func Test_Mock_IAMInstanceProfileRole_Remove(t *testing.T) {
a := assert.New(t)
ctrl := gomock.NewController(t)
defer ctrl.Finish()
mockIAM := mock_iamiface.NewMockIAMAPI(ctrl)
iamInstanceProfileRole := IAMInstanceProfileRole{
svc: mockIAM,
role: &iam.Role{
RoleName: aws.String("role:foobar"),
},
profile: &iam.InstanceProfile{
InstanceProfileName: aws.String("profile:foobar"),
},
}
mockIAM.EXPECT().RemoveRoleFromInstanceProfile(gomock.Eq(&iam.RemoveRoleFromInstanceProfileInput{
RoleName: iamInstanceProfileRole.role.RoleName,
InstanceProfileName: iamInstanceProfileRole.profile.InstanceProfileName,
})).Return(&iam.RemoveRoleFromInstanceProfileOutput{}, nil)
err := iamInstanceProfileRole.Remove(context.TODO())
a.Nil(err)
}
func Test_Mock_IAMInstanceProfileRole_Properties(t *testing.T) {
a := assert.New(t)
now := time.Now()
iamInstanceProfileRole := IAMInstanceProfileRole{
role: &iam.Role{
Arn: ptr.String("arn:aws:iam::123456789012:role/role:foobar"),
RoleName: ptr.String("role:foobar"),
Path: ptr.String("/"),
CreateDate: ptr.Time(now),
Tags: []*iam.Tag{
{
Key: ptr.String("Name"),
Value: ptr.String("bar"),
},
},
},
profile: &iam.InstanceProfile{
InstanceProfileName: ptr.String("profile:foobar"),
Tags: []*iam.Tag{
{
Key: ptr.String("Name"),
Value: ptr.String("foo"),
},
},
},
}
props := iamInstanceProfileRole.Properties()
a.Equal("profile:foobar", props.Get("InstanceProfile"))
a.Equal("role:foobar", props.Get("InstanceRole"))
a.Equal("/", props.Get("role:Path"))
a.Equal(now.Format(time.RFC3339), props.Get("role:CreateDate"))
a.Equal("foo", props.Get("tag:Name"))
a.Equal("bar", props.Get("tag:role:Name"))
a.Equal("profile:foobar -> role:foobar", iamInstanceProfileRole.String())
}