Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

config: Fix bug in SDK's merging of duration_seconds shared config #1568

Merged
merged 2 commits into from
Jan 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .changelog/3989a7746d05464ba5ad8f91386e6e8a.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"id": "3989a774-6d05-464b-a5ad-8f91386e6e8a",
"type": "bugfix",
"collapse": true,
"description": "Fixes the SDK's handling of `duration_sections` in the shared credentials file or specified in multiple shared config and shared credentials files under the same profile. [#1568](https://github.com/aws/aws-sdk-go-v2/pull/1568). Thanks to [Amir Szekely](https://github.com/kichik) for help reproduce this bug.",
"modules": [
"config",
"internal/ini"
]
}
42 changes: 39 additions & 3 deletions config/shared_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,36 @@ func TestNewSharedConfig(t *testing.T) {
Profile: "invaliddefaultsmode",
Err: fmt.Errorf("failed to load defaults_mode from shared config, invalid value: invalid"),
},
"merged profiles across files": {
ConfigFilenames: []string{testConfigFilename},
CredentialsFilenames: []string{testCredentialsFilename},
Profile: "merged_profiles",
Expected: SharedConfig{
Profile: "merged_profiles",
RoleARN: "creds_profile_arn",
RoleDurationSeconds: aws.Duration(1023 * time.Second),
},
},
"merged profiles across config files": {
ConfigFilenames: []string{testConfigFilename, testConfigFilename},
CredentialsFilenames: []string{},
Profile: "merged_profiles",
Expected: SharedConfig{
Profile: "merged_profiles",
RoleARN: "config_profile_arn",
RoleDurationSeconds: aws.Duration(3601 * time.Second),
},
},
"merged profiles across credentials files": {
ConfigFilenames: []string{},
CredentialsFilenames: []string{testCredentialsFilename, testCredentialsFilename},
Profile: "merged_profiles",
Expected: SharedConfig{
Profile: "merged_profiles",
RoleARN: "creds_profile_arn",
RoleDurationSeconds: aws.Duration(1023 * time.Second),
},
},
}

for name, c := range cases {
Expand Down Expand Up @@ -593,6 +623,12 @@ func TestLoadSharedConfigFromSection(t *testing.T) {
Profile: "profile partial_creds",
Expected: SharedConfig{},
},
"profile with role duration": {
Profile: "profile with_role_duration",
Expected: SharedConfig{
RoleDurationSeconds: aws.Duration(3601 * time.Second),
},
},
"profile with complete creds": {
Profile: "profile complete_creds",
Expected: SharedConfig{
Expand Down Expand Up @@ -689,12 +725,12 @@ func TestLoadSharedConfigFromSection(t *testing.T) {
}
return
}

if err != nil {
t.Fatalf("expect no error, got %v", err)
}
if e, a := c.Expected, cfg; !reflect.DeepEqual(e, a) {
t.Errorf("expect %v, got %v", e, a)

if diff := cmp.Diff(c.Expected, cfg); diff != "" {
t.Errorf("expect shared config match\n%s", diff)
}
})
}
Expand Down
7 changes: 7 additions & 0 deletions config/testdata/shared_config
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ aws_secret_access_key = SECRET
[profile alt_profile_name]
region = alt_profile_name_region

[profile with_role_duration]
duration_seconds = 3601

[profile merged_profiles]
duration_seconds = 3601
role_arn = config_profile_arn

[profile short_profile_name_first]
region = short_profile_name_first_short

Expand Down
4 changes: 4 additions & 0 deletions config/testdata/shared_credentials
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ region = eu-west-2

[DONOTNORMALIZE]
region = eu-west-3

[merged_profiles]
duration_seconds = 1023
role_arn = creds_profile_arn
18 changes: 2 additions & 16 deletions internal/ini/literal_tokens.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,22 +216,8 @@ func NewStringValue(str string) (Value, error) {

// NewIntValue returns a Value type generated using an int64 input.
func NewIntValue(i int64) (Value, error) {
return newValue(IntegerType, 10, []rune{rune(i)})
}

// Append will append values and change the type to a string
// type.
func (v *Value) Append(tok Token) {
r := tok.Raw()
if v.Type != QuotedStringType {
v.Type = StringType
r = tok.raw[1 : len(tok.raw)-1]
}
if tok.Type() != TokenLit {
v.raw = append(v.raw, tok.Raw()...)
} else {
v.raw = append(v.raw, r...)
}
v := strconv.FormatInt(i, 10)
return newValue(IntegerType, 10, []rune(v))
}

func (v Value) String() string {
Expand Down
33 changes: 33 additions & 0 deletions internal/ini/literal_tokens_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,3 +196,36 @@ func TestNewLiteralToken(t *testing.T) {
})
}
}

func TestNewStringValue(t *testing.T) {
const expect = "abc123"

actual, err := NewStringValue(expect)
if err != nil {
t.Fatalf("expect no error, %v", err)
}

if e, a := StringType, actual.Type; e != a {
t.Errorf("expect %v type got %v", e, a)
}
if e, a := expect, actual.str; e != a {
t.Errorf("expect %v string got %v", e, a)
}
}

func TestNewIntValue(t *testing.T) {
const expect int64 = 1234

actual, err := NewIntValue(expect)
if err != nil {
t.Fatalf("expect no error, %v", err)
}

if e, a := IntegerType, actual.Type; e != a {
t.Errorf("expect %v type got %v", e, a)
}
if e, a := expect, actual.integer; e != a {
t.Errorf("expect %v integer got %v", e, a)
}

}