Socket
Socket
Sign inDemoInstall

api-schema-builder

Package Overview
Dependencies
Maintainers
2
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

api-schema-builder

build schema with validators for each endpoint


Version published
Weekly downloads
33K
decreased by-14.09%
Maintainers
2
Weekly downloads
 
Created
Source

api-schema-builder

NPM Version Build Status Coverage Status Known Vulnerabilities Apache 2.0 License

This package is used to build schema for input validation base on openapi doc Swagger (Open API) definition and ajv

Table of Contents

Install

npm install --save api-schema-builder

API

How to use

var apiSchemaBuilder = require('api-schema-builder');

api-schema-builder.buildSchema(PathToSwaggerFile, options)

Build schema that contains ajv validators for each endpoint, it base on swagger definition.

The function return Promise.

Arguments
  • PathToSwaggerFile – Path to the swagger definition
  • options – Additional options for build the schema.
Response

Array that contains:

  • path_name: the paths it written in the api doc, for example /pet.
    • method: the relevant method it written in the api doc, for example get.
      • parameters:
        • validate: ajv validator that check: paths, files, queries and headers.
        • errors: in case of fail validation it return array of errors, otherwise return null
      • body:
        • validate: ajv validator that check: body only.
        • errors: in case of fail validation it return array of errors, otherwise return null
      • responses: contain array of statusCodes
        • statusCode:
          • validate: ajv validator that check body and headers.
          • errors: in case of fail validation it return array of errors, otherwise return null
Options

Options currently supports:.

  • formats - Array of formats that can be added to ajv configuration, each element in the array should include name and pattern.
  • keywords - Array of keywords that can be added to ajv configuration, each element in the array can be either an object or a function. If the element is an object, it must include name and definition. If the element is a function, it should accept ajv as its first argument and inside the function you need to call ajv.addKeyword to add your custom keyword
  • makeOptionalAttributesNullable - Boolean that forces preprocessing of Swagger schema to include 'null' as possible type for all non-required properties. Main use-case for this is to ensure correct handling of null values when Ajv type coercion is enabled
  • ajvConfigBody - Object that will be passed as config to new Ajv instance which will be used for validating request body. Can be useful to e. g. enable type coercion (to automatically convert strings to numbers etc). See Ajv documentation for supported values.
  • ajvConfigParams - Object that will be passed as config to new Ajv instance which will be used for validating request body. See Ajv documentation for supported values.
  • contentTypeValidation - Boolean that indicates if to perform content type validation in case consume field is specified and the request body is not empty.
  • expectFormFieldsInBody - Boolean that indicates whether form fields of non-file type that are specified in the schema should be validated against request body (e. g. Multer is copying text form fields to body)
  • buildRequests - Boolean that indicates whether if create validators for requests, default is true.
  • buildResponses - Boolean that indicates whether if create validators for responses, default is false.
formats: [
    { name: 'double', pattern: /\d+\.(\d+)+/ },
    { name: 'int64', pattern: /^\d{1,19}$/ },
    { name: 'int32', pattern: /^\d{1,10}$/ }
]

Usage Example

Validate request

apiSchemaBuilder.buildSchema('test/unit-tests/input-validation/pet-store-swagger.yaml')
.then(function (schema) {
    let schemaEndpoint = schema['/pet']['post'];
    
    //validate request's parameters
    let isParametersMatch = schemaEndpoint.parameters.validate({ query: {},
    headers: { 'public-key': '1.0'},path: {},files: undefined });
    expect(schemaEndpoint.parameters.errors).to.be.equal(null);
    expect(isParametersMatch).to.be.true;
    
    //validate request's body
    let isBodysMatch =schemaEndpoint.body.validate({'bark': 111});
    expect(schemaEndpoint.body.errors).to.be.eql([{
            'dataPath': '.bark',
            'keyword': 'type',
            'message': 'should be string',
            'params': {
                'type': 'string'
            },
            'schemaPath': '#/properties/bark/type'}
    ])
    expect(isBodysMatch).to.be.false;
});

Validate response

apiSchemaBuilder.buildSchema('test/unit-tests/input-validation/pet-store-swagger.yaml')
.then(function (schema) {
    let schemaEndpoint = schema['/pet']['post'].responses['201'];
    //validate response's body and headers
    let isValid = schemaEndpoint.validate({
            body :{ id:11, 'name': 111},
            headers:{'x-next': '321'}
        })
    expect(schemaEndpoint.errors).to.be.eql([
    {
        'dataPath': '.body.name',
        'keyword': 'type',
        'message': 'should be string',
        'params': {
            'type': 'string'
        },
        'schemaPath': '#/body/properties/name/type'
    }])
    expect(isValid).to.be.false;

});

Important Notes

  • Objects - it is important to set any objects with the property type: object inside your swagger file, although it isn't a must in the Swagger (OpenAPI) spec in order to validate it accurately with ajv it must be marked as object
  • Response validator - it support now only open api 2.

Open api 3 - known issues

  • supporting inheritance with discriminator , only if the ancestor object is the discriminator.
  • The discriminator supports in the inheritance chain stop when getting to a child with no discriminator (a leaf in the inheritance tree), meaning a leaf can't have a field which starts a new inheritance tree. so child with no discriminator cant point to other child with discriminator,

Running Tests

Using mocha and istanbul

npm run test

Keywords

FAQs

Package last updated on 27 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc