backend-test-utils: added tests for MockHttpAuthService + fixes

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-02-16 15:23:01 +01:00
parent 74fb755273
commit fe78da86f4
3 changed files with 96 additions and 3 deletions
@@ -27,9 +27,9 @@ describe('MockAuthService', () => {
const auth = new MockAuthService('test');
it('should reject invalid tokens', async () => {
await expect(auth.authenticate('')).rejects.toThrow('Invalid mock token');
await expect(auth.authenticate('')).rejects.toThrow('Token is empty');
await expect(auth.authenticate('not-a-mock-token')).rejects.toThrow(
'Invalid mock token',
"Unknown mock token 'not-a-mock-token'",
);
await expect(auth.authenticate(MOCK_USER_TOKEN_PREFIX)).rejects.toThrow(
'Unexpected end of JSON input',
@@ -49,6 +49,8 @@ export class MockAuthService implements AuthService {
throw new AuthenticationError('User token is invalid');
case MOCK_INVALID_SERVICE_TOKEN:
throw new AuthenticationError('Service token is invalid');
case '':
throw new AuthenticationError('Token is empty');
default:
}
@@ -73,7 +75,7 @@ export class MockAuthService implements AuthService {
return mockCredentials.service(subject);
}
throw new AuthenticationError('Invalid mock token');
throw new AuthenticationError(`Unknown mock token '${token}'`);
}
async getOwnServiceCredentials(): Promise<
@@ -0,0 +1,91 @@
/*
* Copyright 2024 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Request } from 'express';
import { MockHttpAuthService } from './MockHttpAuthService';
import { mockCredentials } from './mockCredentials';
describe('MockHttpAuthService', () => {
const httpAuth = new MockHttpAuthService('test');
it('should authenticate requests', async () => {
await expect(
httpAuth.credentials({
headers: {},
} as Request),
).resolves.toEqual(mockCredentials.none());
await expect(
httpAuth.credentials({
headers: {
authorization: mockCredentials.user.header(),
},
} as Request),
).resolves.toEqual(mockCredentials.user());
await expect(
httpAuth.credentials({
headers: {
authorization: mockCredentials.user.header('user:default/other'),
},
} as Request),
).resolves.toEqual(mockCredentials.user('user:default/other'));
await expect(
httpAuth.credentials({
headers: {
authorization: mockCredentials.service.header(),
},
} as Request),
).resolves.toEqual(mockCredentials.service());
await expect(
httpAuth.credentials({
headers: {
authorization: mockCredentials.service.header({
subject: 'plugin:other',
}),
},
} as Request),
).resolves.toEqual(mockCredentials.service('plugin:other'));
});
it('should reject invalid credentials', async () => {
await expect(
httpAuth.credentials({
headers: {
authorization: 'Bearer bad',
},
} as Request),
).rejects.toThrow("Unknown mock token 'bad'");
await expect(
httpAuth.credentials({
headers: {
authorization: mockCredentials.user.invalidHeader(),
},
} as Request),
).rejects.toThrow('User token is invalid');
await expect(
httpAuth.credentials({
headers: {
authorization: mockCredentials.service.invalidHeader(),
},
} as Request),
).rejects.toThrow('Service token is invalid');
});
});