1.0.7 • Published 4 years ago

pits v1.0.7

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

pit

A postman integration test utils.\ Taking advantage of postman's pre-request script and test-script.\ This utils help describe and test your collection with simple syntax.

Caution

Since postman doesn't have clear "scopes" like javascript variables, instead have their own pm.variables.\ In order to make scripts work, there will be a few eval() functions in lib/t.js, feel free and inspect the code.\ It's only eval() what you code, so please make sure you don't add any danger or malicious script into describe, test or before code blocks.

Install

npm i pits

Project structure (more on example)

src
  |__GitHubApi
  |     |__GetUserSuite.js
  |     |__OtherSuite.js
  |__googleSuite.js
  |__spotifySuite.js
  |
  |__.pit_collection.js
  |__package.json

Suite declaration

.pit_collection.js

const path = require("path");

module.exports = {
  name: "Example Fun Postman",
  suites: {
    includes: ["Suite.js"], // patterns for `suite` file, could be anything.
    dirs: [path.join(__dirname)] // paths where `suite` file should be placed.
  }
};

Define your simple script like example/googleSuite.js

const { describe, before, test } = require("pits");

module.exports = describe("Let's check google", () => {
  before("200", () => {
    console.log("This will be called before sending request");
    console.log("{{request_url}} is hard_code, will be more dynamic later");
    pm.variables.set("request_url", "https://google.com");
  });

  test("200", "Test 200 description", () => {
    pm.response.to.have.status(200);
  });

  before("404", () => {
    console.log("This should call when init");
    pm.variables.set("request_url", "https://google.com/404");
  });

  test("404", "Test 404", () => {
    pm.response.to.have.status(404);
  });
});

Run

node -e 'require("pits").extract()'

This extract() function will use the config from .pit_collection.js file to generate .postman_collection.json into current folder.

If you have newman installed:

newman run test.postman_collection.json

Flow diagram

diagram

TODO

  • Adding variables file.
  • Improve pit_collection.json.
1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago