npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

macrophage

v0.0.6

Published

CLI of a sanity checks using a simple declarative macro language

Downloads

12

Readme

Macrophage - an API-level test-macro runner

Disclaimer

This is a very preliminary version, taking the common-parts that do not contain secret sauce from a proprietary project.

WARNING: As the version testifies - the project is in very early stages and very far from production grade. APIs and expected config structures are prone to change.

Current status: Current status is that the tool in its current form works with the proprietary project from which it's been separated, however - a lot of generization work is yet to be done. The tool still assumes a lot of concrete implementation details that do not include secret sauce, but are in fact concrete to the parent project from which it is separated.

The good news is that we're making progress. I have added a lot of information in the readme, but it's mostly for me to remember were we're going and where we're heading.

Overview

  • CLI tool that runs API-level tests described in a profile, emit JSON-stream log, and exits with an exit-code reflecting success or failrure.
  • A profile is a collection of Test-Suites and configuration for the clients they require, and generic settings for the macrophage tool.
  • Test Suites are described using a simplified yaml-based macro-language
  • Suites are built as a collection of Steps, which are built as a collection of directives, each is a modular generic unit reused in the execution chain the profile describes, and constructed with options provided by the user.
  • The tool comes with request-promise as default built-in client for quick-start, but is aimed to be used with custom clients provided as user-models that encapsule the lower level api-logic and produce a human-readable suite config.
  • Responses retrieved by clients are asserted using a simple generic declarative language, in which the user provides paths on the response, and configuration for checkers that perform assertion against it. (e.g. responseTime: { 'lesserThan': 0.5s }, or statusCode: { gte : 200, lt: 400 })
  • For cases the structure cannot be asserted simply by structure, the tool support an onResponse hook aimd to let users transform the response returned by the client to a structure that can be asserted declaratively. The hook may mutate the response and return nothing, or return a representing view that should be used as result to be checked.
  • As last resort, users can write custom checkers. This last resort is discouraged because they cannot be validated well before suites-execution starts, and may end with errors that are not related to performed claims.

Lifecycle

  1. Configuration
  • the stage gathers all inputs from config files, environment variables and CLI-args. Any cascading logic between them happens here.
  • logger is initiated immediately after.
  • This stege should fail-fast with a descriptive error when configurations cannot be parsed, loaded or found.
  • In the end of this stage all the configurations have been consolidated into a single model, a logger has been initiated, and the macrophage should start process the execution-profile.
  1. Clients Initiation
  • Client modules are loaded, constructed and initiated according to user configuration.
  • This stege should fail-fast with a descriptive error whenever a client module could not be found, loaded or initiated.
  • The client initiation happens here so that suite-constructions can validate the client apis named in them.
  1. Construction
  • The configuration tree is traversed. Section by section, syntax-suggar rules are applied to obtain a normalized config object, and the relevant software components are initialized.
  • when a user-module is named - it is loaded and validated as far as possible.
  • This stege should fail-fast with a descriptive error when a section in the configuration is of an unexpected type or lacks mandatory parts and the section cannot be normalized with defaults.
  • In the end of this stage all the step directives that should be executed are constructed and ready to fire, almost as one big chain.
  1. Execution
  • Steps from all the suites that have been loaded are executed. Each step calls a client-api, and asserts the claims made on the expected response.
  • All claims are emitted to a reporter constructed on stage 2.
  • Rejected claims emit log warnings.
  • The only execution errors possible in this stage are runtime erors of user-modules which could not have been validated before suite execution comenced. (existence of APIs are validated in stages 2 and 3).
  • In the end of this stage all the directives have been fired, and their results emitted to the reporter.
  1. Result
  • The reporter compiles and prints a summary report.
  • Here the tool exits with exit-code of number of rejected claims. (no rejects = happy exit with code 0).

Configuration

Order of configuration loading - last one cascades.

  • baked-in defaults provide default log levels and pretty-print options which are disregarded as long as pretty-print is not set to true.

  • seed cli-args && env-vars cli-args that are relevant to loading

  • loading suites when suites is not an object - i.e - string or array of strings - they are passed to require-yml.

  • cli-args && env-vars

logging

There are two types of logging.

  • Production-grade json-stream log based on pino, directed for log-centralizations (logstash/filebeat/fluentd) aimed for actionable alerts based on log-entries.
  • Debugs based on debug, aimed to help automation-developers to understand the implictions of the constructs they create and the user-modules they provide.

user modules

Helper modules are clients and suite-helpers Supported initiation patterns:

  • singleton -the module exports an object with methods which is the client, ready for use. e.g:
    const client = require(moduleName)
    await client.operation(args)
  • singleton + init - the module exports an object with methods which is the client, but one of them must be called first with options as an initiation. e.g:
    const client = require(moduleName)
    await client.init(initOptions)
    await client.operation(args)
  • factory-function - the module exports a factory function is expected to be called with options and returns an instance. e.g:
    const client = require(moduleName)(factoryOptions)
    await client.operation(args)
  • factory-function + init- the module exports a factory function is expected to be called with options and returns an instance that has to be initiated. e.g:
    const client = require(moduleName)(factoryOptions)
    await client.init(initOptions)
    await client.operation(args)
  • factory-model - module exports a singleton with a factory function that returns an instance which is the client ready-for-use. e.g:
    const client = require(moduleName).create(factoryOptions)
    await client.operation(args)
  • factory-model - module exports a singleton with a factory function that returns an instance which is the client, but the client must be initiated. e.g:
    const client = require(moduleName).create(factoryOptions)
    await client.init(initOptions)
    await client.operation(args)

Roadmap

  • Integral support for open-api-spec (f.k.a swagger) clients
  • Integral support for advanced checkers
  • Support for custom reporter