2022-07-01 08:06:33 +02:00
|
|
|
import { createOpenApiSchema, removeJsonSchemaProps, schemas } from './index';
|
2022-06-13 11:23:36 +02:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
|
|
|
|
|
|
|
test('all schema files should be added to the schemas object', () => {
|
|
|
|
const schemaFileNames = fs
|
|
|
|
.readdirSync(path.join(__dirname, 'spec'))
|
|
|
|
.filter((fileName) => fileName.endsWith('-schema.ts'));
|
|
|
|
|
|
|
|
const expectedSchemaNames = schemaFileNames.map((fileName) => {
|
|
|
|
return fileName
|
|
|
|
.replace(/\.ts$/, '')
|
|
|
|
.replace(/-./g, (x) => x[1].toUpperCase());
|
|
|
|
});
|
|
|
|
|
|
|
|
const addedSchemaNames = Object.keys(schemas);
|
|
|
|
expect(expectedSchemaNames.sort()).toEqual(addedSchemaNames.sort());
|
|
|
|
});
|
|
|
|
|
|
|
|
test('all schema $id attributes should have the expected format', () => {
|
|
|
|
const schemaIds = Object.values(schemas).map((schema) => schema.$id);
|
|
|
|
const schemaIdRegExp = new RegExp(`^#/components/schemas/[a-z][a-zA-Z]+$`);
|
|
|
|
|
|
|
|
schemaIds.forEach((schemaId) => {
|
|
|
|
expect(schemaId).toMatch(schemaIdRegExp);
|
|
|
|
});
|
|
|
|
});
|
2022-06-10 10:04:56 +02:00
|
|
|
|
|
|
|
test('removeJsonSchemaProps', () => {
|
|
|
|
expect(removeJsonSchemaProps({ a: 'b', $id: 'c', components: {} }))
|
|
|
|
.toMatchInlineSnapshot(`
|
2022-09-06 13:22:41 +02:00
|
|
|
{
|
2022-06-10 10:04:56 +02:00
|
|
|
"a": "b",
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
});
|
|
|
|
|
2022-06-27 15:39:08 +02:00
|
|
|
describe('createOpenApiSchema', () => {
|
|
|
|
test('createOpenApiSchema url', () => {
|
|
|
|
expect(
|
|
|
|
createOpenApiSchema({
|
|
|
|
unleashUrl: 'https://example.com',
|
|
|
|
baseUriPath: '',
|
|
|
|
}).servers[0].url,
|
|
|
|
).toEqual('https://example.com');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('if baseurl is set strips from serverUrl', () => {
|
|
|
|
expect(
|
|
|
|
createOpenApiSchema({
|
|
|
|
unleashUrl: 'https://example.com/demo2',
|
|
|
|
baseUriPath: '/demo2',
|
|
|
|
}).servers[0].url,
|
|
|
|
).toEqual('https://example.com');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('if baseurl does not end with suffix, cowardly refuses to strip', () => {
|
|
|
|
expect(
|
|
|
|
createOpenApiSchema({
|
|
|
|
unleashUrl: 'https://example.com/demo2',
|
|
|
|
baseUriPath: 'example',
|
|
|
|
}).servers[0].url,
|
|
|
|
).toEqual('https://example.com/demo2');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('avoids double trailing slash', () => {
|
|
|
|
expect(
|
|
|
|
createOpenApiSchema({
|
|
|
|
unleashUrl: 'https://example.com/example/',
|
|
|
|
baseUriPath: 'example',
|
|
|
|
}).servers[0].url,
|
|
|
|
).toEqual('https://example.com');
|
|
|
|
expect(
|
|
|
|
createOpenApiSchema({
|
|
|
|
unleashUrl: 'https://example.com/example/',
|
|
|
|
baseUriPath: '/example',
|
|
|
|
}).servers[0].url,
|
|
|
|
).toEqual('https://example.com');
|
|
|
|
});
|
2022-06-10 10:04:56 +02:00
|
|
|
});
|