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

vercel-serverless-tests

v1.0.1

Published

A Helper to make tests with vercel-serverless-api package

Downloads

13

Readme

Vercel Serverless API Tests

Code Quality Status

Build Status Coverage Status

vercel-serverless-api-tests Banner

Description

A Helper to make tests with vercel-serverless-api package

Installation

npm i vercel-serverless-tests --save-dev

Sinon

The package offers Sinon to help you to realize the tests


const { sinon } = require('vercel-serverless-tests');

Tests

The package has 3 levels to help you:

  • Handler
  • It
  • Context

Handler

In order to make easier test the Handler, offers the testHandler function, this has a response dummy.

  • testHandler(request, response)
    • request
      • url optional | string
      • method optional | string
      • cookies optional | object
      • headers optional | object
      • queries optional | object
      • pathIds optional | object
      • body optional | object
    • response
      • status optional | default: 200
      • headers optional | object
      • body optional | any
const VercelServerlessApiTests = require('vercel-serverless-tests');

const handler = require('../../api/test/get');

const ApiTest = new VercelServerlessApiTests(handler);

describe('Test API', () => {
    context('When try the It Block', () => {
        it('Should return status code 200 with message body and x-custom header', async () => {

            await ApiTest.testHandler({
                url: 'api/test/10',
                method: 'POST',
                headers: { 'Content-Type': 'application/json' },
                pathIds: { id: 10 },
                body: { message: 'Try it!' }
            },{
                status: 201,
                headers: { 'x-custom': true },
                body: { message: 'Got It!' }
            });
        });
    });
});

It

In order to try to make a Standard, an easy way to make an It block.

  • itTest(properties)
    • properties
      • description optional | string | It description
      • only optional | boolean | If you want to execute this only tests
      • skip optional | string | If you want to skip the tests
      • request optional | object | Request - Same as before
      • response optional | object | Response - Same as before
      • before optional | function | If want to do something before to trigger the handler
      • after optional | function | If want to do something after to trigger the handler
const { sinon, ...VercelServerlessApiTests} = require('vercel-serverless-tests');

const handler = require('../../api/test/get');
const Model = require('../../models/test);

const ApiTest = new VercelServerlessApiTests(handler);

describe('Test API', () => {
    context('When try the It Block', () => {
        ApiTest.itTest({
            description: 'Should return status code 200 with message body and x-custom header',
            only: true,
            request: {
                url: 'api/test/10',
                method: 'POST',
                headers: { 'Content-Type': 'application/json' },
                pathIds: { id: 10 },
                body: { message: 'Try it!' }
            },
            response: {
                status: 201,
                headers: { 'x-custom': true },
                body: { message: 'Got It!' }
            },
            before: () => {
                sinon.stub(Model.prototype, 'get').resolves([]);
            },
            after: () => {
                sinon.assert.calledOnce(Model.prototype.get);
            }
        });
    });
});

Context

To make multiple It blocks under a context

  • contextTest(description, tests, options)
    • description required | string | Context descriptition
    • tests required | Array of properties (See It)
    • options optional
      • skip optional | boolean | For skip whole context
      • only optional | boolean | For execute only this context
      • before optional | function | Do somenthing before every tests
      • beforeEach optional | function | Do somenthing before each tests
      • after optional | function | Do somenthing after every tests
      • afterEach optional | function | Do somenthing after each tests
const { sinon, ...VercelServerlessApiTests} = require('vercel-serverless-tests');

const handler = require('../../api/test/get');
const Model = require('../../models/test);

const ApiTest = new VercelServerlessApiTests(handler);

describe('Test API', () => {
    ApiTest.contextTest('When try the It Block', [
        {
            description: 'Should return status code 200 with message body and x-custom header',
            request: {
                url: 'api/test/10',
                method: 'POST',
                headers: { 'Content-Type': 'application/json' },
                pathIds: { id: 10 },
                body: { message: 'Try it!' }
            },
            response: {
                status: 201,
                headers: { 'x-custom': true },
                body: { message: 'Got It!' }
            },
            before: () => {
                sinon.stub(Model.prototype, 'get').resolves([]);
            },
            after: () => {
                sinon.assert.calledOnce(Model.prototype.get);
            }
        }
    ], {
        only: true,
        before: () => {
            process.env.Secret = '100000';
        },
        beforeEach: () => {
            sinon.stub(Model.prototype, 'save');
        },
        afterEach: () => {
            sinon.assert.notCalled(Model.prototype, 'save');
        },
        after: () => {
            process.env.Secret = undefined;
        }
    });

Bug :bug:

Report Here

Idea :bulb:

Tell me