Socket
Socket
Sign inDemoInstall

appsync-template-tester

Package Overview
Dependencies
6
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    appsync-template-tester

Unit test AppSync VTL resolvers, with popular frameworks such as Jest


Version published
Weekly downloads
1.2K
decreased by-8.01%
Maintainers
1
Install size
7.59 MB
Created
Weekly downloads
 

Readme

Source

Appsync VTL Tester

Built with
typescript version downloads

Write unit tests for AWS AppSync VTL resolvers, with popular frameworks such as Jest.

Use

Example

yarn add appsync-template-tester --dev
import Parser from 'appsync-template-tester';
import { readFileSync } from 'fs';
import { join } from 'path';

// Load from a file (if not in a string already)
const templateFilePath = join(__dirname, './pathToFile.vtl');
const template = readFileSync(templateFilePath, {
  encoding: 'utf8',
});

// Create the resolver
const parser = new Parser(template);

test('Test the resolver', () => {
  // The Appsync Context (ctx) object
  const context = {
    // For example with a dynamoDB response resolver:
    result: {
      id: 'testId',
      // ...
    },
  };

  // parser.resolve() automatically typecasts
  const response = parser.resolve(context);

  // For convenience, the response is returned as a JS object rather than JSON
  expect(response.id).toBe('testId');
});

Util helpers supported

This module supports all the provided core, map & time $util methods, and most of the dynamodb methods. The underlying methods can be seen in the Resolver Mapping Template Utility Reference docs.

Note: The errors list is also not returned (but $util.error will throw an error).

Extensions

AWS AppSync provides extension methods via $extensions, for example $extensions.evictFromApiCache. It can be useful to assert that your VTL template is invoking these methods, therefore, you can provide custom extensions with your own implementations. Note that default extension methods are not provided. To read more about AWS AppSync extensions see the Extensions docs.

  // Create the parser with the mock extension function
  const mockEvictFromApiCache = jest.fn();
  const parser = new Parser(`$extensions.evictFromApiCache("Query", "users", {
    "context.arguments.id": $context.arguments.id
  })`);

  parser.resolve({ arguments: { id: 10 } }, undefined, {
    evictFromApiCache: mockEvictFromApiCache,
  });

  expect(mockEvictFromApiCache).toHaveBeenCalledTimes(1)
  expect(mockEvictFromApiCache).toHaveBeenCalledWith("Query", "users", { "context.arguments.id": 10 })

Keywords

FAQs

Last updated on 05 Feb 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc