-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws_profile_test.go
118 lines (100 loc) · 3.62 KB
/
aws_profile_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
package main
import (
"fmt"
"os"
. "gopkg.in/check.v1"
)
type AwsProfileSuite struct {
BaseSuite
profile AwsProfile
profileWasSet bool
existingProfile string
envVariable string
envValue string
settingsKey string
credsSettingsKey string
}
var _ = Suite(&AwsProfileSuite{})
func (s *AwsProfileSuite) SetUpTest(c *C) {
s.profile = AwsProfile{}
s.envVariable = "FAKE_AWS_ACCESS_KEY_ID"
s.envValue = "qqq"
s.settingsKey = "aws_access_key_id"
_ = os.Setenv(s.envVariable, s.envValue)
s.profile.Settings = map[string]*AwsSetting{
s.settingsKey: {
EnvironmentVariable: s.envVariable,
Value: "",
AllowedValues: []string{},
},
}
s.existingProfile, s.profileWasSet = os.LookupEnv("AWS_PROFILE")
_ = os.Unsetenv("AWS_PROFILE")
}
func (s *AwsProfileSuite) TearDownTest(c *C) {
if s.profileWasSet {
_ = os.Setenv("AWS_PROFILE", s.existingProfile)
} else {
_ = os.Unsetenv("AWS_PROFILE")
}
}
func (s *AwsProfileSuite) TestNewAwsProfile(c *C) {
profile := NewAwsProfile()
c.Assert(profile.Settings["output"].Value, Equals, "json")
}
func (s *AwsProfileSuite) TestIsActiveProfile(c *C) {
s.profile.Profile = "default"
c.Assert(s.profile.isActiveProfile(), Not(Equals), true)
}
func (s *AwsProfileSuite) TestUpdateFromEnvironment(c *C) {
c.Assert(s.profile.Settings[s.settingsKey].Value, Not(Equals), s.envValue)
s.profile.updateFromEnvironment()
c.Assert(s.profile.Settings[s.settingsKey].Value, Equals, s.envValue)
}
func (s *AwsProfileSuite) TestCompileCredentialsFileDefault(c *C) {
profileName := "default"
s.profile.Settings[s.settingsKey].Set(s.envValue)
output := s.profile.compileCredentialsFile(profileName, s.profile.ExtractCredentialsSettings())
c.Assert(output, Equals, fmt.Sprintf("[%s]\n%s = %s\n", profileName, s.settingsKey, s.envValue))
}
func (s *AwsProfileSuite) TestCompileBaseConfigFileDefault(c *C) {
profileName := "default"
s.profile.Settings[s.settingsKey].Set(s.envValue)
output := s.profile.compileBaseConfigFile(profileName, s.profile.ExtractCredentialsSettings())
c.Assert(output, Equals, fmt.Sprintf("[%s]\n%s = %s\n", profileName, s.settingsKey, s.envValue))
}
func (s *AwsProfileSuite) TestCompileBaseConfigFileNotDefault(c *C) {
profileName := "not default"
s.profile.Settings[s.settingsKey].Set(s.envValue)
output := s.profile.compileBaseConfigFile(profileName, s.profile.ExtractCredentialsSettings())
c.Assert(output, Equals, fmt.Sprintf("[profile \"%s\"]\n%s = %s\n", profileName, s.settingsKey, s.envValue))
}
func (s *AwsProfileSuite) TestExtractCredentialSettings(c *C) {
s.profile.Settings[s.settingsKey].Set(s.envValue)
credentials := s.profile.ExtractCredentialsSettings()
c.Assert(s.profile.Settings, HasLen, 0)
c.Assert(credentials, HasLen, 1)
}
func (s *AwsProfileSuite) TestConvertFromSettingToMap(c *C) {
s.profile.Settings[s.settingsKey].Set(s.envValue)
config := s.profile.convertFromSettingToMap()
c.Assert(len(config), Equals, len(s.profile.Settings))
}
func (s *AwsProfileSuite) TestCompileProfile(c *C) {
c.Assert(
s.profile.compileProfile(),
IsNil,
)
}
func (s *AwsProfileSuite) TestUpdateSettings(c *C) {
c.Assert(s.profile.Settings[s.settingsKey].Value, Not(Equals), s.envValue)
s.profile.UpdateSettings(map[string]*AwsSetting{
s.settingsKey: {Value: s.envValue},
})
c.Assert(s.profile.Settings[s.settingsKey].Value, Equals, s.envValue)
}
func (s *AwsProfileSuite) TestUpdateSettingValues(c *C) {
c.Assert(s.profile.Settings[s.settingsKey].Value, Not(Equals), s.envValue)
s.profile.UpdateSettingValues(map[string]string{s.settingsKey: s.envValue})
c.Assert(s.profile.Settings[s.settingsKey].Value, Equals, s.envValue)
}