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

fix(credentials): used selected auth scheme identity instead of calling credentials provider #6555

Merged
merged 2 commits into from
Oct 9, 2024
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
34 changes: 34 additions & 0 deletions packages/middleware-user-agent/src/check-features.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import { AwsHandlerExecutionContext } from "@aws-sdk/types";

import { checkFeatures } from "./check-features";

describe(checkFeatures.name, () => {
it("should not call the credentials provider to retrieve the identity", async () => {
const config = {
credentials: jest.fn(),
};

const context = {
__smithy_context: {
selectedHttpAuthScheme: {
identity: {
accountId: "123456789012",
$source: {},
},
},
},
} as AwsHandlerExecutionContext;

await checkFeatures(context, config, {
request: undefined,
input: undefined,
});

expect(config.credentials).not.toHaveBeenCalled();
expect(context.__aws_sdk_context?.features?.RESOLVED_ACCOUNT_ID).toBe("T");
});

it("should not throw an error if no fields are present", async () => {
await checkFeatures({}, {}, {} as any);
});
});
24 changes: 10 additions & 14 deletions packages/middleware-user-agent/src/check-features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,16 @@ export async function checkFeatures(
}
}

if (typeof config.credentials === "function") {
try {
const credentials: AttributedAwsCredentialIdentity = await config.credentials?.();
if (credentials.accountId) {
setFeature(context, "RESOLVED_ACCOUNT_ID", "T");
}
for (const [key, value] of Object.entries(credentials.$source ?? {})) {
setFeature(context, key as keyof AwsSdkCredentialsFeatures, value);
}
} catch (e: unknown) {
// Sometimes config.credentials is a function but only throws
// as a way of informing users that something is missing.
// That error and any other credential retrieval errors are
// not relevant for feature-checking and should be ignored.
// TODO: later version of @smithy/types has explicit typing for this.
const identity = (context.__smithy_context?.selectedHttpAuthScheme as any)?.identity;

if ((identity as AttributedAwsCredentialIdentity)?.$source) {
const credentials = identity as AttributedAwsCredentialIdentity;
if (credentials.accountId) {
setFeature(context, "RESOLVED_ACCOUNT_ID", "T");
}
for (const [key, value] of Object.entries(credentials.$source ?? {})) {
setFeature(context, key as keyof AwsSdkCredentialsFeatures, value);
}
}
}
Loading