-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3.1 Schema: Move scripts and tests to root
- Loading branch information
1 parent
eccada9
commit bd7a645
Showing
6 changed files
with
67 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "schemas/v3.1/openapi3-examples"] | ||
path = schemas/v3.1/openapi3-examples | ||
[submodule "tests/v3.1/openapi3-examples"] | ||
path = tests/openapi3-examples | ||
url = [email protected]:Mermade/openapi3-examples.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#!/usr/bin/env node | ||
|
||
const fs = require("fs"); | ||
const yaml = require("yaml"); | ||
const JsonSchema = require("@hyperjump/json-schema"); | ||
const dialect = require("../schemas/v3.1/dialect/base.schema.json"); | ||
const vocabulary = require("../schemas/v3.1/meta/base.schema.json"); | ||
|
||
|
||
if (process.argv.length < 3) { | ||
console.log("Usage: validate [--schema=schema] [--version=2021-03-02] [--format=BASIC] path-to-file.yaml"); | ||
console.log("\t--schema: (Default: schema) The name of the yaml schema file to use"); | ||
console.log("\t--version: (Default: 2021-03-02) The version of the yaml schema file to use"); | ||
console.log("\t--format: (Default: BASIC) The JSON Schema output format to use. Options: FLAG, BASIC, DETAILED, VERBOSE"); | ||
process.exit(1); | ||
} | ||
|
||
const args = process.argv.reduce((acc, arg) => { | ||
if (!arg.startsWith("--")) return acc; | ||
|
||
const [argName, argValue] = arg.substring(2).split("=", 2); | ||
return { ...acc, [argName]: argValue }; | ||
}, {}); | ||
|
||
(async function () { | ||
try { | ||
// Config | ||
JsonSchema.setMetaOutputFormat(outputFormat); | ||
//JsonSchema.setShouldMetaValidate(false); | ||
|
||
const schemaType = args.schema || "schema"; | ||
const schemaVersion = args.version || "2021-03-02"; | ||
const ouputFormat = args.format || JsonSchema.BASIC; | ||
|
||
// Load schemas | ||
JsonSchema.add(dialect); | ||
JsonSchema.add(vocabulary); | ||
fs.readdirSync(`${__dirname}/../schemas/v3.1`, { withFileTypes: true }) | ||
.filter((entry) => entry.isFile() && /\.yaml$/.test(entry.name)) | ||
.map((entry) => fs.readFileSync(`${__dirname}/../schemas/v3.1/${entry.name}`, "utf8")) | ||
.map((schemaYaml) => yaml.parse(schemaYaml)) | ||
.forEach((schema) => JsonSchema.add(schema)); | ||
|
||
// Compile / meta-validate | ||
const schema = await JsonSchema.get(`https://spec.openapis.org/oas/3.1/${schemaType}/${schemaVersion}`); | ||
const validateSchema = await JsonSchema.validate(schema); | ||
|
||
// Validate instance | ||
const instanceYaml = fs.readFileSync(`${process.cwd()}/${process.argv[process.argv.length - 1]}`, "utf8"); | ||
const instance = yaml.parse(instanceYaml); | ||
const results = validateSchema(instance, outputFormat); | ||
console.log(JSON.stringify(results, null, " ")); | ||
} catch (error) { | ||
console.log("************* Error ***************"); | ||
console.log(error); | ||
console.log(JSON.stringify(error.output, null, " ")); | ||
} | ||
}()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters