Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

newman-collection

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

newman-collection

> This module will bring your postman/newman experience to a next level

  • 1.4.0
  • npm
  • Socket score

Version published
Weekly downloads
25
increased by212.5%
Maintainers
1
Weekly downloads
 
Created
Source

Newman/Postman collection generator

This module will bring your postman/newman experience to a next level

NPM Version

Install

npm i newman-collection

Usage

The only feature this module brings is simplified minimalistic JS-like creation of the collection file.

Newman is a tool developed by a postman team works with existing files or URL in CLI mode or with a model from postman-collection module as node.js module. This module is nothing more than decoration of postman-collection calls.

const { Collection, Item } = require("newman-collection");
const newman = require("newman");

let oCollection = new Collection([
  // test GET
  new Item("Test GET request")
    .get("https://postman-echo.com/get?foo1=bar1&foo2=bar2")
    .pm.test("This is test A", () => {
      pm.response.to.be.ok;
    })
    .pm.test("This is test B", () => {
      pm.response.to.be.ok;
    }),
  // test POST
  new Item("Test POST request")
    .post("https://postman-echo.com/post")
    .headers({ "Content-Type": "text/plain" })
    .body("test")
    .pm.test("body should be same", () => {
      pm.response.to.have.jsonBody("data", "test");
    }),
  // test auth
  new Item("Test basic auth")
    .get("https://postman-echo.com/basic-auth")
    .auth.basic({ username: "postman", password: "password" })
    .pm.test("Must be authenticated", () => {
      pm.response.to.have.jsonBody("authenticated", true);
    })
]);

newman.run({
  collection: oCollection.collection,
  reporters: ["cli"]
});
Interface auth
methoddescription
basic({username,password})Provides basic authentication. Do not use secret data in your code but use {{secret}} variables instead.
class Collection
methoddescription
constructor( collection?: CollectionDefinition , items?: Item )To create an instance you can provide collection definition from postman SDK. In addition to this list of items can be provided also
constructor( items*?: Item )You can omit definition part providing just array of items
set items(items: Item) {A setter method is also availabe to set items later
authReturns auth interface. Please see section above. When using auth on the collection level credentials will be applied to all requests in the collection
class Item
methoddescription
get/post/head/options/put/delete/patch (url:string)these are factory functions for Request of a certain type
authSee auth section
interface Request
methoddescription
body(body:string|object)Sets body, converts to JSON if needed
headers(headers: object)Sets request headers in a similar to fetch API way
auth.basic({username,password})Provides basic authentication. Do not use secret data in your code but use {{secret}} variables instead.
on.prerequest(callback:Function)This function along with test script also is probably the main purpose of this module creation. It is extremely not convenient to work with a collection file editing script as string data, not a code.
on.test(callback:Function)test script writer, same as prerequest
pm.test(description, callback)Even more simplified way of creating test scripts. This is what it does:
image-20200218170449413
will create JSON like this:
image-20200218180458079
and finally in the console we can have this:
image-20200218170733249
authsee auth section

License

MIT

FAQs

Package last updated on 19 Feb 2020

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