@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,95 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
import { Location } from '../../ref-utils';
|
|
3
|
+
import { Oas3Components } from '../../typings/openapi';
|
|
4
|
+
import { isEmptyObject } from '../../utils';
|
|
5
|
+
|
|
6
|
+
export const RemoveUnusedComponents: Oas3Rule = () => {
|
|
7
|
+
const components = new Map<
|
|
8
|
+
string,
|
|
9
|
+
{ used: boolean; componentType?: keyof Oas3Components; name: string }
|
|
10
|
+
>();
|
|
11
|
+
|
|
12
|
+
function registerComponent(
|
|
13
|
+
location: Location,
|
|
14
|
+
componentType: keyof Oas3Components,
|
|
15
|
+
name: string
|
|
16
|
+
): void {
|
|
17
|
+
components.set(location.absolutePointer, {
|
|
18
|
+
used: components.get(location.absolutePointer)?.used || false,
|
|
19
|
+
componentType,
|
|
20
|
+
name,
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return {
|
|
25
|
+
ref: {
|
|
26
|
+
leave(ref, { type, resolve, key }) {
|
|
27
|
+
if (
|
|
28
|
+
['Schema', 'Header', 'Parameter', 'Response', 'Example', 'RequestBody'].includes(
|
|
29
|
+
type.name
|
|
30
|
+
)
|
|
31
|
+
) {
|
|
32
|
+
const resolvedRef = resolve(ref);
|
|
33
|
+
if (!resolvedRef.location) return;
|
|
34
|
+
components.set(resolvedRef.location.absolutePointer, {
|
|
35
|
+
used: true,
|
|
36
|
+
name: key.toString(),
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
Root: {
|
|
42
|
+
leave(root, ctx) {
|
|
43
|
+
const data = ctx.getVisitorData() as { removedCount: number };
|
|
44
|
+
data.removedCount = 0;
|
|
45
|
+
|
|
46
|
+
components.forEach((usageInfo) => {
|
|
47
|
+
const { used, componentType, name } = usageInfo;
|
|
48
|
+
if (!used && componentType && root.components) {
|
|
49
|
+
const componentChild = root.components[componentType];
|
|
50
|
+
delete componentChild![name];
|
|
51
|
+
data.removedCount++;
|
|
52
|
+
if (isEmptyObject(componentChild)) {
|
|
53
|
+
delete root.components[componentType];
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
if (isEmptyObject(root.components)) {
|
|
58
|
+
delete root.components;
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
NamedSchemas: {
|
|
63
|
+
Schema(schema, { location, key }) {
|
|
64
|
+
if (!schema.allOf) {
|
|
65
|
+
registerComponent(location, 'schemas', key.toString());
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
NamedParameters: {
|
|
70
|
+
Parameter(_parameter, { location, key }) {
|
|
71
|
+
registerComponent(location, 'parameters', key.toString());
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
NamedResponses: {
|
|
75
|
+
Response(_response, { location, key }) {
|
|
76
|
+
registerComponent(location, 'responses', key.toString());
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
NamedExamples: {
|
|
80
|
+
Example(_example, { location, key }) {
|
|
81
|
+
registerComponent(location, 'examples', key.toString());
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
NamedRequestBodies: {
|
|
85
|
+
RequestBody(_requestBody, { location, key }) {
|
|
86
|
+
registerComponent(location, 'requestBodies', key.toString());
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
NamedHeaders: {
|
|
90
|
+
Header(_header, { location, key }) {
|
|
91
|
+
registerComponent(location, 'headers', key.toString());
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
};
|
|
95
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { Oas3Rule } from '../../visitors';
|
|
2
|
+
import type { UserContext } from '../../walk';
|
|
3
|
+
import { validateMimeTypeOAS3 } from '../../utils';
|
|
4
|
+
|
|
5
|
+
export const RequestMimeType: Oas3Rule = ({ allowedValues }) => {
|
|
6
|
+
return {
|
|
7
|
+
Paths: {
|
|
8
|
+
RequestBody: {
|
|
9
|
+
leave(requestBody, ctx: UserContext) {
|
|
10
|
+
validateMimeTypeOAS3({ type: 'consumes', value: requestBody }, ctx, allowedValues);
|
|
11
|
+
},
|
|
12
|
+
},
|
|
13
|
+
Callback: {
|
|
14
|
+
RequestBody() {},
|
|
15
|
+
Response: {
|
|
16
|
+
leave(response, ctx: UserContext) {
|
|
17
|
+
validateMimeTypeOAS3({ type: 'consumes', value: response }, ctx, allowedValues);
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
WebhooksMap: {
|
|
23
|
+
Response: {
|
|
24
|
+
leave(response, ctx: UserContext) {
|
|
25
|
+
validateMimeTypeOAS3({ type: 'consumes', value: response }, ctx, allowedValues);
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
import { UserContext } from '../../walk';
|
|
3
|
+
import { getMatchingStatusCodeRange } from '../../utils';
|
|
4
|
+
|
|
5
|
+
export const ResponseContainsProperty: Oas3Rule = (options) => {
|
|
6
|
+
const names: Record<string, string[]> = options.names || {};
|
|
7
|
+
let key: string | number;
|
|
8
|
+
return {
|
|
9
|
+
Operation: {
|
|
10
|
+
Response: {
|
|
11
|
+
skip: (_response, key) => {
|
|
12
|
+
return `${key}` === '204';
|
|
13
|
+
},
|
|
14
|
+
enter: (_response, ctx: UserContext) => {
|
|
15
|
+
key = ctx.key;
|
|
16
|
+
},
|
|
17
|
+
MediaType: {
|
|
18
|
+
Schema(schema, { report, location }) {
|
|
19
|
+
if (schema.type !== 'object') return;
|
|
20
|
+
const expectedProperties =
|
|
21
|
+
names[key] ||
|
|
22
|
+
names[getMatchingStatusCodeRange(key)] ||
|
|
23
|
+
names[getMatchingStatusCodeRange(key).toLowerCase()] ||
|
|
24
|
+
[];
|
|
25
|
+
for (const expectedProperty of expectedProperties) {
|
|
26
|
+
if (!schema.properties?.[expectedProperty]) {
|
|
27
|
+
report({
|
|
28
|
+
message: `Response object must contain a top-level "${expectedProperty}" property.`,
|
|
29
|
+
location: location.child('properties').key(),
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { Oas3Rule } from '../../visitors';
|
|
2
|
+
import type { UserContext } from '../../walk';
|
|
3
|
+
import { validateMimeTypeOAS3 } from '../../utils';
|
|
4
|
+
|
|
5
|
+
export const ResponseMimeType: Oas3Rule = ({ allowedValues }) => {
|
|
6
|
+
return {
|
|
7
|
+
Paths: {
|
|
8
|
+
Response: {
|
|
9
|
+
leave(response, ctx: UserContext) {
|
|
10
|
+
validateMimeTypeOAS3({ type: 'produces', value: response }, ctx, allowedValues);
|
|
11
|
+
},
|
|
12
|
+
},
|
|
13
|
+
Callback: {
|
|
14
|
+
Response() {},
|
|
15
|
+
RequestBody: {
|
|
16
|
+
leave(requestBody, ctx: UserContext) {
|
|
17
|
+
validateMimeTypeOAS3({ type: 'produces', value: requestBody }, ctx, allowedValues);
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
WebhooksMap: {
|
|
23
|
+
RequestBody: {
|
|
24
|
+
leave(requestBody, ctx: UserContext) {
|
|
25
|
+
validateMimeTypeOAS3({ type: 'produces', value: requestBody }, ctx, allowedValues);
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
import { Problem, UserContext } from '../../walk';
|
|
3
|
+
import { Location } from '../../ref-utils';
|
|
4
|
+
|
|
5
|
+
export const SpecComponentsInvalidMapName: Oas3Rule = () => {
|
|
6
|
+
const KEYS_REGEX = '^[a-zA-Z0-9\\.\\-_]+$';
|
|
7
|
+
|
|
8
|
+
function validateKey(
|
|
9
|
+
key: string | number,
|
|
10
|
+
report: (problem: Problem) => void,
|
|
11
|
+
location: Location,
|
|
12
|
+
component: string
|
|
13
|
+
) {
|
|
14
|
+
if (!new RegExp(KEYS_REGEX).test(key as string)) {
|
|
15
|
+
report({
|
|
16
|
+
message: `The map key in ${component} "${key}" does not match the regular expression "${KEYS_REGEX}"`,
|
|
17
|
+
location: location.key(),
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return {
|
|
23
|
+
NamedSchemas: {
|
|
24
|
+
Schema(_node, { key, report, location }: UserContext) {
|
|
25
|
+
validateKey(key, report, location, 'schemas');
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
NamedParameters: {
|
|
29
|
+
Parameter(_node, { key, report, location }: UserContext) {
|
|
30
|
+
validateKey(key, report, location, 'parameters');
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
NamedResponses: {
|
|
34
|
+
Response(_node, { key, report, location }: UserContext) {
|
|
35
|
+
validateKey(key, report, location, 'responses');
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
NamedExamples: {
|
|
39
|
+
Example(_node, { key, report, location }: UserContext) {
|
|
40
|
+
validateKey(key, report, location, 'examples');
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
NamedRequestBodies: {
|
|
44
|
+
RequestBody(_node, { key, report, location }: UserContext) {
|
|
45
|
+
validateKey(key, report, location, 'requestBodies');
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
NamedHeaders: {
|
|
49
|
+
Header(_node, { key, report, location }: UserContext) {
|
|
50
|
+
validateKey(key, report, location, 'headers');
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
NamedSecuritySchemes: {
|
|
54
|
+
SecurityScheme(_node, { key, report, location }: UserContext) {
|
|
55
|
+
validateKey(key, report, location, 'securitySchemes');
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
NamedLinks: {
|
|
59
|
+
Link(_node, { key, report, location }: UserContext) {
|
|
60
|
+
validateKey(key, report, location, 'links');
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
NamedCallbacks: {
|
|
64
|
+
Callback(_node, { key, report, location }: UserContext) {
|
|
65
|
+
validateKey(key, report, location, 'callbacks');
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { Oas3Parameter, OasRef, Oas3Tag } from '../../typings/openapi';
|
|
2
|
+
import { Oas2Parameter } from '../../typings/swagger';
|
|
3
|
+
import { StatsAccumulator } from '../../typings/common';
|
|
4
|
+
|
|
5
|
+
export const Stats = (statsAccumulator: StatsAccumulator) => {
|
|
6
|
+
return {
|
|
7
|
+
ExternalDocs: {
|
|
8
|
+
leave() {
|
|
9
|
+
statsAccumulator.externalDocs.total++;
|
|
10
|
+
},
|
|
11
|
+
},
|
|
12
|
+
ref: {
|
|
13
|
+
enter(ref: OasRef) {
|
|
14
|
+
statsAccumulator.refs.items!.add(ref['$ref']);
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
Tag: {
|
|
18
|
+
leave(tag: Oas3Tag) {
|
|
19
|
+
statsAccumulator.tags.items!.add(tag.name);
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
Link: {
|
|
23
|
+
leave(link: any) {
|
|
24
|
+
statsAccumulator.links.items!.add(link.operationId);
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
Root: {
|
|
28
|
+
leave() {
|
|
29
|
+
statsAccumulator.parameters.total = statsAccumulator.parameters.items!.size;
|
|
30
|
+
statsAccumulator.refs.total = statsAccumulator.refs.items!.size;
|
|
31
|
+
statsAccumulator.links.total = statsAccumulator.links.items!.size;
|
|
32
|
+
statsAccumulator.tags.total = statsAccumulator.tags.items!.size;
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
WebhooksMap: {
|
|
36
|
+
Operation: {
|
|
37
|
+
leave(operation: any) {
|
|
38
|
+
operation.tags.forEach((tag: string) => {
|
|
39
|
+
statsAccumulator.tags.items!.add(tag);
|
|
40
|
+
});
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
Paths: {
|
|
45
|
+
PathItem: {
|
|
46
|
+
leave() {
|
|
47
|
+
statsAccumulator.pathItems.total++;
|
|
48
|
+
},
|
|
49
|
+
Operation: {
|
|
50
|
+
leave(operation: any) {
|
|
51
|
+
statsAccumulator.operations.total++;
|
|
52
|
+
operation.tags &&
|
|
53
|
+
operation.tags.forEach((tag: string) => {
|
|
54
|
+
statsAccumulator.tags.items!.add(tag);
|
|
55
|
+
});
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
Parameter: {
|
|
59
|
+
leave(parameter: Oas2Parameter | Oas3Parameter) {
|
|
60
|
+
statsAccumulator.parameters.items!.add(parameter.name);
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
NamedSchemas: {
|
|
66
|
+
Schema: {
|
|
67
|
+
leave() {
|
|
68
|
+
statsAccumulator.schemas.total++;
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
};
|
|
73
|
+
};
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
import levenshtein = require('js-levenshtein');
|
|
2
|
+
import { UserContext } from '../walk';
|
|
3
|
+
import { Location } from '../ref-utils';
|
|
4
|
+
import { validateJsonSchema } from './ajv';
|
|
5
|
+
import { Oas3Schema, Referenced } from '../typings/openapi';
|
|
6
|
+
import { showErrorForDeprecatedField, showWarningForDeprecatedField } from '../utils';
|
|
7
|
+
|
|
8
|
+
export function oasTypeOf(value: unknown) {
|
|
9
|
+
if (Array.isArray(value)) {
|
|
10
|
+
return 'array';
|
|
11
|
+
} else if (value === null) {
|
|
12
|
+
return 'null';
|
|
13
|
+
} else if (Number.isInteger(value)) {
|
|
14
|
+
return 'integer';
|
|
15
|
+
} else {
|
|
16
|
+
return typeof value;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Checks if value matches specified JSON schema type
|
|
22
|
+
*
|
|
23
|
+
* @param {*} value - value to check
|
|
24
|
+
* @param {JSONSchemaType} type - JSON Schema type
|
|
25
|
+
* @returns boolean
|
|
26
|
+
*/
|
|
27
|
+
export function matchesJsonSchemaType(value: unknown, type: string, nullable: boolean): boolean {
|
|
28
|
+
if (nullable && value === null) {
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
switch (type) {
|
|
33
|
+
case 'array':
|
|
34
|
+
return Array.isArray(value);
|
|
35
|
+
case 'object':
|
|
36
|
+
return typeof value === 'object' && value !== null && !Array.isArray(value);
|
|
37
|
+
case 'null':
|
|
38
|
+
return value === null;
|
|
39
|
+
case 'integer':
|
|
40
|
+
return Number.isInteger(value);
|
|
41
|
+
default:
|
|
42
|
+
return typeof value === type;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export function missingRequiredField(type: string, field: string): string {
|
|
47
|
+
return `${type} object should contain \`${field}\` field.`;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export function fieldNonEmpty(type: string, field: string): string {
|
|
51
|
+
return `${type} object \`${field}\` must be non-empty string.`;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export function validateDefinedAndNonEmpty(fieldName: string, value: any, ctx: UserContext) {
|
|
55
|
+
if (typeof value !== 'object') {
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (value[fieldName] === undefined) {
|
|
60
|
+
ctx.report({
|
|
61
|
+
message: missingRequiredField(ctx.type.name, fieldName),
|
|
62
|
+
location: ctx.location.child([fieldName]).key(),
|
|
63
|
+
});
|
|
64
|
+
} else if (!value[fieldName]) {
|
|
65
|
+
ctx.report({
|
|
66
|
+
message: fieldNonEmpty(ctx.type.name, fieldName),
|
|
67
|
+
location: ctx.location.child([fieldName]).key(),
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function getSuggest(given: string, variants: string[]): string[] {
|
|
73
|
+
if (given === null) return variants;
|
|
74
|
+
|
|
75
|
+
if (typeof given !== 'string' || !variants.length) return [];
|
|
76
|
+
|
|
77
|
+
const distances: Array<{ variant: string; distance: number }> = [];
|
|
78
|
+
|
|
79
|
+
for (let i = 0; i < variants.length; i++) {
|
|
80
|
+
const distance = levenshtein(given, variants[i]);
|
|
81
|
+
if (distance < 4) {
|
|
82
|
+
distances.push({ distance, variant: variants[i] });
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
distances.sort((a, b) => a.distance - b.distance);
|
|
87
|
+
|
|
88
|
+
// if (bestMatch.distance <= 4) return bestMatch.string;
|
|
89
|
+
return distances.map((d) => d.variant);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export function validateExample(
|
|
93
|
+
example: any,
|
|
94
|
+
schema: Referenced<Oas3Schema>,
|
|
95
|
+
dataLoc: Location,
|
|
96
|
+
{ resolve, location, report }: UserContext,
|
|
97
|
+
allowAdditionalProperties: boolean
|
|
98
|
+
) {
|
|
99
|
+
try {
|
|
100
|
+
const { valid, errors } = validateJsonSchema(
|
|
101
|
+
example,
|
|
102
|
+
schema,
|
|
103
|
+
location.child('schema'),
|
|
104
|
+
dataLoc.pointer,
|
|
105
|
+
resolve,
|
|
106
|
+
allowAdditionalProperties
|
|
107
|
+
);
|
|
108
|
+
if (!valid) {
|
|
109
|
+
for (const error of errors) {
|
|
110
|
+
report({
|
|
111
|
+
message: `Example value must conform to the schema: ${error.message}.`,
|
|
112
|
+
location: {
|
|
113
|
+
...new Location(dataLoc.source, error.instancePath),
|
|
114
|
+
reportOnKey:
|
|
115
|
+
error.keyword === 'unevaluatedProperties' || error.keyword === 'additionalProperties',
|
|
116
|
+
},
|
|
117
|
+
from: location,
|
|
118
|
+
suggest: error.suggest,
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
} catch (e) {
|
|
123
|
+
if (e.message === 'discriminator: requires oneOf or anyOf composite keyword') {
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
report({
|
|
128
|
+
message: `Example validation errored: ${e.message}.`,
|
|
129
|
+
location: location.child('schema'),
|
|
130
|
+
from: location,
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
export function getAdditionalPropertiesOption(opts: Record<string, any>): boolean {
|
|
136
|
+
if (opts.disallowAdditionalProperties === undefined) {
|
|
137
|
+
return opts.allowAdditionalProperties;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
if (opts.allowAdditionalProperties !== undefined) {
|
|
141
|
+
showErrorForDeprecatedField(
|
|
142
|
+
'disallowAdditionalProperties',
|
|
143
|
+
'allowAdditionalProperties',
|
|
144
|
+
undefined
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
showWarningForDeprecatedField('disallowAdditionalProperties', 'allowAdditionalProperties');
|
|
149
|
+
return !opts.disallowAdditionalProperties;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export function validateSchemaEnumType(
|
|
153
|
+
schemaEnum: string[],
|
|
154
|
+
propertyValue: string,
|
|
155
|
+
propName: string,
|
|
156
|
+
refLocation: Location | undefined,
|
|
157
|
+
{ report, location }: UserContext
|
|
158
|
+
) {
|
|
159
|
+
if (!schemaEnum) {
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
if (!schemaEnum.includes(propertyValue)) {
|
|
163
|
+
report({
|
|
164
|
+
location,
|
|
165
|
+
message: `\`${propName}\` can be one of the following only: ${schemaEnum
|
|
166
|
+
.map((type) => `"${type}"`)
|
|
167
|
+
.join(', ')}.`,
|
|
168
|
+
from: refLocation,
|
|
169
|
+
suggest: getSuggest(propertyValue, schemaEnum),
|
|
170
|
+
});
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export function validateResponseCodes(
|
|
175
|
+
responseCodes: string[],
|
|
176
|
+
codeRange: string,
|
|
177
|
+
{ report }: UserContext
|
|
178
|
+
) {
|
|
179
|
+
const responseCodeRegexp = new RegExp(`^${codeRange[0]}[0-9Xx]{2}$`);
|
|
180
|
+
|
|
181
|
+
const containsNeededCode = responseCodes.some(
|
|
182
|
+
(code) =>
|
|
183
|
+
(codeRange === '2XX' && code === 'default') || // It's OK to replace 2xx codes with the default
|
|
184
|
+
responseCodeRegexp.test(code)
|
|
185
|
+
);
|
|
186
|
+
|
|
187
|
+
if (!containsNeededCode) {
|
|
188
|
+
report({
|
|
189
|
+
message: `Operation must have at least one \`${codeRange}\` response.`,
|
|
190
|
+
location: { reportOnKey: true },
|
|
191
|
+
});
|
|
192
|
+
}
|
|
193
|
+
}
|