GithubHelp home page GithubHelp logo

generate's Introduction

dalek

generate

Generate test fixtures from a swagger/OpenAPI schema


Usage

Via command line:

generate <schema> <endpoint>

Via a custom script, to provide overrides for the default transformer functions:

import generate, { fakeId, fakeEmail, createTransformer } from 'generate';

const customTransformer = createTransformer(
  (prop) => prop.includes('tardis'), // the property you want to mock
  () => 'faker.method', // the faker method you want to set
);

generate('schema.yaml', 'SomeEndpoint', [fakeId, fakeEmail, customTransformer]); // pass the custom transformer along with the defaults you want as an array

Transformers operate on a schema to help create a fixture. The default transformers can be imported for reuse when overriding or adding a custom transformer. A helper function called createTransformer is provided to aid in the creation of custom transformers. It takes two callbacks. The first, a predicate that checks if the property is the one you wish to mock. The second, sets the faker method that generates the mock data. The second callback also accepts an optional props argument, allowing you to do additional logic before setting a faker method. A list of available methods can be found here.

One could even get fancy with their workflow:

import generate from 'generate';

const endpoints = ['SomeEndpoint', 'AnotherEndpoint', 'YetOneMoreEndpoint'];

endpoints.forEach((endpoint) => generate('schema.yaml', endpoint));

Or

const { execSync } = require('child_process');

const endpoints = ['SomeEndpoint', 'AnotherEndpoint', 'YetOneMoreEndpoint'];

endpoints.forEach((endpoint) => execSync(`generate schema.yaml ${endpoint}`, { stdio: 'inherit' }));

generate's People

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.