Skip to content

Commit

Permalink
try to fix private key auth test
Browse files Browse the repository at this point in the history
  • Loading branch information
fairclothjm committed Jul 31, 2024
1 parent 4228db3 commit b5a2dd1
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion integrationTests/basic/jwt_auth.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,25 @@ describe('jwt auth', () => {
});

describe('authenticate with private key', () => {
beforeAll(async () => {
await got(`${vaultUrl}/v1/auth/jwt/role/default`, {
method: 'POST',
headers: {
'X-Vault-Token': vaultToken,
},
json: {
role_type: 'jwt',
bound_audiences: null,
bound_claims: {
iss: 'vault-action'
},
user_claim: 'iss',
policies: ['reader']
}
});
});

beforeEach(() => {
jest.resetAllMocks();

when(core.getInput)
.calledWith('url', expect.anything())
Expand Down

0 comments on commit b5a2dd1

Please sign in to comment.