UNPKG

@redocly/openapi-core

Version:

See https://github.com/Redocly/redocly-cli

78 lines (73 loc) 2.18 kB
import { outdent } from 'outdent'; import { parseYamlToDocument, replaceSourceWithRef } from '../../../../../__tests__/utils'; import { lintDocument } from '../../../../lint'; import { StyleguideConfig } from '../../../..'; import { BaseResolver } from '../../../../resolve'; import { resolveStyleguideConfig } from '../../../../config'; describe('Referenceable scalars', () => { it('should not report $ref description', async () => { const document = parseYamlToDocument( outdent` openapi: 3.0.0 info: title: Test version: '1.0' description: $ref: fixtures/description.md paths: {} `, __dirname + '/foobar.yaml' ); const results = await lintDocument({ externalRefResolver: new BaseResolver(), document, config: new StyleguideConfig( await resolveStyleguideConfig({ styleguideConfig: { extends: [], rules: { spec: 'error', 'no-unresolved-refs': 'error', }, }, }) ), }); expect(replaceSourceWithRef(results)).toMatchInlineSnapshot(`[]`); }); it('should not report invalid $ref on example with doNotResolveExamples', async () => { const document = parseYamlToDocument( outdent` openapi: 3.0.0 info: title: Test version: '1.0' description: Test paths: '/test': get: parameters: - name: test example: $ref: not $ref, example `, __dirname + '/foobar.yaml' ); const results = await lintDocument({ externalRefResolver: new BaseResolver(), document, config: new StyleguideConfig( await resolveStyleguideConfig({ styleguideConfig: { extends: [], rules: { 'no-unresolved-refs': 'error', }, doNotResolveExamples: true, }, }) ), }); expect(replaceSourceWithRef(results)).toMatchInlineSnapshot(`[]`); }); });