-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: generate no-touch notice in codegen
- Loading branch information
1 parent
d8fd5ce
commit 85e9f56
Showing
8 changed files
with
146 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// Please do not touch this file. It's generated from template in: | ||
// https://github.com/aws/aws-sdk-js-v3/blob/main/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.spec.ts | ||
import { HttpResponse } from "@aws-sdk/protocol-http"; | ||
import { Readable } from "stream"; | ||
const assumeRoleResponse = `<AssumeRoleResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | ||
<AssumeRoleResult> | ||
<AssumedRoleUser> | ||
<AssumedRoleId>AROAZOX2IL27GNRBJHWC2:session</AssumedRoleId> | ||
<Arn>arn:aws:sts::123:assumed-role/assume-role-test/session</Arn> | ||
</AssumedRoleUser> | ||
<Credentials> | ||
<AccessKeyId>key</AccessKeyId> | ||
<SecretAccessKey>secrete</SecretAccessKey> | ||
<SessionToken>session-token</SessionToken> | ||
<Expiration>2021-05-05T23:22:08Z</Expiration> | ||
</Credentials> | ||
</AssumeRoleResult> | ||
<ResponseMetadata> | ||
<RequestId>12345678id</RequestId> | ||
</ResponseMetadata> | ||
</AssumeRoleResponse>`; | ||
const mockHandle = jest.fn().mockResolvedValue({ | ||
response: new HttpResponse({ | ||
statusCode: 200, | ||
body: Readable.from([""]), | ||
}), | ||
}); | ||
jest.mock("@aws-sdk/node-http-handler", () => ({ | ||
NodeHttpHandler: jest.fn().mockImplementation(() => ({ | ||
destroy: () => {}, | ||
handle: mockHandle, | ||
})), | ||
streamCollector: async () => Buffer.from(assumeRoleResponse), | ||
})); | ||
|
||
import { getDefaultRoleAssumer } from "./defaultRoleAssumers"; | ||
import type { AssumeRoleCommandInput } from "./commands/AssumeRoleCommand"; | ||
|
||
describe("getDefaultRoleAssumer", () => { | ||
beforeEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
it("should use supplied source credentials", async () => { | ||
const roleAssumer = getDefaultRoleAssumer(); | ||
const params: AssumeRoleCommandInput = { | ||
RoleArn: "arn:aws:foo", | ||
RoleSessionName: "session", | ||
}; | ||
const sourceCred1 = { accessKeyId: "key1", secretAccessKey: "secrete1" }; | ||
await roleAssumer(sourceCred1, params); | ||
expect(mockHandle).toBeCalledTimes(1); | ||
// Validate request is signed by sourceCred1 | ||
expect(mockHandle.mock.calls[0][0].headers?.authorization).toEqual( | ||
expect.stringContaining("AWS4-HMAC-SHA256 Credential=key1/") | ||
); | ||
const sourceCred2 = { accessKeyId: "key2", secretAccessKey: "secrete1" }; | ||
await roleAssumer(sourceCred2, params); | ||
// Validate request is signed by sourceCred2 | ||
expect(mockHandle).toBeCalledTimes(2); | ||
expect(mockHandle.mock.calls[1][0].headers?.authorization).toEqual( | ||
expect.stringContaining("AWS4-HMAC-SHA256 Credential=key2/") | ||
); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
...rces/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import { HttpResponse } from "@aws-sdk/protocol-http"; | ||
import { Readable } from "stream"; | ||
const assumeRoleResponse = `<AssumeRoleResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/"> | ||
<AssumeRoleResult> | ||
<AssumedRoleUser> | ||
<AssumedRoleId>AROAZOX2IL27GNRBJHWC2:session</AssumedRoleId> | ||
<Arn>arn:aws:sts::123:assumed-role/assume-role-test/session</Arn> | ||
</AssumedRoleUser> | ||
<Credentials> | ||
<AccessKeyId>key</AccessKeyId> | ||
<SecretAccessKey>secrete</SecretAccessKey> | ||
<SessionToken>session-token</SessionToken> | ||
<Expiration>2021-05-05T23:22:08Z</Expiration> | ||
</Credentials> | ||
</AssumeRoleResult> | ||
<ResponseMetadata> | ||
<RequestId>12345678id</RequestId> | ||
</ResponseMetadata> | ||
</AssumeRoleResponse>`; | ||
const mockHandle = jest.fn().mockResolvedValue({ | ||
response: new HttpResponse({ | ||
statusCode: 200, | ||
body: Readable.from([""]), | ||
}), | ||
}); | ||
jest.mock("@aws-sdk/node-http-handler", () => ({ | ||
NodeHttpHandler: jest.fn().mockImplementation(() => ({ | ||
destroy: () => {}, | ||
handle: mockHandle, | ||
})), | ||
streamCollector: async () => Buffer.from(assumeRoleResponse), | ||
})); | ||
|
||
import { getDefaultRoleAssumer } from "./defaultRoleAssumers"; | ||
import type { AssumeRoleCommandInput } from "./commands/AssumeRoleCommand"; | ||
|
||
describe("getDefaultRoleAssumer", () => { | ||
beforeEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
it("should use supplied source credentials", async () => { | ||
const roleAssumer = getDefaultRoleAssumer(); | ||
const params: AssumeRoleCommandInput = { | ||
RoleArn: "arn:aws:foo", | ||
RoleSessionName: "session", | ||
}; | ||
const sourceCred1 = { accessKeyId: "key1", secretAccessKey: "secrete1" }; | ||
await roleAssumer(sourceCred1, params); | ||
expect(mockHandle).toBeCalledTimes(1); | ||
// Validate request is signed by sourceCred1 | ||
expect(mockHandle.mock.calls[0][0].headers?.authorization).toEqual( | ||
expect.stringContaining("AWS4-HMAC-SHA256 Credential=key1/") | ||
); | ||
const sourceCred2 = { accessKeyId: "key2", secretAccessKey: "secrete1" }; | ||
await roleAssumer(sourceCred2, params); | ||
// Validate request is signed by sourceCred2 | ||
expect(mockHandle).toBeCalledTimes(2); | ||
expect(mockHandle.mock.calls[1][0].headers?.authorization).toEqual( | ||
expect.stringContaining("AWS4-HMAC-SHA256 Credential=key2/") | ||
); | ||
}); | ||
}); |
2 changes: 0 additions & 2 deletions
2
...resources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultRoleAssumers.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
...ources/software/amazon/smithy/aws/typescript/codegen/sts-client-defaultStsRoleAssumers.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters