test: Add test IDs (#9205)

This commit is contained in:
Manuel
2024-07-18 15:41:04 +02:00
committed by GitHub
parent 4b04c2222c
commit 901cff5edd
42 changed files with 302 additions and 282 deletions

View File

@@ -645,7 +645,7 @@ describe('google auth adapter', () => {
// }
// });
it('(using client id as string) should verify id_token', async () => {
it('(using client id as string) should verify id_token (google.com)', async () => {
const fakeClaim = {
iss: 'https://accounts.google.com',
aud: 'secret',
@@ -663,7 +663,7 @@ describe('google auth adapter', () => {
expect(result).toEqual(fakeClaim);
});
it('(using client id as string) should throw error with with invalid jwt issuer', async () => {
it('(using client id as string) should throw error with with invalid jwt issuer (google.com)', async () => {
const fakeClaim = {
iss: 'https://not.google.com',
sub: 'the_user_id',
@@ -1466,7 +1466,7 @@ describe('apple signin auth adapter', () => {
}
});
it('should use algorithm from key header to verify id_token', async () => {
it('should use algorithm from key header to verify id_token (apple.com)', async () => {
const fakeClaim = {
iss: 'https://appleid.apple.com',
aud: 'secret',
@@ -1516,7 +1516,7 @@ describe('apple signin auth adapter', () => {
}
});
it('(using client id as string) should verify id_token', async () => {
it('(using client id as string) should verify id_token (apple.com)', async () => {
const fakeClaim = {
iss: 'https://appleid.apple.com',
aud: 'secret',
@@ -1536,7 +1536,7 @@ describe('apple signin auth adapter', () => {
expect(result).toEqual(fakeClaim);
});
it('(using client id as array) should verify id_token', async () => {
it('(using client id as array) should verify id_token (apple.com)', async () => {
const fakeClaim = {
iss: 'https://appleid.apple.com',
aud: 'secret',
@@ -1556,7 +1556,7 @@ describe('apple signin auth adapter', () => {
expect(result).toEqual(fakeClaim);
});
it('(using client id as array with multiple items) should verify id_token', async () => {
it('(using client id as array with multiple items) should verify id_token (apple.com)', async () => {
const fakeClaim = {
iss: 'https://appleid.apple.com',
aud: 'secret',
@@ -1576,7 +1576,7 @@ describe('apple signin auth adapter', () => {
expect(result).toEqual(fakeClaim);
});
it('(using client id as string) should throw error with with invalid jwt issuer', async () => {
it('(using client id as string) should throw error with with invalid jwt issuer (apple.com)', async () => {
const fakeClaim = {
iss: 'https://not.apple.com',
sub: 'the_user_id',
@@ -1629,7 +1629,7 @@ describe('apple signin auth adapter', () => {
}
});
it('(using client id as string) should throw error with with invalid jwt issuer with token', async () => {
it('(using client id as string) should throw error with with invalid jwt issuer with token (apple.com)', async () => {
const fakeClaim = {
iss: 'https://not.apple.com',
sub: 'the_user_id',
@@ -1698,7 +1698,7 @@ describe('apple signin auth adapter', () => {
}
});
it('should throw error with with invalid user id', async () => {
it('should throw error with with invalid user id (apple.com)', async () => {
const fakeClaim = {
iss: 'https://appleid.apple.com',
aud: 'invalid_client_id',
@@ -2022,7 +2022,7 @@ describe('facebook limited auth adapter', () => {
}
});
it('should use algorithm from key header to verify id_token', async () => {
it_id('7bfa55ab-8fd7-4526-992e-6de3df16bf9c', 'should use algorithm from key header to verify id_token (facebook.com)', async () => {
const fakeClaim = {
iss: 'https://www.facebook.com',
aud: 'secret',
@@ -2072,7 +2072,7 @@ describe('facebook limited auth adapter', () => {
}
});
it('(using client id as string) should verify id_token', async () => {
it_id('4bcb1a1a-11f8-4e12-a3f6-73f7e25e355a', '(using client id as string) should verify id_token (facebook.com)', async () => {
const fakeClaim = {
iss: 'https://www.facebook.com',
aud: 'secret',
@@ -2092,7 +2092,7 @@ describe('facebook limited auth adapter', () => {
expect(result).toEqual(fakeClaim);
});
it('(using client id as array) should verify id_token', async () => {
it_id('c521a272-2ac2-4d8b-b5ed-ea250336d8b1', '(using client id as array) should verify id_token (facebook.com)', async () => {
const fakeClaim = {
iss: 'https://www.facebook.com',
aud: 'secret',
@@ -2112,7 +2112,7 @@ describe('facebook limited auth adapter', () => {
expect(result).toEqual(fakeClaim);
});
it('(using client id as array with multiple items) should verify id_token', async () => {
it_id('e3f16404-18e9-4a87-a555-4710cfbdac67')('(using client id as array with multiple items) should verify id_token (facebook.com)', async () => {
const fakeClaim = {
iss: 'https://www.facebook.com',
aud: 'secret',
@@ -2132,7 +2132,7 @@ describe('facebook limited auth adapter', () => {
expect(result).toEqual(fakeClaim);
});
it('(using client id as string) should throw error with with invalid jwt issuer', async () => {
it_id('549c33a1-3a6b-4732-8cf6-8f010ad4569c')('(using client id as string) should throw error with with invalid jwt issuer (facebook.com)', async () => {
const fakeClaim = {
iss: 'https://not.facebook.com',
sub: 'the_user_id',
@@ -2263,7 +2263,7 @@ describe('facebook limited auth adapter', () => {
}
});
it('should throw error with with invalid user id', async () => {
it_id('c194d902-e697-46c9-a303-82c2d914473c', 'should throw error with with invalid user id (facebook.com)', async () => {
const fakeClaim = {
iss: 'https://www.facebook.com',
aud: 'invalid_client_id',