use the IdentityApi properly

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-09-07 11:53:53 +02:00
parent 9018da59a9
commit 0f88eab1b7
5 changed files with 89 additions and 90 deletions
@@ -14,7 +14,10 @@
* limitations under the License.
*/
import { IdentityClient } from '@backstage/plugin-auth-node';
import {
BackstageIdentityResponse,
IdentityApi,
} from '@backstage/plugin-auth-node';
import express from 'express';
import request from 'supertest';
import { UserSettingsStore } from '../database/UserSettingsStore';
@@ -26,9 +29,12 @@ describe('createRouter', () => {
set: jest.fn(),
delete: jest.fn(),
};
const authenticateMock = jest.fn();
const identityClient: jest.Mocked<Partial<IdentityClient>> = {
authenticate: authenticateMock,
const getIdentityMock = jest.fn<
Promise<BackstageIdentityResponse | undefined>,
any
>();
const identityApi: jest.Mocked<Partial<IdentityApi>> = {
getIdentity: getIdentityMock,
};
let app: express.Express;
@@ -36,7 +42,7 @@ describe('createRouter', () => {
beforeEach(async () => {
const router = await createRouterInternal({
userSettingsStore,
identity: identityClient as IdentityClient,
identity: identityApi as IdentityApi,
});
app = express().use(router);
@@ -49,8 +55,13 @@ describe('createRouter', () => {
describe('GET /buckets/:bucket/keys/:key', () => {
it('returns ok', async () => {
const setting = { bucket: 'my-bucket', key: 'my-key', value: 'a' };
authenticateMock.mockResolvedValue({
identity: { userEntityRef: 'user-1' },
getIdentityMock.mockResolvedValue({
token: 'a',
identity: {
type: 'user',
ownershipEntityRefs: [],
userEntityRef: 'user-1',
},
});
userSettingsStore.get.mockResolvedValue(setting);
@@ -62,7 +73,7 @@ describe('createRouter', () => {
expect(responses.status).toEqual(200);
expect(responses.body).toEqual(setting);
expect(authenticateMock).toHaveBeenCalledWith('foo');
expect(getIdentityMock).toHaveBeenCalledTimes(1);
expect(userSettingsStore.get).toHaveBeenCalledTimes(1);
expect(userSettingsStore.get).toHaveBeenCalledWith({
userEntityRef: 'user-1',
@@ -83,8 +94,13 @@ describe('createRouter', () => {
describe('DELETE /buckets/:bucket/keys/:key', () => {
it('returns ok', async () => {
authenticateMock.mockResolvedValue({
identity: { userEntityRef: 'user-1' },
getIdentityMock.mockResolvedValue({
token: 'a',
identity: {
type: 'user',
ownershipEntityRefs: [],
userEntityRef: 'user-1',
},
});
userSettingsStore.delete.mockResolvedValue();
@@ -95,7 +111,7 @@ describe('createRouter', () => {
expect(responses.status).toEqual(204);
expect(authenticateMock).toHaveBeenCalledWith('foo');
expect(getIdentityMock).toHaveBeenCalledTimes(1);
expect(userSettingsStore.delete).toHaveBeenCalledTimes(1);
expect(userSettingsStore.delete).toHaveBeenCalledWith({
userEntityRef: 'user-1',
@@ -117,8 +133,13 @@ describe('createRouter', () => {
describe('PUT /buckets/:bucket/keys/:key', () => {
it('returns ok', async () => {
const setting = { bucket: 'my-bucket', key: 'my-key', value: 'a' };
authenticateMock.mockResolvedValue({
identity: { userEntityRef: 'user-1' },
getIdentityMock.mockResolvedValue({
token: 'a',
identity: {
type: 'user',
ownershipEntityRefs: [],
userEntityRef: 'user-1',
},
});
userSettingsStore.set.mockResolvedValue();
@@ -132,7 +153,7 @@ describe('createRouter', () => {
expect(responses.status).toEqual(200);
expect(responses.body).toEqual(setting);
expect(authenticateMock).toHaveBeenCalledWith('foo');
expect(getIdentityMock).toHaveBeenCalledTimes(1);
expect(userSettingsStore.set).toHaveBeenCalledTimes(1);
expect(userSettingsStore.set).toHaveBeenCalledWith({
userEntityRef: 'user-1',
@@ -149,8 +170,13 @@ describe('createRouter', () => {
});
it('returns an error if the value is not given', async () => {
authenticateMock.mockResolvedValue({
identity: { userEntityRef: 'user-1' },
getIdentityMock.mockResolvedValue({
token: 'a',
identity: {
type: 'user',
ownershipEntityRefs: [],
userEntityRef: 'user-1',
},
});
const responses = await request(app)
@@ -160,7 +186,7 @@ describe('createRouter', () => {
expect(responses.status).toEqual(400);
expect(authenticateMock).toHaveBeenCalledWith('foo');
expect(getIdentityMock).toHaveBeenCalledTimes(1);
expect(userSettingsStore.set).not.toHaveBeenCalled();
});
@@ -16,10 +16,7 @@
import { errorHandler, PluginDatabaseManager } from '@backstage/backend-common';
import { AuthenticationError, InputError } from '@backstage/errors';
import {
getBearerTokenFromAuthorizationHeader,
IdentityClient,
} from '@backstage/plugin-auth-node';
import { IdentityApi } from '@backstage/plugin-auth-node';
import express, { Request } from 'express';
import Router from 'express-promise-router';
import { DatabaseUserSettingsStore } from '../database/DatabaseUserSettingsStore';
@@ -30,7 +27,7 @@ import { UserSettingsStore } from '../database/UserSettingsStore';
*/
export interface RouterOptions {
database: PluginDatabaseManager;
identity: IdentityClient;
identity: IdentityApi;
}
/**
@@ -52,7 +49,7 @@ export async function createRouter(
}
export async function createRouterInternal(options: {
identity: IdentityClient;
identity: IdentityApi;
userSettingsStore: UserSettingsStore;
}): Promise<express.Router> {
const router = Router();
@@ -62,18 +59,13 @@ export async function createRouterInternal(options: {
* Helper method to extract the userEntityRef from the request.
*/
const getUserEntityRef = async (req: Request): Promise<string> => {
const token = getBearerTokenFromAuthorizationHeader(
req.header('authorization'),
);
if (!token) {
// throws an AuthenticationError in case the token exists but is invalid
const identity = await options.identity.getIdentity({ request: req });
if (!identity) {
throw new AuthenticationError(`Missing token in 'authorization' header`);
}
// throws an AuthenticationError in case the token is invalid
const user = await options.identity.authenticate(token);
return user.identity.userEntityRef;
return identity.identity.userEntityRef;
};
// get a single value
@@ -15,8 +15,7 @@
*/
import { createServiceBuilder, useHotMemoize } from '@backstage/backend-common';
import { IdentityClient } from '@backstage/plugin-auth-node';
import { Router } from 'express';
import { IdentityApi } from '@backstage/plugin-auth-node';
import { Server } from 'http';
import Knex from 'knex';
import { Logger } from 'winston';
@@ -44,11 +43,19 @@ export async function startStandaloneServer(
logger.debug('Starting application server...');
const identityMock = {
authenticate: async token => ({
identity: { userEntityRef: token ?? 'user:default/john_doe' },
}),
} as IdentityClient;
const identityMock: IdentityApi = {
async getIdentity({ request }) {
const token = request.headers.authorization?.split(' ')[1];
return {
identity: {
type: 'user',
ownershipEntityRefs: [],
userEntityRef: token || 'user:default/john_doe',
},
token: token || 'no-token',
};
},
};
const router = await createRouterInternal({
userSettingsStore: await DatabaseUserSettingsStore.create({
@@ -57,18 +64,9 @@ export async function startStandaloneServer(
identity: identityMock,
});
// set a custom authorization header to simplify the development
const authWrapper = Router();
authWrapper.use((req, _res, next) => {
req.headers.authorization =
req.headers.authorization ?? 'Bearer user:default/john_doe';
next();
});
authWrapper.use(router);
let service = createServiceBuilder(module)
.setPort(options.port)
.addRouter('/user-settings', authWrapper);
.addRouter('/user-settings', router);
if (options.enableCors) {
service = service.enableCors({ origin: 'http://localhost:3000' });