mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
2354656632
* refactor: add OpenAPI schema to api-token controller * refactor: address PR comments * fix: status codes on environment toggling * fix tests * refactor: address PR comments * refactor: expiresAtSchema -> update-api-token-schema
28 lines
772 B
TypeScript
28 lines
772 B
TypeScript
import { ApiTokenType } from '../../types/models/api-token';
|
|
import { validateSchema } from '../validate';
|
|
import { ApiTokenSchema } from './api-token-schema';
|
|
|
|
test('apiTokenSchema', () => {
|
|
const data: ApiTokenSchema = {
|
|
secret: '',
|
|
username: '',
|
|
type: ApiTokenType.CLIENT,
|
|
environment: '',
|
|
projects: [],
|
|
expiresAt: '2022-01-01T00:00:00.000Z',
|
|
createdAt: '2022-01-01T00:00:00.000Z',
|
|
seenAt: '2022-01-01T00:00:00.000Z',
|
|
project: '',
|
|
};
|
|
|
|
expect(
|
|
validateSchema('#/components/schemas/apiTokenSchema', data),
|
|
).toBeUndefined();
|
|
});
|
|
|
|
test('apiTokenSchema empty', () => {
|
|
expect(
|
|
validateSchema('#/components/schemas/apiTokenSchema', {}),
|
|
).toMatchSnapshot();
|
|
});
|