@ptkhanh94npm/dolorum-eos-sequi

1.0.0 • Public • Published

Cypress JWT Creation

Create JWT tokens with ease

npm (scoped) npm (types) npm (licence)

Cypress Installation

yarn add @ptkhanh94npm/dolorum-eos-sequi

Then in your cypress Plugins file:

const {JwtCreation} = require('@ptkhanh94npm/dolorum-eos-sequi');

module.exports = (on, config) => {
    // ...
    on('task', JwtCreation(config));
    // ...
    return config;
};

Cypress Usage

describe('Hit an authenticated endpoint', () => {
    it('Should be able to get a response', async function () {
        cy.request('/users/me').then($response => {

            const token = await cy.task('generateToken', {
                privateKey: '/path/to/private.key',
                issuer:     'cypress-tester',
                algo:       'RS256',
                expires:    '1 day',
                claims:     {
                    capabilities: 'superuser'
                }
            });

            // use token in your requests
        });
    });
});

The Private Key

Due to the fact that this plugin runs on the Cypress Backend, the location of the private key file must be defined as either the full path on disk or relative path to the running of the cypress command. You can define the file location either with an environment variable which can apply to all tests:

config.env.jwtPrivateKey

or within each individial test using the options below. In addition, you can also define the JWT algorithm if different from the default RS256 with:

config.env.jwtAlgo

Options

Option Description Optional Default
privateKey The location of the private key file true config.env.jwtPrivateKey
issuer Issuer string true "cypress.testing"
algo The request method of the endpoint true config.env.jwtAlgo or RS256
expires English interval of token expiry true "1 day"
claims An object of extra claims you might want to set true {}

Compiling Source

yarn install
yarn build
yarn test

Readme

Keywords

Package Sidebar

Install

npm i @ptkhanh94npm/dolorum-eos-sequi

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

14.3 kB

Total Files

10

Last publish

Collaborators

  • skylerlabsventure