1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/src/lib/openapi/spec/me-schema.test.ts

38 lines
954 B
TypeScript
Raw Normal View History

import { validateSchema } from '../validate';
import { MeSchema } from './me-schema';
test('meSchema', () => {
const data: MeSchema = {
user: { id: 1 },
permissions: [{ permission: 'a' }],
feedback: [{ userId: 1, feedbackId: 'a', neverShow: false }],
splash: { a: true },
};
expect(
validateSchema('#/components/schemas/meSchema', data),
).toBeUndefined();
});
test('meSchema empty', () => {
expect(
validateSchema('#/components/schemas/meSchema', {}),
).toMatchSnapshot();
});
test('meSchema missing permissions', () => {
expect(
validateSchema('#/components/schemas/meSchema', { user: { id: 1 } }),
).toMatchSnapshot();
});
test('meSchema missing splash', () => {
expect(
validateSchema('#/components/schemas/meSchema', {
user: { id: 1 },
permissions: [],
feedback: [],
}),
).toMatchSnapshot();
});