Socket
Socket
Sign inDemoInstall

lambda-tdd

Package Overview
Dependencies
Maintainers
1
Versions
310
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lambda-tdd

Test Framework for AWS Lambda


Version published
Weekly downloads
539
decreased by-56.53%
Maintainers
1
Weekly downloads
 
Created
Source

Test Framework for AWS Lambda

Build Status Test Coverage Greenkeeper badge Dependencies NPM Downloads Semantic-Release Gardener Gitter

Testing Framework for AWS Lambda. Very useful for integration testing as you can examine how your lambda function executes for certain input and specific environment variables. Tries to model the cloud execution as closely as possible.

What it does

  • Tests are defined as JSON files
  • Test are dynamically evaluated using Chai
  • Lambda functions are executed using Lambda-Wrapper
  • Supports external request mocking using Nock
  • Allows setting of environment variables on a per test granularity
  • Freeze execution to specific timestamp with Timekeeper
  • Set lambda timeout (context.getRemainingTimeInMillis())
  • Set test timeout
  • Specify event input
  • Test success and error responses

Example Projects

Example project using js-gardener and lambda-tdd can be found here.

Getting Started

To install run

$ npm install --save-dev lambda-tdd

Initialize Test Runner and Execute

const lambdaTester = require("lambda-tdd")({
  cwd: __dirname,
  verbose: process.argv.slice(2).indexOf("--debug") !== -1
});

describe("Testing Tester", () => {
  lambdaTester.execute((process.argv.slice(2)
    .find(e => e.startsWith("--filter=")) || "")
    .substring(9));
});

You can pass an array of test files to the execute() function or a regular expression pattern. By default tests are auto detected. If a pattern is passed in only matching tests are executed.

The example above allows for use of a --filter=REGEX parameter to only execute specific tests.

Test File Example

{
  "handler": "geoIp",
  "env": {
    "GOOGLE_PROJECT_ID": "123456789"
  },
  "event": {
    "ip": "173.244.44.10"
  },
  "nock": [{
    "to": {
      "match": "^.*?\"http://ip-api\\.(com|ca):80\".*?$"
    }
  }],
  "body": [{
    "to.contain": "\"United States\""
  }],
  "timestamp": 1511072994,
  "success": true,
  "lambdaTimeout": 5000,
  "timeout": 5000
}

More examples can be found here.

Test Runner Options

cwd

Type: string
Default: process.cwd()

Directory which other defaults are relative to.

name

Type string
Default: lambda-test

Name of this test runner for debug purposes.

verbose

Type boolean
Default: false

Display console output while running tests. Useful for debugging.

handlerFile

Type: string
Default: handler.js

Handler file containing the handler functions (specified in test).

cassetteFolder

Type: string
Default: __cassettes

Folder containing nock recordings.

envVarYml

Type: string
Default: env.yml

Specify yaml file containing environment variables. No existing environment variables can be overwritten.

testFolder

Type: string
Default: ``

Folder containing test files.

Test File Format

handler

Type: string
Required

The handler inside the handler file, i.e. if handler.js contained

module.exports.returnEvent = (event, context, cb) => cb(null, event);

we would set this to returnEvent.

env

Type object
Default: {}

Contains environment variables that are set for this test. Existing environment variables can be overwritten.

timestamp

Type unix
Default: Unfrozen

Set unix timestamp that test executing will see. Time does not progress if this option is set.

timeout

Type integer
Default: Mocha Default Timeout

Set custom timeout in ms for lambda execution. Handy e.g. when recording nock requests.

event

Type object
Default: undefined

Event object that is passed to lambda handler.

lambdaTimeout

Type integer
Default: 300000

Set initial lambda timeout in ms. Exposed in lambda function through context.getRemainingTimeInMillis(). The timeout is not enforced, but progresses as expected unless timestamp option is used.

success

Type boolean
Required

True iff execution is expected to succeed, i.e. no error is passed into callback.

response

Type array
Default: []

Dynamic expect logic executed against the response string. More details on dynamic expect handling below.

error

Type array
Default: []

Dynamic expect logic executed against the error string. More details on dynamic expect handling below.

body

Type array
Default: []

Dynamic expect logic executed against the response.body string. More details on dynamic expect handling below.

logs

Type array
Default: []

Dynamic expect logic executed against the console.log/info and console.error/warn output array. You can use errorLogs and defaultLogs to access them independently. More details on dynamic expect handling below.

defaultLogs

Type array
Default: []

See logs.

errorLogs

Type array
Default: []

See logs.

nock

Type array
Default: []

Dynamic expect logic executed against the nock recording. More details on dynamic expect handling below. Note that the nock recording must already exist for this check to evaluate correctly.

Important: If you are running into issues with replaying a cassette file you recorded previously, try editing the cassette and stripping information that might change. Also make sure cassette files never expose secret tokens or passwords!

Dynamic Expect Logic

Uses Chai Assertion Library syntax written as json. Lets assume we have an output array [1, 2] we want to validate. We can write

expect([1, 2]).to.contain(1);
expect([1, 2]).to.contain(2);

as the following json

[{
  "to.contain": 1
}, {
  "to": {
    "contain": 2
  }
}]

Note that targets are either arrays or strings, but never objects (design limitation).

Limitations

Contribution / What's next

Currently nothing planned

Keywords

FAQs

Package last updated on 28 Feb 2018

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