api ➡️ doc ➡️ validator
Annotations
Parameters of annotations
Usage
@url
@url [METHOD] path
@baseUrl
@baseurl path
Final url will be /v1/users
@params
Validate parameters of @url
path
@params [OBJECT_NAME =] json-schema|OBJECT_NAME
or with OBJECT_NAME
assign for future use
or use an external schema as root schema
or extend external schema
@query
Validate @url
query parameters
@query [OBJECT_NAME =] json-schema|OBJECT_NAME
Example of valid request GET /users?id=1
Names of fields in @params
and query
should be different to use them in @call
@body
@body [# Description] [OBJECT_NAME =] json-schema|OBJECT_NAME
@response
Response http code and validation of response body.
@response [CODE] [# Description] [OBJECT_NAME =] json-schema|OBJECT_NAME
Response for 200
code
Validators for different codes of same request
@namespace
Shortcut @ns
Word used to filter validators in target file.
Example of generation express middleware with only test
validators
npx adv -c path/to/config.json -n test -e ./test-validator.js
@schema
Define the new schema for future usage
@schema OBJECT_NAME = json-schema|OBJECT_NAME
or just to make shorter schema name
@call
You should provide valid js code of method call. This code will be used in your API tests.
@call object-method-call
METHOD
HTTP request method. Default is config.defaultMethod
GET|POST|PUT|DELETE|HEAD|OPTIONS
CODE
HTTP response code. Default is config.defaultCode
Formats:
200
regular code number2xx
any code between 200 and 299200 - 400
any code between 200 and 400200 || 3xx || 400 - 500
or expression
Example
path
URL pathname
. For path parsing used path-to-regexp lib.
Parameters like :id
can be used in @call
as parameter of method call with same name.
OBJECT_NAME
Any valid js object name like objectName
or with field of any deep objectName.fieldName.field
json-schema
Object that describes how validate another object. For validation used ajv.
For syntax details see adv-parser
object-method-call
Uniq sample of JavaScript code with some method call of some object, which will be generated for testing purposes.
In method call you can use named parameters from @url
There can be any number of nested objects and any method name. Only names of parameters should be equal.
CLI
with npx
npx adv -c path/to/config.json
Parameters:
-c, --config <path> path to config json file
-i, --include <path> path to source file
-a, --api-client <path> generate api client
-d, --api-dts <path> generate api client .d.ts file
-b, --base-url <url> default Api.baseUrl
-p, --base-path <path> base path for @see filename comment
-e, --express <path> generate express middleware validator
-o, --open-api <path> generate Swagger OpenAPI v3 json
-j, --json <path> save endpoints to json file
-s, --only-schemas [names...] save schemas instead of endpoints to json file
-n, --namespace <namespace> generate validators only with this namespace or comma separated namespaces
-M, --default-method <method> default @url METHOD
-C, --default-code <code> default @response CODE
-S, --default-schemas <path...> path to js file with default schemas
-J, --jsdoc-methods <boolean> generate methods @type, default true
-T, --jsdoc-typedefs <boolean> generate @typedef, default true
-R, --jsdoc-refs <boolean> use references to jsdoc @typedef or replace them with reference body, default true
-I, --include-jsdoc <boolean> include to endpoints standard jsdoc annotations, default false
-P, --extra-props <boolean> value for ajv "object" additionalProperties, default false
-N, --class-name <string> name of generated api client class, default "Api"
--path-to-regexp <boolean> whether to add a path-to-regexp support, default true
--request-method <boolean> whether to add a Api.request method, default true
--get-ajv-method <boolean> whether to add a Api.getAjv method, default true
--error-handler-method <boolean> whether to add a Api.errorHandler method, default true
API client
Install in to your project packages ajv, ajv-formats (optional if you not using String patterns), request (if you don't like request
then you will need to implement Api.request
) and path-to-regexp. Client will depend on them.
Generate the API client with npx adv -c path/to/config.json -a path/to/your/app/api-client.js
Example
Generated api-client.js
will export class Api
.
const Api = require('./path/to/your/app/api-client.js');
const client = new Api();
console.log(Api.baseUrl);
console.log(Api.endpoints);
Api.getAjv = () => createYourAjvInstance();
Api.request = function ({
method,
url,
params /* url params like /:id */,
query,
body,
endpoint /* object from Api.endpoints */,
context /* Api class instance */
}) {
return sendRequestReturnPromise(context.baseUrl + url);
}
Api.errorHandler = function (err) {
console.error(err);
throw err;
};
await client.addUser({id: 1, name: 'Test'});
client.users.get({id: 1} )
.then(user => {
console.log(user.name);
console.log(client.requestCookieJar);
})
.catch(err => {
});
Express middleware
Install in to your project packages ajv, ajv-formats (optional if you not using String patterns) and path-to-regexp. Middleware depends on them.
Generate the middleware with npx adv -c path/to/config.json -e path/to/your/app/validator.js
Then add middleware to your express app
const validator = require('./path/to/your/app/validator.js');
validator.getAjv = () => createYourAjvInstance();
app.use(validator);
app.post('...', (req, res) => {});
app.use(function (err, req, res, next) {
if (err instanceof validator.RequestValidationError) {
}
else if (err instanceof validator.ResponseValidationError) {
}
else {
next(err);
}
if (err instanceof validator.ValidationError) {
}
else {
next(err);
}
});
Universal middleware
Generate the middleware with npx adv -c path/to/config.json -e path/to/your/app/validator.js
Then add it to your app
const validator = require('./validator.js');
function sendMessage(path, data) {
try {
var validateResponse = validator({
url: path,
body: data,
});
}
catch (err) {
}
return ajax(path, data).then(function (result) {
if (validateResponse) {
try {
validateResponse(result);
}
catch (err) {
}
}
return result;
});
}
Swagger OpenAPI
Generate Swagger OpenAPI v3 json with npx adv -c path/to/config.json -o path/to/open-api.json
Validation errors handling
Both Api class and middleware exports three classes:
ValidationError
- base class, extends Error
RequestValidationError
- class of request validation error, extends ValidationError
ResponseValidationError
- class of response validation error, extends ValidationError
let err;
let context;
if (err instanceof context.RequestValidationError) {
console.log(err.message);
console.log(err.property);
console.log(err.errors);
}
else if (err instanceof context.ResponseValidationError) {
console.log(err.message);
console.log(err.errors);
}
if (err instanceof context.ValidationError) {
console.log(err.message);
console.log(err.property);
console.log(err.errors);
}
Config
include
array of paths to files relative to config path, glob pattern usedexclude
array of paths to files to be excludeddefaultMethod
overwrites default METHOD. Default is GET
defaultCode
overwrites default CODE. Default is 200
defaultSchemas
same as --default-schemas <path>
jsdocMethods
generate @type
for each method. Default is true
jsdocTypedefs
generate @typedef
for each named schema. Default is true
jsdocRefs
use references to @typedef
or replace them with reference body. Default is true
apiClient
same as --api-client <path>
apiDts
same as --api-dts <path>
basePath
same as --base-path <path>
json
same as --json <path>
onlySchemas
array of schemas names to be saved as json. Could be true
or empty array then will be exported all schemas.
If no json
parameter passed then formatted json will output to consoleexpress
same as --express <path>
openApi
same as --open-api <path>
namespace
same as --namespace <namespace>
includeJsdoc
same as --include-jsdoc <boolean>
extraProps
same as --extra-props <boolean>
All paths are relative to config file location.
Example
{
"include": [
"src/**/*.js",
"src/**/*.php"
],
"exclude": [
"src/tests"
],
"defaultMethod": "POST",
"defaultCode": "2xx || 301"
}