backend-test-utils: Adds mockIdentityFactory to startTestbackend

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2023-01-12 14:36:25 +01:00
parent 3adb716e58
commit 939d3ec2e0
5 changed files with 60 additions and 2 deletions
@@ -0,0 +1,51 @@
/*
* Copyright 2023 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 {
coreServices,
createServiceFactory,
IdentityService,
} from '@backstage/backend-plugin-api';
import {
IdentityApiGetIdentityRequest,
BackstageIdentityResponse,
} from '@backstage/plugin-auth-node';
class MockIdentityServiceImpl implements IdentityService {
getIdentity(
_options: IdentityApiGetIdentityRequest,
): Promise<BackstageIdentityResponse | undefined> {
return Promise.resolve({
token: 'mock-token',
identity: {
type: 'user',
userEntityRef: 'user:default/mockUser',
ownershipEntityRefs: [],
},
});
}
}
/** @public */
export const mockIdentityFactory = createServiceFactory({
service: coreServices.identity,
deps: {},
async factory() {
const service = new MockIdentityServiceImpl();
return async () => {
return service;
};
},
});
@@ -46,6 +46,7 @@ import { mockRootLoggerService } from '../implementations/mockRootLoggerService'
import { mockTokenManagerFactory } from '../implementations/mockTokenManagerService';
import { ConfigReader } from '@backstage/config';
import express from 'express';
import { mockIdentityFactory } from '../implementations/mockIdentityService';
/** @alpha */
export interface TestBackendOptions<
@@ -90,6 +91,7 @@ const defaultServiceFactories = [
loggerFactory(),
mockConfigFactory(),
mockRootLoggerService(),
mockIdentityFactory(),
mockTokenManagerFactory(),
permissionsFactory(),
rootLifecycleFactory(),