@redocly/openapi-core 1.0.0-rc.3 → 1.0.1
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 +7 -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,158 @@
|
|
|
1
|
+
import { Problem, UserContext } from '../../walk';
|
|
2
|
+
import { Oas2Rule, Oas3Rule, Oas3Visitor } from '../../visitors';
|
|
3
|
+
import {
|
|
4
|
+
Oas3Definition,
|
|
5
|
+
Oas3Parameter,
|
|
6
|
+
Oas3RequestBody,
|
|
7
|
+
Oas3Response,
|
|
8
|
+
Oas3Schema,
|
|
9
|
+
OasRef,
|
|
10
|
+
} from '../../typings/openapi';
|
|
11
|
+
|
|
12
|
+
const TYPE_NAME_SCHEMA = 'Schema';
|
|
13
|
+
const TYPE_NAME_PARAMETER = 'Parameter';
|
|
14
|
+
const TYPE_NAME_RESPONSE = 'Response';
|
|
15
|
+
const TYPE_NAME_REQUEST_BODY = 'RequestBody';
|
|
16
|
+
|
|
17
|
+
const TYPE_NAME_TO_OPTION_COMPONENT_NAME: { [key: string]: string } = {
|
|
18
|
+
[TYPE_NAME_SCHEMA]: 'schemas',
|
|
19
|
+
[TYPE_NAME_PARAMETER]: 'parameters',
|
|
20
|
+
[TYPE_NAME_RESPONSE]: 'responses',
|
|
21
|
+
[TYPE_NAME_REQUEST_BODY]: 'requestBodies',
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export const ComponentNameUnique: Oas3Rule | Oas2Rule = (options) => {
|
|
25
|
+
const components = new Map<string, Set<string>>();
|
|
26
|
+
|
|
27
|
+
const typeNames: string[] = [];
|
|
28
|
+
if (options.schemas !== 'off') {
|
|
29
|
+
typeNames.push(TYPE_NAME_SCHEMA);
|
|
30
|
+
}
|
|
31
|
+
if (options.parameters !== 'off') {
|
|
32
|
+
typeNames.push(TYPE_NAME_PARAMETER);
|
|
33
|
+
}
|
|
34
|
+
if (options.responses !== 'off') {
|
|
35
|
+
typeNames.push(TYPE_NAME_RESPONSE);
|
|
36
|
+
}
|
|
37
|
+
if (options.requestBodies !== 'off') {
|
|
38
|
+
typeNames.push(TYPE_NAME_REQUEST_BODY);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const rule: Oas3Visitor = {
|
|
42
|
+
ref: {
|
|
43
|
+
leave(ref: OasRef, { type, resolve }: UserContext) {
|
|
44
|
+
const typeName = type.name;
|
|
45
|
+
if (typeNames.includes(typeName)) {
|
|
46
|
+
const resolvedRef = resolve(ref);
|
|
47
|
+
if (!resolvedRef.location) return;
|
|
48
|
+
|
|
49
|
+
addComponentFromAbsoluteLocation(
|
|
50
|
+
typeName,
|
|
51
|
+
resolvedRef.location.absolutePointer.toString()
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
Root: {
|
|
57
|
+
leave(root: Oas3Definition, ctx: UserContext) {
|
|
58
|
+
components.forEach((value, key, _) => {
|
|
59
|
+
if (value.size > 1) {
|
|
60
|
+
const component = getComponentFromKey(key);
|
|
61
|
+
const optionComponentName = getOptionComponentNameForTypeName(component.typeName);
|
|
62
|
+
const definitions = Array.from(value)
|
|
63
|
+
.map((v) => `- ${v}`)
|
|
64
|
+
.join('\n');
|
|
65
|
+
|
|
66
|
+
const problem: Problem = {
|
|
67
|
+
message: `Component '${optionComponentName}/${component.componentName}' is not unique. It is defined at:\n${definitions}`,
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
const componentSeverity = optionComponentName ? options[optionComponentName] : null;
|
|
71
|
+
if (componentSeverity) {
|
|
72
|
+
problem.forceSeverity = componentSeverity;
|
|
73
|
+
}
|
|
74
|
+
ctx.report(problem);
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
if (options.schemas != 'off') {
|
|
82
|
+
rule.NamedSchemas = {
|
|
83
|
+
Schema(_: Oas3Schema, { location }: UserContext) {
|
|
84
|
+
addComponentFromAbsoluteLocation(TYPE_NAME_SCHEMA, location.absolutePointer.toString());
|
|
85
|
+
},
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
if (options.responses != 'off') {
|
|
90
|
+
rule.NamedResponses = {
|
|
91
|
+
Response(_: Oas3Response, { location }: UserContext) {
|
|
92
|
+
addComponentFromAbsoluteLocation(TYPE_NAME_RESPONSE, location.absolutePointer.toString());
|
|
93
|
+
},
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
if (options.parameters != 'off') {
|
|
98
|
+
rule.NamedParameters = {
|
|
99
|
+
Parameter(_: Oas3Parameter, { location }: UserContext) {
|
|
100
|
+
addComponentFromAbsoluteLocation(TYPE_NAME_PARAMETER, location.absolutePointer.toString());
|
|
101
|
+
},
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
if (options.requestBodies != 'off') {
|
|
106
|
+
rule.NamedRequestBodies = {
|
|
107
|
+
RequestBody(_: Oas3RequestBody, { location }: UserContext) {
|
|
108
|
+
addComponentFromAbsoluteLocation(
|
|
109
|
+
TYPE_NAME_REQUEST_BODY,
|
|
110
|
+
location.absolutePointer.toString()
|
|
111
|
+
);
|
|
112
|
+
},
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
return rule;
|
|
117
|
+
|
|
118
|
+
function getComponentNameFromAbsoluteLocation(absoluteLocation: string): string {
|
|
119
|
+
const componentName = absoluteLocation.split('/').slice(-1)[0];
|
|
120
|
+
if (
|
|
121
|
+
componentName.endsWith('.yml') ||
|
|
122
|
+
componentName.endsWith('.yaml') ||
|
|
123
|
+
componentName.endsWith('.json')
|
|
124
|
+
) {
|
|
125
|
+
return componentName.slice(0, componentName.lastIndexOf('.'));
|
|
126
|
+
}
|
|
127
|
+
return componentName;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
function addFoundComponent(
|
|
131
|
+
typeName: string,
|
|
132
|
+
componentName: string,
|
|
133
|
+
absoluteLocation: string
|
|
134
|
+
): void {
|
|
135
|
+
const key = getKeyForComponent(typeName, componentName);
|
|
136
|
+
const locations = components.get(key) ?? new Set();
|
|
137
|
+
locations.add(absoluteLocation);
|
|
138
|
+
components.set(key, locations);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
function addComponentFromAbsoluteLocation(typeName: string, absoluteLocation: string): void {
|
|
142
|
+
const componentName = getComponentNameFromAbsoluteLocation(absoluteLocation);
|
|
143
|
+
addFoundComponent(typeName, componentName, absoluteLocation);
|
|
144
|
+
}
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
function getOptionComponentNameForTypeName(typeName: string): string | null {
|
|
148
|
+
return TYPE_NAME_TO_OPTION_COMPONENT_NAME[typeName] ?? null;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
function getKeyForComponent(typeName: string, componentName: string): string {
|
|
152
|
+
return `${typeName}/${componentName}`;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
function getComponentFromKey(key: string): { typeName: string; componentName: string } {
|
|
156
|
+
const [typeName, componentName] = key.split('/');
|
|
157
|
+
return { typeName, componentName };
|
|
158
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { Oas3RuleSet } from '../../oas-types';
|
|
2
|
+
import { OasSpec } from '../common/spec';
|
|
3
|
+
import { Operation2xxResponse } from '../common/operation-2xx-response';
|
|
4
|
+
import { Operation4xxResponse } from '../common/operation-4xx-response';
|
|
5
|
+
import { Assertions } from '../common/assertions';
|
|
6
|
+
import { OperationIdUnique } from '../common/operation-operationId-unique';
|
|
7
|
+
import { OperationParametersUnique } from '../common/operation-parameters-unique';
|
|
8
|
+
import { PathParamsDefined } from '../common/path-params-defined';
|
|
9
|
+
import { OperationTagDefined } from '../common/operation-tag-defined';
|
|
10
|
+
import { NoExampleValueAndExternalValue } from './no-example-value-and-externalValue';
|
|
11
|
+
import { NoEnumTypeMismatch } from '../common/no-enum-type-mismatch';
|
|
12
|
+
import { NoPathTrailingSlash } from '../common/no-path-trailing-slash';
|
|
13
|
+
import { PathDeclarationMustExist } from '../common/path-declaration-must-exist';
|
|
14
|
+
import { OperationIdUrlSafe } from '../common/operation-operationId-url-safe';
|
|
15
|
+
import { TagsAlphabetical } from '../common/tags-alphabetical';
|
|
16
|
+
import { NoServerExample } from './no-server-example.com';
|
|
17
|
+
import { NoServerTrailingSlash } from './no-server-trailing-slash';
|
|
18
|
+
import { TagDescription } from '../common/tag-description';
|
|
19
|
+
import { InfoContact } from '../common/info-contact';
|
|
20
|
+
import { InfoLicense } from '../common/info-license';
|
|
21
|
+
import { InfoLicenseUrl } from '../common/info-license-url';
|
|
22
|
+
import { OperationDescription } from '../common/operation-description';
|
|
23
|
+
import { NoUnusedComponents } from './no-unused-components';
|
|
24
|
+
import { PathNotIncludeQuery } from '../common/path-not-include-query';
|
|
25
|
+
import { ParameterDescription } from '../common/parameter-description';
|
|
26
|
+
import { OperationSingularTag } from '../common/operation-singular-tag';
|
|
27
|
+
import { SecurityDefined } from '../common/security-defined';
|
|
28
|
+
import { NoUnresolvedRefs } from '../no-unresolved-refs';
|
|
29
|
+
import { BooleanParameterPrefixes } from './boolean-parameter-prefixes';
|
|
30
|
+
import { PathsKebabCase } from '../common/paths-kebab-case';
|
|
31
|
+
import { PathHttpVerbsOrder } from '../common/path-http-verbs-order';
|
|
32
|
+
import { NoEmptyServers } from './no-empty-servers';
|
|
33
|
+
import { ValidContentExamples } from './no-invalid-media-type-examples';
|
|
34
|
+
import { NoIdenticalPaths } from '../common/no-identical-paths';
|
|
35
|
+
import { NoUndefinedServerVariable } from './no-undefined-server-variable';
|
|
36
|
+
import { OperationOperationId } from '../common/operation-operationId';
|
|
37
|
+
import { OperationSummary } from '../common/operation-summary';
|
|
38
|
+
import { NoAmbiguousPaths } from '../common/no-ambiguous-paths';
|
|
39
|
+
import { NoServerVariablesEmptyEnum } from './no-server-variables-empty-enum';
|
|
40
|
+
import { NoHttpVerbsInPaths } from '../common/no-http-verbs-in-paths';
|
|
41
|
+
import { RequestMimeType } from './request-mime-type';
|
|
42
|
+
import { ResponseMimeType } from './response-mime-type';
|
|
43
|
+
import { PathSegmentPlural } from '../common/path-segment-plural';
|
|
44
|
+
import { PathExcludesPatterns } from '../common/path-excludes-patterns';
|
|
45
|
+
import { NoInvalidSchemaExamples } from '../common/no-invalid-schema-examples';
|
|
46
|
+
import { NoInvalidParameterExamples } from '../common/no-invalid-parameter-examples';
|
|
47
|
+
import { ResponseContainsHeader } from '../common/response-contains-header';
|
|
48
|
+
import { ResponseContainsProperty } from './response-contains-property';
|
|
49
|
+
import { ScalarPropertyMissingExample } from '../common/scalar-property-missing-example';
|
|
50
|
+
import { SpecComponentsInvalidMapName } from './spec-components-invalid-map-name';
|
|
51
|
+
import { Operation4xxProblemDetailsRfc7807 } from './operation-4xx-problem-details-rfc7807';
|
|
52
|
+
import { RequiredStringPropertyMissingMinLength } from '../common/required-string-property-missing-min-length';
|
|
53
|
+
import { SpecStrictRefs } from '../common/spec-strict-refs';
|
|
54
|
+
import { ComponentNameUnique } from './component-name-unique';
|
|
55
|
+
|
|
56
|
+
export const rules = {
|
|
57
|
+
spec: OasSpec,
|
|
58
|
+
'info-contact': InfoContact,
|
|
59
|
+
'info-license': InfoLicense,
|
|
60
|
+
'info-license-url': InfoLicenseUrl,
|
|
61
|
+
'operation-2xx-response': Operation2xxResponse,
|
|
62
|
+
'operation-4xx-response': Operation4xxResponse,
|
|
63
|
+
'operation-4xx-problem-details-rfc7807': Operation4xxProblemDetailsRfc7807,
|
|
64
|
+
assertions: Assertions,
|
|
65
|
+
'operation-operationId-unique': OperationIdUnique,
|
|
66
|
+
'operation-parameters-unique': OperationParametersUnique,
|
|
67
|
+
'path-parameters-defined': PathParamsDefined,
|
|
68
|
+
'operation-tag-defined': OperationTagDefined,
|
|
69
|
+
'no-example-value-and-externalValue': NoExampleValueAndExternalValue,
|
|
70
|
+
'no-enum-type-mismatch': NoEnumTypeMismatch,
|
|
71
|
+
'no-path-trailing-slash': NoPathTrailingSlash,
|
|
72
|
+
'no-empty-servers': NoEmptyServers,
|
|
73
|
+
'path-declaration-must-exist': PathDeclarationMustExist,
|
|
74
|
+
'operation-operationId-url-safe': OperationIdUrlSafe,
|
|
75
|
+
'operation-operationId': OperationOperationId,
|
|
76
|
+
'operation-summary': OperationSummary,
|
|
77
|
+
'tags-alphabetical': TagsAlphabetical,
|
|
78
|
+
'no-server-example.com': NoServerExample,
|
|
79
|
+
'no-server-trailing-slash': NoServerTrailingSlash,
|
|
80
|
+
'tag-description': TagDescription,
|
|
81
|
+
'operation-description': OperationDescription,
|
|
82
|
+
'no-unused-components': NoUnusedComponents,
|
|
83
|
+
'path-not-include-query': PathNotIncludeQuery,
|
|
84
|
+
'path-params-defined': PathParamsDefined,
|
|
85
|
+
'parameter-description': ParameterDescription,
|
|
86
|
+
'operation-singular-tag': OperationSingularTag,
|
|
87
|
+
'security-defined': SecurityDefined,
|
|
88
|
+
'no-unresolved-refs': NoUnresolvedRefs,
|
|
89
|
+
'paths-kebab-case': PathsKebabCase,
|
|
90
|
+
'boolean-parameter-prefixes': BooleanParameterPrefixes,
|
|
91
|
+
'path-http-verbs-order': PathHttpVerbsOrder,
|
|
92
|
+
'no-invalid-media-type-examples': ValidContentExamples,
|
|
93
|
+
'no-identical-paths': NoIdenticalPaths,
|
|
94
|
+
'no-ambiguous-paths': NoAmbiguousPaths,
|
|
95
|
+
'no-undefined-server-variable': NoUndefinedServerVariable,
|
|
96
|
+
'no-server-variables-empty-enum': NoServerVariablesEmptyEnum,
|
|
97
|
+
'no-http-verbs-in-paths': NoHttpVerbsInPaths,
|
|
98
|
+
'path-excludes-patterns': PathExcludesPatterns,
|
|
99
|
+
'request-mime-type': RequestMimeType,
|
|
100
|
+
'response-mime-type': ResponseMimeType,
|
|
101
|
+
'path-segment-plural': PathSegmentPlural,
|
|
102
|
+
'no-invalid-schema-examples': NoInvalidSchemaExamples,
|
|
103
|
+
'no-invalid-parameter-examples': NoInvalidParameterExamples,
|
|
104
|
+
'response-contains-header': ResponseContainsHeader,
|
|
105
|
+
'response-contains-property': ResponseContainsProperty,
|
|
106
|
+
'scalar-property-missing-example': ScalarPropertyMissingExample,
|
|
107
|
+
'spec-components-invalid-map-name': SpecComponentsInvalidMapName,
|
|
108
|
+
'required-string-property-missing-min-length': RequiredStringPropertyMissingMinLength,
|
|
109
|
+
'spec-strict-refs': SpecStrictRefs,
|
|
110
|
+
'component-name-unique': ComponentNameUnique,
|
|
111
|
+
} as Oas3RuleSet;
|
|
112
|
+
|
|
113
|
+
export const preprocessors = {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
|
|
3
|
+
export const NoEmptyServers: Oas3Rule = () => {
|
|
4
|
+
return {
|
|
5
|
+
Root(root, { report, location }) {
|
|
6
|
+
if (!root.hasOwnProperty('servers')) {
|
|
7
|
+
report({
|
|
8
|
+
message: 'Servers must be present.',
|
|
9
|
+
location: location.child(['openapi']).key(),
|
|
10
|
+
});
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
if (!Array.isArray(root.servers) || root.servers.length === 0) {
|
|
15
|
+
report({
|
|
16
|
+
message: 'Servers must be a non-empty array.',
|
|
17
|
+
location: location.child(['servers']).key(),
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
|
|
3
|
+
export const NoExampleValueAndExternalValue: Oas3Rule = () => {
|
|
4
|
+
return {
|
|
5
|
+
Example(example, { report, location }) {
|
|
6
|
+
if (example.value && example.externalValue) {
|
|
7
|
+
report({
|
|
8
|
+
message: 'Example object can have either `value` or `externalValue` fields.',
|
|
9
|
+
location: location.child(['value']).key(),
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
import { Location, isRef } from '../../ref-utils';
|
|
3
|
+
import { Oas3Example } from '../../typings/openapi';
|
|
4
|
+
import { getAdditionalPropertiesOption, validateExample } from '../utils';
|
|
5
|
+
import { UserContext } from '../../walk';
|
|
6
|
+
|
|
7
|
+
export const ValidContentExamples: Oas3Rule = (opts) => {
|
|
8
|
+
const allowAdditionalProperties = getAdditionalPropertiesOption(opts) ?? false;
|
|
9
|
+
|
|
10
|
+
return {
|
|
11
|
+
MediaType: {
|
|
12
|
+
leave(mediaType, ctx: UserContext) {
|
|
13
|
+
const { location, resolve } = ctx;
|
|
14
|
+
if (!mediaType.schema) return;
|
|
15
|
+
if (mediaType.example) {
|
|
16
|
+
resolveAndValidateExample(mediaType.example, location.child('example'));
|
|
17
|
+
} else if (mediaType.examples) {
|
|
18
|
+
for (const exampleName of Object.keys(mediaType.examples)) {
|
|
19
|
+
resolveAndValidateExample(
|
|
20
|
+
mediaType.examples[exampleName],
|
|
21
|
+
location.child(['examples', exampleName, 'value']),
|
|
22
|
+
true
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function resolveAndValidateExample(
|
|
28
|
+
example: Oas3Example | any,
|
|
29
|
+
location: Location,
|
|
30
|
+
isMultiple?: boolean
|
|
31
|
+
) {
|
|
32
|
+
if (isRef(example)) {
|
|
33
|
+
const resolved = resolve<Oas3Example>(example);
|
|
34
|
+
if (!resolved.location) return;
|
|
35
|
+
location = isMultiple ? resolved.location.child('value') : resolved.location;
|
|
36
|
+
example = resolved.node;
|
|
37
|
+
}
|
|
38
|
+
validateExample(
|
|
39
|
+
isMultiple ? example.value : example,
|
|
40
|
+
mediaType.schema!,
|
|
41
|
+
location,
|
|
42
|
+
ctx,
|
|
43
|
+
allowAdditionalProperties
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
|
|
3
|
+
export const NoServerExample: Oas3Rule = () => {
|
|
4
|
+
return {
|
|
5
|
+
Server(server, { report, location }) {
|
|
6
|
+
if (['example.com', 'localhost'].indexOf(server.url) !== -1) {
|
|
7
|
+
report({
|
|
8
|
+
message: 'Server `url` should not point at example.com.',
|
|
9
|
+
location: location.child(['url']),
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
|
|
3
|
+
export const NoServerTrailingSlash: Oas3Rule = () => {
|
|
4
|
+
return {
|
|
5
|
+
Server(server, { report, location }) {
|
|
6
|
+
if (!server.url) return;
|
|
7
|
+
if (server.url.endsWith('/') && server.url !== '/') {
|
|
8
|
+
report({
|
|
9
|
+
message: 'Server `url` should not have a trailing slash.',
|
|
10
|
+
location: location.child(['url']),
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Oas3Server } from 'core/src/typings/openapi';
|
|
2
|
+
import { Oas3Rule } from '../../visitors';
|
|
3
|
+
|
|
4
|
+
enum enumError {
|
|
5
|
+
empty = 'empty',
|
|
6
|
+
invalidDefaultValue = 'invalidDefaultValue',
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export const NoServerVariablesEmptyEnum: Oas3Rule = () => {
|
|
10
|
+
return {
|
|
11
|
+
Root(root, { report, location }) {
|
|
12
|
+
if (!root.servers || root.servers.length === 0) return;
|
|
13
|
+
|
|
14
|
+
const invalidVariables: enumError[] = [];
|
|
15
|
+
|
|
16
|
+
if (Array.isArray(root.servers)) {
|
|
17
|
+
for (const server of root.servers) {
|
|
18
|
+
const enumErrors = checkEnumVariables(server);
|
|
19
|
+
if (!enumErrors) continue;
|
|
20
|
+
invalidVariables.push(...enumErrors);
|
|
21
|
+
}
|
|
22
|
+
} else {
|
|
23
|
+
const enumErrors = checkEnumVariables(root.servers);
|
|
24
|
+
if (!enumErrors) return;
|
|
25
|
+
invalidVariables.push(...enumErrors);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
for (const invalidVariable of invalidVariables) {
|
|
29
|
+
if (invalidVariable === enumError.empty) {
|
|
30
|
+
report({
|
|
31
|
+
message: 'Server variable with `enum` must be a non-empty array.',
|
|
32
|
+
location: location.child(['servers']).key(),
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
if (invalidVariable === enumError.invalidDefaultValue) {
|
|
36
|
+
report({
|
|
37
|
+
message:
|
|
38
|
+
'Server variable define `enum` and `default`. `enum` must include default value',
|
|
39
|
+
location: location.child(['servers']).key(),
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
function checkEnumVariables(server: Oas3Server): enumError[] | undefined {
|
|
48
|
+
if (server.variables && Object.keys(server.variables).length === 0) return;
|
|
49
|
+
|
|
50
|
+
const errors: enumError[] = [];
|
|
51
|
+
for (const variable in server.variables) {
|
|
52
|
+
const serverVariable = server.variables[variable];
|
|
53
|
+
if (!serverVariable.enum) continue;
|
|
54
|
+
|
|
55
|
+
if (Array.isArray(serverVariable.enum) && serverVariable.enum?.length === 0)
|
|
56
|
+
errors.push(enumError.empty);
|
|
57
|
+
|
|
58
|
+
if (!serverVariable.default) continue;
|
|
59
|
+
|
|
60
|
+
const defaultValue = server.variables[variable].default;
|
|
61
|
+
if (serverVariable.enum && !serverVariable.enum.includes(defaultValue))
|
|
62
|
+
errors.push(enumError.invalidDefaultValue);
|
|
63
|
+
}
|
|
64
|
+
if (errors.length) return errors;
|
|
65
|
+
return;
|
|
66
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
|
|
3
|
+
export const NoUndefinedServerVariable: Oas3Rule = () => {
|
|
4
|
+
return {
|
|
5
|
+
Server(server, { report, location }) {
|
|
6
|
+
if (!server.url) return;
|
|
7
|
+
const urlVariables = server.url.match(/{[^}]+}/g)?.map((e) => e.slice(1, e.length - 1)) || [];
|
|
8
|
+
const definedVariables = (server?.variables && Object.keys(server.variables)) || [];
|
|
9
|
+
|
|
10
|
+
for (const serverVar of urlVariables) {
|
|
11
|
+
if (!definedVariables.includes(serverVar)) {
|
|
12
|
+
report({
|
|
13
|
+
message: `The \`${serverVar}\` variable is not defined in the \`variables\` objects.`,
|
|
14
|
+
location: location.child(['url']),
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
for (const definedServerVar of definedVariables) {
|
|
20
|
+
if (!urlVariables.includes(definedServerVar)) {
|
|
21
|
+
report({
|
|
22
|
+
message: `The \`${definedServerVar}\` variable is not used in the server's \`url\` field.`,
|
|
23
|
+
location: location.child(['variables', definedServerVar]).key(),
|
|
24
|
+
from: location.child('url'),
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { Oas3Rule } from '../../visitors';
|
|
2
|
+
import { Location } from '../../ref-utils';
|
|
3
|
+
|
|
4
|
+
export const NoUnusedComponents: Oas3Rule = () => {
|
|
5
|
+
const components = new Map<string, { used: boolean; location: Location; name: string }>();
|
|
6
|
+
|
|
7
|
+
function registerComponent(location: Location, name: string): void {
|
|
8
|
+
components.set(location.absolutePointer, {
|
|
9
|
+
used: components.get(location.absolutePointer)?.used || false,
|
|
10
|
+
location,
|
|
11
|
+
name,
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
return {
|
|
16
|
+
ref(ref, { type, resolve, key, location }) {
|
|
17
|
+
if (
|
|
18
|
+
['Schema', 'Header', 'Parameter', 'Response', 'Example', 'RequestBody'].includes(type.name)
|
|
19
|
+
) {
|
|
20
|
+
const resolvedRef = resolve(ref);
|
|
21
|
+
if (!resolvedRef.location) return;
|
|
22
|
+
components.set(resolvedRef.location.absolutePointer, {
|
|
23
|
+
used: true,
|
|
24
|
+
name: key.toString(),
|
|
25
|
+
location,
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
Root: {
|
|
30
|
+
leave(_, { report }) {
|
|
31
|
+
components.forEach((usageInfo) => {
|
|
32
|
+
if (!usageInfo.used) {
|
|
33
|
+
report({
|
|
34
|
+
message: `Component: "${usageInfo.name}" is never used.`,
|
|
35
|
+
location: usageInfo.location.key(),
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
NamedSchemas: {
|
|
42
|
+
Schema(schema, { location, key }) {
|
|
43
|
+
if (!schema.allOf) {
|
|
44
|
+
// FIXME: find a better way to detect possible discriminator
|
|
45
|
+
registerComponent(location, key.toString());
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
NamedParameters: {
|
|
50
|
+
Parameter(_parameter, { location, key }) {
|
|
51
|
+
registerComponent(location, key.toString());
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
NamedResponses: {
|
|
55
|
+
Response(_response, { location, key }) {
|
|
56
|
+
registerComponent(location, key.toString());
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
NamedExamples: {
|
|
60
|
+
Example(_example, { location, key }) {
|
|
61
|
+
registerComponent(location, key.toString());
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
NamedRequestBodies: {
|
|
65
|
+
RequestBody(_requestBody, { location, key }) {
|
|
66
|
+
registerComponent(location, key.toString());
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
NamedHeaders: {
|
|
70
|
+
Header(_header, { location, key }) {
|
|
71
|
+
registerComponent(location, key.toString());
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
};
|
|
75
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { Oas3Rule } from '../../visitors';
|
|
2
|
+
import type { UserContext } from '../../walk';
|
|
3
|
+
import { validateDefinedAndNonEmpty } from '../utils';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Validation according to rfc7807 - https://datatracker.ietf.org/doc/html/rfc7807
|
|
7
|
+
*/
|
|
8
|
+
export const Operation4xxProblemDetailsRfc7807: Oas3Rule = () => {
|
|
9
|
+
return {
|
|
10
|
+
Response: {
|
|
11
|
+
skip(_, key: string | number) {
|
|
12
|
+
return !/4[Xx0-9]{2}/.test(`${key}`);
|
|
13
|
+
},
|
|
14
|
+
enter(response, { report, location }: UserContext) {
|
|
15
|
+
if (!response.content || !response.content['application/problem+json'])
|
|
16
|
+
report({
|
|
17
|
+
message: 'Response `4xx` must have content-type `application/problem+json`.',
|
|
18
|
+
location: location.key(),
|
|
19
|
+
});
|
|
20
|
+
},
|
|
21
|
+
MediaType: {
|
|
22
|
+
skip(_, key: string | number) {
|
|
23
|
+
return key !== 'application/problem+json';
|
|
24
|
+
},
|
|
25
|
+
enter(media, ctx: UserContext) {
|
|
26
|
+
validateDefinedAndNonEmpty('schema', media, ctx);
|
|
27
|
+
},
|
|
28
|
+
SchemaProperties(schema, ctx: UserContext) {
|
|
29
|
+
validateDefinedAndNonEmpty('type', schema, ctx);
|
|
30
|
+
validateDefinedAndNonEmpty('title', schema, ctx);
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
};
|