cnam/jwt-api-extension

Behat extension for testing api secure with jwt token base in Behat WebApiExtension

Installs: 630

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 6

Open Issues: 0

Type:behat-extension

0.0.1 2015-03-29 13:38 UTC

This package is auto-updated.

Last update: 2024-03-27 01:48:28 UTC


README

Behat extension for testing api secure with jwt token

forked from Behat/WebApiExtension

Added methods

Then I am authenticating with jwt token as "admin"

And response should contain jwt token in field "token"

And response should contain jwt token in field "token" with data

examples tests/features

usage

Installation

composer install cnam/jwt-api-extension:0.0.1

OR update your composer.json add

require "cnam/jwt-api-extension":"0.0.1"

Configure behat.yml

default:
    formatters:
        progress: true
        pretty: true
    extensions:
        Behat\JwtApiExtension\ServiceContainer\JwtApiExtension:
            base_url: http://mockserver.test/
            secret_key: Very_secret_key
            header_name: X-Access-Token
            encoded_field_name: name
            token_prefix: ''
            ttl: 86400
    suites:
        jwt_suite:
            paths:    [ %paths.base%/tests/features ]
            contexts: ['Behat\JwtApiExtension\Context\JwtApiContext']