mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
72479a152f
refs https://github.com/TryGhost/Team/issues/1640 refs https://github.com/TryGhost/Members/pull/401 - Adds basic test coverage for the `GET /members/.well-known/jwks.json` endpoint - Next the test should be expanded with the JWT verification to check if the returned format is usable by mainstream client libraries
29 lines
862 B
JavaScript
29 lines
862 B
JavaScript
const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
|
|
const {anyString, anyEtag} = matchers;
|
|
|
|
describe('Members .well-known', function () {
|
|
let membersAgent;
|
|
|
|
before(async function () {
|
|
const agents = await agentProvider.getAgentsForMembers();
|
|
membersAgent = agents.membersAgent;
|
|
});
|
|
|
|
describe('GET /jwks.json', function () {
|
|
it('should return a JWKS', async function () {
|
|
await membersAgent
|
|
.get('/.well-known/jwks.json')
|
|
.expectStatus(200)
|
|
.matchBodySnapshot({
|
|
keys: [{
|
|
kid: anyString,
|
|
n: anyString
|
|
}]
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag
|
|
});
|
|
});
|
|
});
|
|
});
|