@redocly/openapi-core 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/__tests__/utils.ts +88 -0
- package/lib/config/all.js +0 -1
- package/lib/config/minimal.js +0 -1
- package/lib/config/recommended.js +0 -1
- package/package.json +1 -1
- package/src/__tests__/__snapshots__/bundle.test.ts.snap +437 -0
- package/src/__tests__/bundle.test.ts +236 -0
- package/src/__tests__/codeframes.test.ts +530 -0
- package/src/__tests__/fixtures/.redocly.lint-ignore.yaml +5 -0
- package/src/__tests__/fixtures/extension.js +24 -0
- package/src/__tests__/fixtures/refs/definitions.yaml +3 -0
- package/src/__tests__/fixtures/refs/examples.yaml +8 -0
- package/src/__tests__/fixtures/refs/external-request-body.yaml +13 -0
- package/src/__tests__/fixtures/refs/externalref.yaml +35 -0
- package/src/__tests__/fixtures/refs/hosted.yaml +35 -0
- package/src/__tests__/fixtures/refs/openapi-with-external-refs-conflicting-names.yaml +21 -0
- package/src/__tests__/fixtures/refs/openapi-with-external-refs.yaml +33 -0
- package/src/__tests__/fixtures/refs/openapi-with-url-refs.yaml +18 -0
- package/src/__tests__/fixtures/refs/param-b.yaml +1 -0
- package/src/__tests__/fixtures/refs/param-c.yaml +1 -0
- package/src/__tests__/fixtures/refs/rename.yaml +1 -0
- package/src/__tests__/fixtures/refs/requestBody.yaml +9 -0
- package/src/__tests__/fixtures/refs/schema-a.yaml +1 -0
- package/src/__tests__/fixtures/refs/simple.yaml +1 -0
- package/src/__tests__/fixtures/refs/vendor.schema.yaml +20 -0
- package/src/__tests__/fixtures/resolve/External.yaml +10 -0
- package/src/__tests__/fixtures/resolve/External2.yaml +4 -0
- package/src/__tests__/fixtures/resolve/description.md +3 -0
- package/src/__tests__/fixtures/resolve/externalInfo.yaml +4 -0
- package/src/__tests__/fixtures/resolve/externalLicense.yaml +1 -0
- package/src/__tests__/fixtures/resolve/openapi-with-back.yaml +13 -0
- package/src/__tests__/fixtures/resolve/openapi-with-md-description.yaml +5 -0
- package/src/__tests__/fixtures/resolve/openapi.yaml +28 -0
- package/src/__tests__/fixtures/resolve/schemas/type-a.yaml +10 -0
- package/src/__tests__/fixtures/resolve/schemas/type-b.yaml +6 -0
- package/src/__tests__/fixtures/resolve/transitive/a.yaml +1 -0
- package/src/__tests__/fixtures/resolve/transitive/components.yaml +5 -0
- package/src/__tests__/fixtures/resolve/transitive/schemas.yaml +3 -0
- package/src/__tests__/format.test.ts +76 -0
- package/src/__tests__/js-yaml.test.ts +73 -0
- package/src/__tests__/lint.test.ts +392 -0
- package/src/__tests__/logger-browser.test.ts +53 -0
- package/src/__tests__/logger.test.ts +47 -0
- package/src/__tests__/login.test.ts +17 -0
- package/src/__tests__/normalizeVisitors.test.ts +151 -0
- package/src/__tests__/output-browser.test.ts +18 -0
- package/src/__tests__/output.test.ts +15 -0
- package/src/__tests__/ref-utils.test.ts +120 -0
- package/src/__tests__/resolve-http.test.ts +77 -0
- package/src/__tests__/resolve.test.ts +431 -0
- package/src/__tests__/utils-browser.test.ts +11 -0
- package/src/__tests__/utils.test.ts +144 -0
- package/src/__tests__/walk.test.ts +1545 -0
- package/src/benchmark/benches/lint-with-many-rules.bench.ts +35 -0
- package/src/benchmark/benches/lint-with-nested-rule.bench.ts +39 -0
- package/src/benchmark/benches/lint-with-no-rules.bench.ts +20 -0
- package/src/benchmark/benches/lint-with-top-level-rule-report.bench.ts +35 -0
- package/src/benchmark/benches/lint-with-top-level-rule.bench.ts +32 -0
- package/src/benchmark/benches/rebilly.yaml +32275 -0
- package/src/benchmark/benches/recommended-oas3.bench.ts +22 -0
- package/src/benchmark/benches/resolve-with-no-external.bench.ts +23 -0
- package/src/benchmark/benchmark.js +311 -0
- package/src/benchmark/colors.js +29 -0
- package/src/benchmark/fork.js +83 -0
- package/src/benchmark/utils.ts +36 -0
- package/src/bundle.ts +417 -0
- package/src/config/__tests__/__snapshots__/config-resolvers.test.ts.snap +164 -0
- package/src/config/__tests__/__snapshots__/config.test.ts.snap +144 -0
- package/src/config/__tests__/config-resolvers.test.ts +491 -0
- package/src/config/__tests__/config.test.ts +312 -0
- package/src/config/__tests__/fixtures/ingore-file.ts +8 -0
- package/src/config/__tests__/fixtures/load-redocly.yaml +2 -0
- package/src/config/__tests__/fixtures/plugin-config.yaml +2 -0
- package/src/config/__tests__/fixtures/plugin.js +56 -0
- package/src/config/__tests__/fixtures/resolve-config/api/nested-config.yaml +11 -0
- package/src/config/__tests__/fixtures/resolve-config/api/plugin.js +69 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config-with-circular.yaml +7 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config-with-custom-function.yaml +17 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config-with-file.yaml +18 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config-with-wrong-custom-function.yaml +15 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config.yaml +9 -0
- package/src/config/__tests__/fixtures/resolve-config/plugin.js +80 -0
- package/src/config/__tests__/fixtures/resolve-remote-configs/nested-remote-config.yaml +3 -0
- package/src/config/__tests__/fixtures/resolve-remote-configs/remote-config.yaml +4 -0
- package/src/config/__tests__/load.test.ts +167 -0
- package/src/config/__tests__/resolve-plugins.test.ts +27 -0
- package/src/config/__tests__/utils.test.ts +204 -0
- package/src/config/all.ts +74 -0
- package/src/config/builtIn.ts +37 -0
- package/src/config/config-resolvers.ts +474 -0
- package/src/config/config.ts +332 -0
- package/src/config/index.ts +7 -0
- package/src/config/load.ts +144 -0
- package/src/config/minimal.ts +61 -0
- package/src/config/recommended.ts +61 -0
- package/src/config/rules.ts +54 -0
- package/src/config/types.ts +231 -0
- package/src/config/utils.ts +349 -0
- package/src/decorators/__tests__/filter-in.test.ts +310 -0
- package/src/decorators/__tests__/filter-out.test.ts +335 -0
- package/src/decorators/__tests__/media-type-examples-override.test.ts +665 -0
- package/src/decorators/__tests__/remove-x-internal.test.ts +316 -0
- package/src/decorators/__tests__/resources/request.yaml +3 -0
- package/src/decorators/__tests__/resources/response.yaml +3 -0
- package/src/decorators/common/filters/filter-helper.ts +72 -0
- package/src/decorators/common/filters/filter-in.ts +18 -0
- package/src/decorators/common/filters/filter-out.ts +18 -0
- package/src/decorators/common/info-description-override.ts +24 -0
- package/src/decorators/common/info-override.ts +15 -0
- package/src/decorators/common/media-type-examples-override.ts +79 -0
- package/src/decorators/common/operation-description-override.ts +30 -0
- package/src/decorators/common/registry-dependencies.ts +25 -0
- package/src/decorators/common/remove-x-internal.ts +59 -0
- package/src/decorators/common/tag-description-override.ts +25 -0
- package/src/decorators/oas2/index.ts +20 -0
- package/src/decorators/oas3/index.ts +22 -0
- package/src/env.ts +5 -0
- package/src/format/codeframes.ts +216 -0
- package/src/format/format.ts +375 -0
- package/src/index.ts +71 -0
- package/src/js-yaml/index.ts +14 -0
- package/src/lint.ts +148 -0
- package/src/logger.ts +34 -0
- package/src/oas-types.ts +57 -0
- package/src/output.ts +7 -0
- package/src/redocly/__tests__/redocly-client.test.ts +146 -0
- package/src/redocly/index.ts +187 -0
- package/src/redocly/redocly-client-types.ts +10 -0
- package/src/redocly/registry-api-types.ts +32 -0
- package/src/redocly/registry-api.ts +150 -0
- package/src/ref-utils.ts +85 -0
- package/src/resolve.ts +417 -0
- package/src/rules/__tests__/fixtures/code-sample.php +9 -0
- package/src/rules/__tests__/fixtures/invalid-yaml.yaml +1 -0
- package/src/rules/__tests__/fixtures/ref.yaml +1 -0
- package/src/rules/__tests__/no-unresolved-refs.test.ts +257 -0
- package/src/rules/__tests__/utils.test.ts +160 -0
- package/src/rules/ajv.ts +102 -0
- package/src/rules/common/__tests__/info-license.test.ts +62 -0
- package/src/rules/common/__tests__/license-url.test.ts +63 -0
- package/src/rules/common/__tests__/no-ambiguous-paths.test.ts +96 -0
- package/src/rules/common/__tests__/no-enum-type-mismatch.test.ts +210 -0
- package/src/rules/common/__tests__/no-identical-paths.test.ts +58 -0
- package/src/rules/common/__tests__/no-path-trailing-slash.test.ts +85 -0
- package/src/rules/common/__tests__/operation-2xx-response.test.ts +192 -0
- package/src/rules/common/__tests__/operation-4xx-response.test.ts +231 -0
- package/src/rules/common/__tests__/operation-operationId-unique.test.ts +76 -0
- package/src/rules/common/__tests__/operation-operationId-url-safe.test.ts +45 -0
- package/src/rules/common/__tests__/operation-parameters-unique.test.ts +167 -0
- package/src/rules/common/__tests__/operation-singular-tag.test.ts +72 -0
- package/src/rules/common/__tests__/path-http-verbs-order.test.ts +95 -0
- package/src/rules/common/__tests__/path-not-include-query.test.ts +64 -0
- package/src/rules/common/__tests__/path-params-defined.test.ts +202 -0
- package/src/rules/common/__tests__/paths-kebab-case.test.ts +108 -0
- package/src/rules/common/__tests__/scalar-property-missing-example.test.ts +264 -0
- package/src/rules/common/__tests__/security-defined.test.ts +175 -0
- package/src/rules/common/__tests__/spec-strict-refs.test.ts +69 -0
- package/src/rules/common/__tests__/spec.test.ts +610 -0
- package/src/rules/common/__tests__/tag-description.test.ts +65 -0
- package/src/rules/common/__tests__/tags-alphabetical.test.ts +64 -0
- package/src/rules/common/assertions/__tests__/asserts.test.ts +869 -0
- package/src/rules/common/assertions/__tests__/index.test.ts +100 -0
- package/src/rules/common/assertions/__tests__/utils.test.ts +236 -0
- package/src/rules/common/assertions/asserts.ts +357 -0
- package/src/rules/common/assertions/index.ts +53 -0
- package/src/rules/common/assertions/utils.ts +331 -0
- package/src/rules/common/info-contact.ts +15 -0
- package/src/rules/common/info-license-url.ts +10 -0
- package/src/rules/common/info-license.ts +15 -0
- package/src/rules/common/no-ambiguous-paths.ts +50 -0
- package/src/rules/common/no-enum-type-mismatch.ts +52 -0
- package/src/rules/common/no-http-verbs-in-paths.ts +36 -0
- package/src/rules/common/no-identical-paths.ts +24 -0
- package/src/rules/common/no-invalid-parameter-examples.ts +36 -0
- package/src/rules/common/no-invalid-schema-examples.ts +27 -0
- package/src/rules/common/no-path-trailing-slash.ts +15 -0
- package/src/rules/common/operation-2xx-response.ts +24 -0
- package/src/rules/common/operation-4xx-response.ts +24 -0
- package/src/rules/common/operation-description.ts +13 -0
- package/src/rules/common/operation-operationId-unique.ts +21 -0
- package/src/rules/common/operation-operationId-url-safe.ts +19 -0
- package/src/rules/common/operation-operationId.ts +17 -0
- package/src/rules/common/operation-parameters-unique.ts +48 -0
- package/src/rules/common/operation-singular-tag.ts +17 -0
- package/src/rules/common/operation-summary.ts +13 -0
- package/src/rules/common/operation-tag-defined.ts +26 -0
- package/src/rules/common/parameter-description.ts +22 -0
- package/src/rules/common/path-declaration-must-exist.ts +15 -0
- package/src/rules/common/path-excludes-patterns.ts +23 -0
- package/src/rules/common/path-http-verbs-order.ts +30 -0
- package/src/rules/common/path-not-include-query.ts +17 -0
- package/src/rules/common/path-params-defined.ts +65 -0
- package/src/rules/common/path-segment-plural.ts +31 -0
- package/src/rules/common/paths-kebab-case.ts +19 -0
- package/src/rules/common/required-string-property-missing-min-length.ts +44 -0
- package/src/rules/common/response-contains-header.ts +35 -0
- package/src/rules/common/scalar-property-missing-example.ts +58 -0
- package/src/rules/common/security-defined.ts +65 -0
- package/src/rules/common/spec-strict-refs.ts +30 -0
- package/src/rules/common/spec.ts +175 -0
- package/src/rules/common/tag-description.ts +10 -0
- package/src/rules/common/tags-alphabetical.ts +20 -0
- package/src/rules/no-unresolved-refs.ts +51 -0
- package/src/rules/oas2/__tests__/boolean-parameter-prefixes.test.ts +110 -0
- package/src/rules/oas2/__tests__/response-contains-header.test.ts +174 -0
- package/src/rules/oas2/__tests__/response-contains-property.test.ts +155 -0
- package/src/rules/oas2/__tests__/spec/fixtures/description.md +1 -0
- package/src/rules/oas2/__tests__/spec/info.test.ts +355 -0
- package/src/rules/oas2/__tests__/spec/operation.test.ts +123 -0
- package/src/rules/oas2/__tests__/spec/paths.test.ts +245 -0
- package/src/rules/oas2/__tests__/spec/referenceableScalars.test.ts +35 -0
- package/src/rules/oas2/__tests__/spec/utils.ts +32 -0
- package/src/rules/oas2/boolean-parameter-prefixes.ts +26 -0
- package/src/rules/oas2/index.ts +91 -0
- package/src/rules/oas2/remove-unused-components.ts +81 -0
- package/src/rules/oas2/request-mime-type.ts +16 -0
- package/src/rules/oas2/response-contains-property.ts +36 -0
- package/src/rules/oas2/response-mime-type.ts +16 -0
- package/src/rules/oas3/__tests__/boolean-parameter-prefixes.test.ts +111 -0
- package/src/rules/oas3/__tests__/component-name-unique.test.ts +823 -0
- package/src/rules/oas3/__tests__/fixtures/common.yaml +11 -0
- package/src/rules/oas3/__tests__/no-empty-enum-servers.com.test.ts +205 -0
- package/src/rules/oas3/__tests__/no-example-value-and-externalValue.test.ts +65 -0
- package/src/rules/oas3/__tests__/no-invalid-media-type-examples.test.ts +473 -0
- package/src/rules/oas3/__tests__/no-server-example.com.test.ts +60 -0
- package/src/rules/oas3/__tests__/no-server-trailing-slash.test.ts +79 -0
- package/src/rules/oas3/__tests__/no-unused-components.test.ts +131 -0
- package/src/rules/oas3/__tests__/operation-4xx-problem-details-rfc7807.test.ts +145 -0
- package/src/rules/oas3/__tests__/response-contains-header.test.ts +389 -0
- package/src/rules/oas3/__tests__/response-contains-property.test.ts +403 -0
- package/src/rules/oas3/__tests__/spec/callbacks.test.ts +41 -0
- package/src/rules/oas3/__tests__/spec/fixtures/description.md +1 -0
- package/src/rules/oas3/__tests__/spec/info.test.ts +391 -0
- package/src/rules/oas3/__tests__/spec/operation.test.ts +253 -0
- package/src/rules/oas3/__tests__/spec/paths.test.ts +284 -0
- package/src/rules/oas3/__tests__/spec/referenceableScalars.test.ts +77 -0
- package/src/rules/oas3/__tests__/spec/servers.test.ts +505 -0
- package/src/rules/oas3/__tests__/spec/spec.test.ts +298 -0
- package/src/rules/oas3/__tests__/spec/utils.ts +32 -0
- package/src/rules/oas3/__tests__/spec-components-invalid-map-name.test.ts +276 -0
- package/src/rules/oas3/__tests__/utils/lint-document-for-test.ts +23 -0
- package/src/rules/oas3/boolean-parameter-prefixes.ts +28 -0
- package/src/rules/oas3/component-name-unique.ts +158 -0
- package/src/rules/oas3/index.ts +113 -0
- package/src/rules/oas3/no-empty-servers.ts +22 -0
- package/src/rules/oas3/no-example-value-and-externalValue.ts +14 -0
- package/src/rules/oas3/no-invalid-media-type-examples.ts +49 -0
- package/src/rules/oas3/no-server-example.com.ts +14 -0
- package/src/rules/oas3/no-server-trailing-slash.ts +15 -0
- package/src/rules/oas3/no-server-variables-empty-enum.ts +66 -0
- package/src/rules/oas3/no-undefined-server-variable.ts +30 -0
- package/src/rules/oas3/no-unused-components.ts +75 -0
- package/src/rules/oas3/operation-4xx-problem-details-rfc7807.ts +35 -0
- package/src/rules/oas3/remove-unused-components.ts +95 -0
- package/src/rules/oas3/request-mime-type.ts +30 -0
- package/src/rules/oas3/response-contains-property.ts +38 -0
- package/src/rules/oas3/response-mime-type.ts +30 -0
- package/src/rules/oas3/spec-components-invalid-map-name.ts +69 -0
- package/src/rules/other/stats.ts +73 -0
- package/src/rules/utils.ts +193 -0
- package/src/types/config-external-schemas.ts +917 -0
- package/src/types/index.ts +149 -0
- package/src/types/oas2.ts +478 -0
- package/src/types/oas3.ts +597 -0
- package/src/types/oas3_1.ts +258 -0
- package/src/types/redocly-yaml.ts +1040 -0
- package/src/typings/common.ts +17 -0
- package/src/typings/openapi.ts +298 -0
- package/src/typings/swagger.ts +236 -0
- package/src/utils.ts +276 -0
- package/src/visitors.ts +491 -0
- package/src/walk.ts +439 -0
- package/tsconfig.json +8 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
import { OasVersion } from '../../oas-types';
|
|
2
|
+
import { Config, StyleguideConfig } from '../config';
|
|
3
|
+
import { getMergedConfig } from '../utils';
|
|
4
|
+
import { doesYamlFileExist } from '../../utils';
|
|
5
|
+
import { parseYaml } from '../../js-yaml';
|
|
6
|
+
import { readFileSync } from 'fs';
|
|
7
|
+
import { ignoredFileStub } from './fixtures/ingore-file';
|
|
8
|
+
import * as path from 'path';
|
|
9
|
+
import { NormalizedProblem } from '../../walk';
|
|
10
|
+
import { Source } from '../../resolve';
|
|
11
|
+
|
|
12
|
+
jest.mock('../../utils');
|
|
13
|
+
jest.mock('../../js-yaml');
|
|
14
|
+
jest.mock('fs');
|
|
15
|
+
|
|
16
|
+
const testConfig: Config = {
|
|
17
|
+
rawConfig: {
|
|
18
|
+
apis: {
|
|
19
|
+
'test@v1': {
|
|
20
|
+
root: 'resources/pets.yaml',
|
|
21
|
+
styleguide: { rules: { 'operation-summary': 'warn' } },
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
organization: 'redocly-test',
|
|
25
|
+
telemetry: 'on',
|
|
26
|
+
styleguide: {
|
|
27
|
+
rules: { 'operation-summary': 'error', 'no-empty-servers': 'error' },
|
|
28
|
+
plugins: [],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
configFile: 'redocly.yaml',
|
|
32
|
+
apis: {
|
|
33
|
+
'test@v1': {
|
|
34
|
+
root: 'resources/pets.yaml',
|
|
35
|
+
styleguide: { rules: { 'operation-summary': 'warn' } },
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
styleguide: {
|
|
40
|
+
rawConfig: {
|
|
41
|
+
rules: { 'operation-summary': 'error', 'no-empty-servers': 'error' },
|
|
42
|
+
plugins: [],
|
|
43
|
+
},
|
|
44
|
+
configFile: 'redocly.yaml',
|
|
45
|
+
ignore: {},
|
|
46
|
+
_usedRules: new Set(),
|
|
47
|
+
_usedVersions: new Set(),
|
|
48
|
+
recommendedFallback: false,
|
|
49
|
+
plugins: [],
|
|
50
|
+
doNotResolveExamples: false,
|
|
51
|
+
rules: {
|
|
52
|
+
oas2: { 'operation-summary': 'error', 'no-empty-servers': 'error' },
|
|
53
|
+
oas3_0: { 'operation-summary': 'error', 'no-empty-servers': 'error' },
|
|
54
|
+
oas3_1: { 'operation-summary': 'error', 'no-empty-servers': 'error' },
|
|
55
|
+
},
|
|
56
|
+
preprocessors: { oas2: {}, oas3_0: {}, oas3_1: {} },
|
|
57
|
+
decorators: { oas2: {}, oas3_0: {}, oas3_1: {} },
|
|
58
|
+
} as unknown as StyleguideConfig,
|
|
59
|
+
theme: {
|
|
60
|
+
openapi: {},
|
|
61
|
+
mockServer: {},
|
|
62
|
+
},
|
|
63
|
+
resolve: { http: { headers: [] } },
|
|
64
|
+
organization: 'redocly-test',
|
|
65
|
+
files: [],
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
describe('getMergedConfig', () => {
|
|
69
|
+
it('should get styleguide defined in "apis" section', () => {
|
|
70
|
+
expect(getMergedConfig(testConfig, 'test@v1')).toMatchInlineSnapshot(`
|
|
71
|
+
Config {
|
|
72
|
+
"apis": Object {
|
|
73
|
+
"test@v1": Object {
|
|
74
|
+
"root": "resources/pets.yaml",
|
|
75
|
+
"styleguide": Object {
|
|
76
|
+
"rules": Object {
|
|
77
|
+
"operation-summary": "warn",
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
"configFile": "redocly.yaml",
|
|
83
|
+
"files": Array [],
|
|
84
|
+
"organization": "redocly-test",
|
|
85
|
+
"rawConfig": Object {
|
|
86
|
+
"apis": Object {
|
|
87
|
+
"test@v1": Object {
|
|
88
|
+
"root": "resources/pets.yaml",
|
|
89
|
+
"styleguide": Object {
|
|
90
|
+
"rules": Object {
|
|
91
|
+
"operation-summary": "warn",
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
"files": Array [],
|
|
97
|
+
"organization": "redocly-test",
|
|
98
|
+
"styleguide": Object {
|
|
99
|
+
"extendPaths": Array [],
|
|
100
|
+
"pluginPaths": Array [],
|
|
101
|
+
"rules": Object {
|
|
102
|
+
"operation-summary": "warn",
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
"telemetry": "on",
|
|
106
|
+
"theme": Object {},
|
|
107
|
+
},
|
|
108
|
+
"region": undefined,
|
|
109
|
+
"resolve": Object {
|
|
110
|
+
"http": Object {
|
|
111
|
+
"customFetch": undefined,
|
|
112
|
+
"headers": Array [],
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
"styleguide": StyleguideConfig {
|
|
116
|
+
"_usedRules": Set {},
|
|
117
|
+
"_usedVersions": Set {},
|
|
118
|
+
"configFile": "redocly.yaml",
|
|
119
|
+
"decorators": Object {
|
|
120
|
+
"oas2": Object {},
|
|
121
|
+
"oas3_0": Object {},
|
|
122
|
+
"oas3_1": Object {},
|
|
123
|
+
},
|
|
124
|
+
"doNotResolveExamples": false,
|
|
125
|
+
"extendPaths": Array [],
|
|
126
|
+
"ignore": Object {},
|
|
127
|
+
"pluginPaths": Array [],
|
|
128
|
+
"plugins": Array [],
|
|
129
|
+
"preprocessors": Object {
|
|
130
|
+
"oas2": Object {},
|
|
131
|
+
"oas3_0": Object {},
|
|
132
|
+
"oas3_1": Object {},
|
|
133
|
+
},
|
|
134
|
+
"rawConfig": Object {
|
|
135
|
+
"extendPaths": Array [],
|
|
136
|
+
"pluginPaths": Array [],
|
|
137
|
+
"rules": Object {
|
|
138
|
+
"operation-summary": "warn",
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
"recommendedFallback": false,
|
|
142
|
+
"rules": Object {
|
|
143
|
+
"oas2": Object {
|
|
144
|
+
"operation-summary": "warn",
|
|
145
|
+
},
|
|
146
|
+
"oas3_0": Object {
|
|
147
|
+
"operation-summary": "warn",
|
|
148
|
+
},
|
|
149
|
+
"oas3_1": Object {
|
|
150
|
+
"operation-summary": "warn",
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
},
|
|
154
|
+
"telemetry": "on",
|
|
155
|
+
"theme": Object {},
|
|
156
|
+
}
|
|
157
|
+
`);
|
|
158
|
+
});
|
|
159
|
+
it('should take into account a config file', () => {
|
|
160
|
+
const result = getMergedConfig(testConfig, 'test@v1');
|
|
161
|
+
expect(result.configFile).toEqual('redocly.yaml');
|
|
162
|
+
expect(result.styleguide.configFile).toEqual('redocly.yaml');
|
|
163
|
+
});
|
|
164
|
+
it('should return the same config when there is no alias provided', () => {
|
|
165
|
+
expect(getMergedConfig(testConfig)).toEqual(testConfig);
|
|
166
|
+
});
|
|
167
|
+
it('should handle wrong alias - return the same styleguide, empty features', () => {
|
|
168
|
+
expect(getMergedConfig(testConfig, 'wrong-alias')).toMatchInlineSnapshot(`
|
|
169
|
+
Config {
|
|
170
|
+
"apis": Object {
|
|
171
|
+
"test@v1": Object {
|
|
172
|
+
"root": "resources/pets.yaml",
|
|
173
|
+
"styleguide": Object {
|
|
174
|
+
"rules": Object {
|
|
175
|
+
"operation-summary": "warn",
|
|
176
|
+
},
|
|
177
|
+
},
|
|
178
|
+
},
|
|
179
|
+
},
|
|
180
|
+
"configFile": "redocly.yaml",
|
|
181
|
+
"files": Array [],
|
|
182
|
+
"organization": "redocly-test",
|
|
183
|
+
"rawConfig": Object {
|
|
184
|
+
"apis": Object {
|
|
185
|
+
"test@v1": Object {
|
|
186
|
+
"root": "resources/pets.yaml",
|
|
187
|
+
"styleguide": Object {
|
|
188
|
+
"rules": Object {
|
|
189
|
+
"operation-summary": "warn",
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
"files": Array [],
|
|
195
|
+
"organization": "redocly-test",
|
|
196
|
+
"styleguide": Object {
|
|
197
|
+
"extendPaths": Array [],
|
|
198
|
+
"pluginPaths": Array [],
|
|
199
|
+
"plugins": Array [],
|
|
200
|
+
"rules": Object {
|
|
201
|
+
"no-empty-servers": "error",
|
|
202
|
+
"operation-summary": "error",
|
|
203
|
+
},
|
|
204
|
+
},
|
|
205
|
+
"telemetry": "on",
|
|
206
|
+
"theme": Object {},
|
|
207
|
+
},
|
|
208
|
+
"region": undefined,
|
|
209
|
+
"resolve": Object {
|
|
210
|
+
"http": Object {
|
|
211
|
+
"customFetch": undefined,
|
|
212
|
+
"headers": Array [],
|
|
213
|
+
},
|
|
214
|
+
},
|
|
215
|
+
"styleguide": StyleguideConfig {
|
|
216
|
+
"_usedRules": Set {},
|
|
217
|
+
"_usedVersions": Set {},
|
|
218
|
+
"configFile": "redocly.yaml",
|
|
219
|
+
"decorators": Object {
|
|
220
|
+
"oas2": Object {},
|
|
221
|
+
"oas3_0": Object {},
|
|
222
|
+
"oas3_1": Object {},
|
|
223
|
+
},
|
|
224
|
+
"doNotResolveExamples": false,
|
|
225
|
+
"extendPaths": Array [],
|
|
226
|
+
"ignore": Object {},
|
|
227
|
+
"pluginPaths": Array [],
|
|
228
|
+
"plugins": Array [],
|
|
229
|
+
"preprocessors": Object {
|
|
230
|
+
"oas2": Object {},
|
|
231
|
+
"oas3_0": Object {},
|
|
232
|
+
"oas3_1": Object {},
|
|
233
|
+
},
|
|
234
|
+
"rawConfig": Object {
|
|
235
|
+
"extendPaths": Array [],
|
|
236
|
+
"pluginPaths": Array [],
|
|
237
|
+
"plugins": Array [],
|
|
238
|
+
"rules": Object {
|
|
239
|
+
"no-empty-servers": "error",
|
|
240
|
+
"operation-summary": "error",
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
"recommendedFallback": false,
|
|
244
|
+
"rules": Object {
|
|
245
|
+
"oas2": Object {
|
|
246
|
+
"no-empty-servers": "error",
|
|
247
|
+
"operation-summary": "error",
|
|
248
|
+
},
|
|
249
|
+
"oas3_0": Object {
|
|
250
|
+
"no-empty-servers": "error",
|
|
251
|
+
"operation-summary": "error",
|
|
252
|
+
},
|
|
253
|
+
"oas3_1": Object {
|
|
254
|
+
"no-empty-servers": "error",
|
|
255
|
+
"operation-summary": "error",
|
|
256
|
+
},
|
|
257
|
+
},
|
|
258
|
+
},
|
|
259
|
+
"telemetry": "on",
|
|
260
|
+
"theme": Object {},
|
|
261
|
+
}
|
|
262
|
+
`);
|
|
263
|
+
});
|
|
264
|
+
});
|
|
265
|
+
|
|
266
|
+
describe('StyleguideConfig.extendTypes', () => {
|
|
267
|
+
let oas3 = jest.fn();
|
|
268
|
+
let oas2 = jest.fn();
|
|
269
|
+
let testRawConfigStyleguide = {
|
|
270
|
+
plugins: [
|
|
271
|
+
{
|
|
272
|
+
id: 'test-types-plugin',
|
|
273
|
+
typeExtension: {
|
|
274
|
+
oas3,
|
|
275
|
+
oas2,
|
|
276
|
+
},
|
|
277
|
+
},
|
|
278
|
+
],
|
|
279
|
+
};
|
|
280
|
+
it('should call only oas3 types extension', () => {
|
|
281
|
+
const styleguideConfig = new StyleguideConfig(testRawConfigStyleguide);
|
|
282
|
+
styleguideConfig.extendTypes({}, OasVersion.Version3_0);
|
|
283
|
+
expect(oas3).toHaveBeenCalledTimes(1);
|
|
284
|
+
expect(oas2).toHaveBeenCalledTimes(0);
|
|
285
|
+
});
|
|
286
|
+
it('should call only oas2 types extension', () => {
|
|
287
|
+
const styleguideConfig = new StyleguideConfig(testRawConfigStyleguide);
|
|
288
|
+
styleguideConfig.extendTypes({}, OasVersion.Version2);
|
|
289
|
+
expect(oas3).toHaveBeenCalledTimes(0);
|
|
290
|
+
expect(oas2).toHaveBeenCalledTimes(1);
|
|
291
|
+
});
|
|
292
|
+
it('should throw error if for oas version different from 2 and 3', () => {
|
|
293
|
+
const styleguideConfig = new StyleguideConfig(testRawConfigStyleguide);
|
|
294
|
+
expect(() => styleguideConfig.extendTypes({}, 'something else' as OasVersion)).toThrowError(
|
|
295
|
+
'Not implemented'
|
|
296
|
+
);
|
|
297
|
+
});
|
|
298
|
+
});
|
|
299
|
+
|
|
300
|
+
describe('generation ignore object', () => {
|
|
301
|
+
it('should generate config with absoluteUri for ignore', () => {
|
|
302
|
+
(readFileSync as jest.Mock<any, any>).mockImplementationOnce(() => '');
|
|
303
|
+
(parseYaml as jest.Mock<any, any>).mockImplementationOnce(() => ignoredFileStub);
|
|
304
|
+
(doesYamlFileExist as jest.Mock<any, any>).mockImplementationOnce(() => true);
|
|
305
|
+
|
|
306
|
+
jest.spyOn(path, 'resolve').mockImplementationOnce((_, filename) => `some-path/${filename}`);
|
|
307
|
+
|
|
308
|
+
const styleguideConfig = new StyleguideConfig(testConfig.styleguide);
|
|
309
|
+
|
|
310
|
+
expect(styleguideConfig).toMatchSnapshot();
|
|
311
|
+
});
|
|
312
|
+
});
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
const id = 'test-plugin';
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../config').PreprocessorsConfig} */
|
|
4
|
+
const preprocessors = {
|
|
5
|
+
oas2: {
|
|
6
|
+
'description-preprocessor': () => {
|
|
7
|
+
return {
|
|
8
|
+
Info(info) {
|
|
9
|
+
const title = info.title || 'API title';
|
|
10
|
+
info.description = `# ${title}\n\n${info.description || ''}`;
|
|
11
|
+
},
|
|
12
|
+
};
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
/** @type {import('../../config').CustomRulesConfig} */
|
|
18
|
+
const rules = {
|
|
19
|
+
oas3: {
|
|
20
|
+
'openid-connect-url-well-known': () => {
|
|
21
|
+
return {
|
|
22
|
+
SecurityScheme(scheme, { location, report }) {
|
|
23
|
+
if (scheme.type === 'openIdConnect') {
|
|
24
|
+
if (!scheme.openIdConnectUrl.endsWith('/.well-known/openid-configuration')) {
|
|
25
|
+
report({
|
|
26
|
+
message:
|
|
27
|
+
'openIdConnectUrl must be a URL that ends with /.well-known/openid-configuration',
|
|
28
|
+
location: location.child('openIdConnectUrl'),
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
/** @type {import('../../config').DecoratorsConfig} */
|
|
39
|
+
const decorators = {
|
|
40
|
+
oas3: {
|
|
41
|
+
'inject-x-stats': () => {
|
|
42
|
+
return {
|
|
43
|
+
Info(info) {
|
|
44
|
+
info['x-stats'] = { test: 1 };
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
module.exports = {
|
|
52
|
+
id,
|
|
53
|
+
preprocessors,
|
|
54
|
+
rules,
|
|
55
|
+
decorators,
|
|
56
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
const id = 'test-plugin-nested';
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../config').PreprocessorsConfig} */
|
|
4
|
+
const preprocessors = {
|
|
5
|
+
oas2: {
|
|
6
|
+
'description-preprocessor': () => {
|
|
7
|
+
return {
|
|
8
|
+
Info(info) {
|
|
9
|
+
const title = info.title || 'API title';
|
|
10
|
+
info.description = `# ${title}\n\n${info.description || ''}`;
|
|
11
|
+
},
|
|
12
|
+
};
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
/** @type {import('../../config').CustomRulesConfig} */
|
|
18
|
+
const rules = {
|
|
19
|
+
oas3: {
|
|
20
|
+
'openid-connect-url-well-known': () => {
|
|
21
|
+
return {
|
|
22
|
+
SecurityScheme(scheme, { location, report }) {
|
|
23
|
+
if (scheme.type === 'openIdConnect') {
|
|
24
|
+
if (
|
|
25
|
+
scheme.openIdConnectUrl &&
|
|
26
|
+
!scheme.openIdConnectUrl.endsWith('/.well-known/openid-configuration')
|
|
27
|
+
) {
|
|
28
|
+
report({
|
|
29
|
+
message:
|
|
30
|
+
'openIdConnectUrl must be a URL that ends with /.well-known/openid-configuration',
|
|
31
|
+
location: location.child('openIdConnectUrl'),
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
/** @type {import('../../config').DecoratorsConfig} */
|
|
42
|
+
const decorators = {
|
|
43
|
+
oas3: {
|
|
44
|
+
'inject-x-stats': () => {
|
|
45
|
+
return {
|
|
46
|
+
Info(info) {
|
|
47
|
+
info['x-stats'] = { test: 1 };
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
const configs = {
|
|
55
|
+
all: {
|
|
56
|
+
rules: {
|
|
57
|
+
'local/operation-id-not-test': 'error',
|
|
58
|
+
'boolean-parameter-prefixes': 'error',
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
module.exports = {
|
|
64
|
+
id,
|
|
65
|
+
preprocessors,
|
|
66
|
+
rules,
|
|
67
|
+
decorators,
|
|
68
|
+
configs,
|
|
69
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
rules:
|
|
2
|
+
no-invalid-media-type-examples: warn
|
|
3
|
+
operation-4xx-response: off
|
|
4
|
+
rule/tag-description:
|
|
5
|
+
subject:
|
|
6
|
+
type: Tag
|
|
7
|
+
property: description
|
|
8
|
+
message: Tag description must have at least 3 words.
|
|
9
|
+
severity: error
|
|
10
|
+
assertions:
|
|
11
|
+
test-plugin/checkWordsCount:
|
|
12
|
+
min: 3
|
|
13
|
+
plugins:
|
|
14
|
+
- plugin.js
|
|
15
|
+
extends:
|
|
16
|
+
- recommended
|
|
17
|
+
- test-plugin/all
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
rules:
|
|
2
|
+
no-invalid-media-type-examples: warn
|
|
3
|
+
operation-4xx-response: off
|
|
4
|
+
rule/tag-description:
|
|
5
|
+
subject: Tag
|
|
6
|
+
property: description
|
|
7
|
+
message: Tag description must be at least 13 characters and end with a full stop.
|
|
8
|
+
severity: error
|
|
9
|
+
minLength: 13
|
|
10
|
+
pattern: /\.$/
|
|
11
|
+
plugins:
|
|
12
|
+
- plugin.js
|
|
13
|
+
- api/plugin.js
|
|
14
|
+
extends:
|
|
15
|
+
- recommended
|
|
16
|
+
- api/nested-config.yaml
|
|
17
|
+
- test-plugin-nested/all
|
|
18
|
+
- test-plugin/all
|
package/src/config/__tests__/fixtures/resolve-config/local-config-with-wrong-custom-function.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
rules:
|
|
2
|
+
no-invalid-media-type-examples: warn
|
|
3
|
+
operation-4xx-response: off
|
|
4
|
+
rule/tag-description:
|
|
5
|
+
subject: Tag
|
|
6
|
+
property: description
|
|
7
|
+
message: Tag description must have at least 3 words.
|
|
8
|
+
severity: error
|
|
9
|
+
test-plugin/checkWordsCount2:
|
|
10
|
+
min: 3
|
|
11
|
+
plugins:
|
|
12
|
+
- plugin.js
|
|
13
|
+
extends:
|
|
14
|
+
- recommended
|
|
15
|
+
- test-plugin/all
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
const id = 'test-plugin';
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../config').PreprocessorsConfig} */
|
|
4
|
+
const preprocessors = {
|
|
5
|
+
oas2: {
|
|
6
|
+
'description-preprocessor': () => {
|
|
7
|
+
return {
|
|
8
|
+
Info(info) {
|
|
9
|
+
const title = info.title || 'API title';
|
|
10
|
+
info.description = `# ${title}\n\n${info.description || ''}`;
|
|
11
|
+
},
|
|
12
|
+
};
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
/** @type {import('../../config').CustomRulesConfig} */
|
|
18
|
+
const rules = {
|
|
19
|
+
oas3: {
|
|
20
|
+
'openid-connect-url-well-known': () => {
|
|
21
|
+
return {
|
|
22
|
+
SecurityScheme(scheme, { location, report }) {
|
|
23
|
+
if (scheme.type === 'openIdConnect') {
|
|
24
|
+
if (
|
|
25
|
+
scheme.openIdConnectUrl &&
|
|
26
|
+
!scheme.openIdConnectUrl.endsWith('/.well-known/openid-configuration')
|
|
27
|
+
) {
|
|
28
|
+
report({
|
|
29
|
+
message:
|
|
30
|
+
'openIdConnectUrl must be a URL that ends with /.well-known/openid-configuration',
|
|
31
|
+
location: location.child('openIdConnectUrl'),
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
/** @type {import('../../config').DecoratorsConfig} */
|
|
42
|
+
const decorators = {
|
|
43
|
+
oas3: {
|
|
44
|
+
'inject-x-stats': () => {
|
|
45
|
+
return {
|
|
46
|
+
Info(info) {
|
|
47
|
+
info['x-stats'] = { test: 1 };
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
const assertions = {
|
|
55
|
+
checkWordsCount: (value, opts, location) => {
|
|
56
|
+
const words = value.split(' ');
|
|
57
|
+
if (words.length >= opts.min) {
|
|
58
|
+
return { isValid: true };
|
|
59
|
+
}
|
|
60
|
+
return { isValid: false, location };
|
|
61
|
+
},
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
const configs = {
|
|
65
|
+
all: {
|
|
66
|
+
rules: {
|
|
67
|
+
'local/operation-id-not-test': 'error',
|
|
68
|
+
'boolean-parameter-prefixes': 'error',
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
module.exports = {
|
|
74
|
+
id,
|
|
75
|
+
preprocessors,
|
|
76
|
+
rules,
|
|
77
|
+
decorators,
|
|
78
|
+
configs,
|
|
79
|
+
assertions,
|
|
80
|
+
};
|