npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

v-sight

v2.3.7

Published

V-sight looking to API routes for validation test.

Downloads

403

Readme

Installation

sudo npm install v-sight

How it works

It uses Joi schema signature for API schemas as input and will check for test cases by making suited payloads or queries and will return result that contains unexpected responses from API calls for each route as below:

Test cases

This module supports these test cases already:

  • missing_one: All properties except one will be sent in request and the response status code shoud be 400 if missed one is required and should not be 400 if it is one of optionals .
  • fake_property: All properties added one fake property which response should be 400.
  • fake_post_query: For REST APIs POST method just accepts payloads so to test these case you can add this to your cases in options.

API

defaults(configs)

Adding default options as an object as below properties:

  • baseUrl: the url will be used for all tests like http://localhost:800.
  • testCases: An array with test cases as items like['fake_property', 'missing_one'].

look(schemas, [options], [testCases], callback)

Will run all test cases which have been provided.

  • schemas: the Joi schemas
  • options:
    • testCases: as testsCases in defaults.If not set all test cases will be applied.
    • timeout: requests timeouts. If there is a timeout for any request it will be throw as an error with the url inside it, default is 3000 milliseconds.
    • first_error: if set as false all errors will be returned, default is true.
    • baseUrl: You may need to change base url for a set of tests so add it here.
    • login: As an object for all routes which need authentication
      • url : the login route which will use baseUrl as its base.
      • auth: As an object which have all properties for login credentials.
  • challback(errors): will be called when there is first error fror all cases.

Examples and usage

v_sight = require('v-sight')

// Setting defaults
v_sight.defaults({ baseUrl: 'http://localhost:8080' })

// Setting options for a role
var options = {
  login: {
    url: '/v1/users/login',
    auth: {
      email: '[email protected]',
      password: 'test-password-1',
    }
  }
}

// User signup validations
schemas = {
  'post/v1/users/buy': {
    payload: {
      product_id: Joi.string().required(),
      description: Joi.string().optional(),
      address: Joi.object().keys({
        City: Joi.string().required().default('Tehran'),
        Street: Joi.string().required()
      }
    },
    defaults: {
      product_id: '1234',
      description: 'This is my desired one',
      address: {
        Street: 'Motahari'
      }
    }
  }
}

v_sight.look(schemas, options, (errors) => {
  if(errors) {
    console.log(errors)
  }
})

Returned errors structure

All fialed tests have these two signatures:

  1. When first_error has been set as true.default is true.
{
  code: 'http status codes',
  url: 'baseUrl + route',
  flag: 'from schema or fake for fake_property test case',
  server_message: 'returning message from server',
  help: 'a message will help you to find the error'
}
  1. when first_error has been set as false.
{
  'post/users/signup': [
    {
      // as 1
    }
    ...
  ]
  ...
}

Use with Mocha and chai

When using mocha you can call done() in callback:

var should = require('chai').should();

describe('Users', () => {
  it('should be validate for all requireds, optinals'), function(done) {
    v_sight.look(user_Options, user_schemas, (errors) => {
      should.not.exist(errors)
      done()
    })
});