backend-test-utils: Adds mockIdentityFactory to startTestbackend
Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
@@ -39,10 +39,10 @@
|
||||
"@backstage/backend-plugin-api": "workspace:^",
|
||||
"@backstage/cli": "workspace:^",
|
||||
"@backstage/config": "workspace:^",
|
||||
"@backstage/plugin-auth-node": "workspace:^",
|
||||
"@backstage/types": "workspace:^",
|
||||
"better-sqlite3": "^8.0.0",
|
||||
"express": "^4.17.1",
|
||||
"express-promise-router": "^4.1.0",
|
||||
"knex": "^2.0.0",
|
||||
"msw": "^0.49.0",
|
||||
"mysql2": "^2.2.5",
|
||||
|
||||
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user