Skip to content

ORESoftware/r2g

Repository files navigation

Gitter Version


@oresoftware/r2g

Properly test your NPM packages before publishing.
This CLI tool allows you to easily test your package in the published format, without having to publish to an NPM registry.


Caveats + Disclaimer

This will not work with MS Windows. Only MacOS and *nix. If you are interested in getting to work on Windows, pls file a ticket.


Video demo

Watch this video to learn how to use r2g: TBD (video demo coming in the future)

The video will reference this example repo:
https://github.com/ORESoftware/r2g.example


Installation

$ npm i -g r2g

You can add the following to your ~/.bashrc and/or ~/.bash_profile files:

. "$HOME/.oresoftware/shell.sh"

=> Note you will also get bash completion for r2g, if you source the above shell script.


_____________________________________________________________________________________________

FAQ

see docs/faq.md


About The Tool

r2g tests your package after using npm pack and npm install --production. You can use your current test suite for testing, and also write smoke tests that are specific to r2g. r2g currently has 3 phases, each phase is optional:


  • phase-Z: packs your project, installs that packed package back into the copied project, then runs a package-level command. By default this is npm test; override it with r2g.test in package.json.
  • phase-S: installs your packed project into $HOME/.r2g/temp/project, requires your package by name, then executes the r2gSmokeTest function exported from your package main.
  • phase-T: copies executable scripts from .r2g/tests to $HOME/.r2g/temp/project/tests, copies .r2g/fixtures to $HOME/.r2g/temp/project/fixtures, and runs every file in the copied tests directory.

By default all phases are run, but you can skip phases with the --skip=z,s,t option.


The usual full coverage setup is:

  • package.json has an r2g.test command for phase-Z.
  • Your package main exports r2gSmokeTest for phase-S.
  • .r2g/tests contains executable smoke scripts for phase-T.
  • .r2g/fixtures contains only data that phase-T scripts need.
  • .r2g/config.js declares searchRoot and optional local packages for r2g run --full.
  • .r2g/custom.actions.js can run setup/assertion hooks inside the temp project before and after install.
  • .r2g/package.override.js can adjust the temp project's package.json when the default dummy package is not enough.

r2g is one of several tools that makes managing multiple locally developed NPM packages easier.

The current pieces are:

  • npm-link-up (NLU) => links multiple NPM packages together for local development
  • r2g => tests local packages properly before publishing to NPM
  • npp => publish multiple packages and sync their semver versions

Quick reference


$ r2g run  ### note: `r2g test` is an alias of `r2g run`
  • Runs the tool, and runs all phases.

$ r2g run --skip=z,s
  • This will skip phases Z and S

$ r2g run -z -s
  • This will also skip phases Z and S

$ r2g run --full
  • Installs other locally developed dependencies to your main package, defined in .r2g/config.js, and tests everything together.
  • Use this when X depends on another local package and you want to test both unpublished versions together.

$ r2g run --full --pack
  • Installs other locally developed dependencies to your main package, npm packs them too, and tests everything together.
  • This is the closest local simulation of publishing X and its local dependencies.

$ r2g inspect
  • Copies your project to a temp folder and logs info about a temp tarball that gets created
  • AKA, you can see which contents/folders/files will get included in the tarball
  • Also warns you about any especially large files that you may have accidentally included.

$ r2g publish
  • Publish your package and ignore the .r2g folder for an even leaner tarball
  • Copies your project to a temp folder and the .r2g folder is excluded/ignored
  • Also copies symlinks so you can include symlinked files/folders easily when publishing
  • Use r2g publish --otp=123456 when npm requires a one-time password.

Important Info

  • This tool is only proven on MacOS/*nix, not tested on Windows. If you do Windows and want something to do - fork this and make it work for Windows - it won't be hard.
  • You can use r2g with zero-config, depending on what you want to do.
  • Testing does not happen in your local codebase - before anything, your codebase is copied to "$HOME/.r2g/temp/copy", and all writes happen within "$HOME/.r2g/temp".
  • If you use the --full option, the local deps of your package will copied to: "$HOME/.r2g/temp/deps"
  • You can and should put your regular tests in .npmignore, but your .r2g folder should not be in .npmignore

To make this README as clear and concise as possible:

  • Your NPM package is referred to as X. X is the name of the package you publish to NPM, which is the "name" field of your package.json.
  • The package.json file for X is simply referred to as X-package.json.
  • Your index.js file (or whatever the "main" property points to in X-package.json), is referred to as X-main


Purpose

This tool complements your standard CI/CD testing for NPM libraries. You might already be using Travis, CircleCI, etc, to test your library when you do a git push. Keep doing that. However, what you are already doing is likely to be insufficient because:

  1. You install using npm install instead of npm install --production, because you need your devDependencies for your tests. (whoops!).
  2. You are testing your package directly, instead of testing it as a dependency of another project. In reality, someone will be using your package via node_modules/X, and for example, your postinstall routine may behave differently here.
  3. You are not using npm pack to package your project before testing it. Your .npmignore file could mean you will be missing files, when someone goes to use your package in the wild. Likewise, if the "files" property in X-package.json is too passive, you might be missing files as well. Using npm pack before testing solves that.
  4. It is possible to check out a branch that has passed on a remote CI/CD platform but locally does not have the built/transpiled target files. This means the files will not make it into the tarball that gets published to NPM. Testing with r2g locally before publishing a local branch means you avoid this problem, because if the target files are not built, r2g tests will fail.

The above things are why you need to take some extra pre-cautions before publishing NPM packages. I think everyone has had an .npmignore file that accidentally ignored files we need in production. And we have all had dependencies listed in devDependencies instead of dependencies, which caused problems when people try to use the library. Those are the motivations for using this tool, to prove that X works in its final format.

  • There is a secret feature which is extremely badass - install other locally developed packages which are dependencies of X, as part of r2g testing. See "Linking with existing local dependencies" below.

How it works in detail

To learn more about how r2g works in detail, see: docs/r2g-runtime-steps.md


Basic usage / Getting started

You can use r2g with zero-config - you just need to implement a single function.


To start, execute this in a shell at the root of your project:

$ r2g run

This command will then fail. That's expected.


To get your test to pass, add this to X-main (your package's index file, whatever "main" in package.json points to):

exports.r2gSmokeTest = async () => { 
  return Promise.resolve(true);
};

the above function is called with Promise.resolve(X.r2gSmokeTest()), and in order to pass it must resolve to true (not just truthy).


To read more about the exported r2gSmokeTest function, see: docs/r2g-smoke-test-exported-main-function.md


Note: the exported function r2gSmokeTest allows you to smoke test your package. When this function is run you may use the production dependencies declared in your project. However, for other r2g tests, you may not directly use the dependencies declared in X-package.json, you may only require X itself.


Adding more tests beyond the r2gSmokeTest function

To do more sophisticated tests, we add some configuration in a folder called .r2g in the root of your project.


To do this, run:

r2g init

this will add a folder to your project called .r2g. Your .r2g folder should never be in .npmignore. (Running r2g init is safe, it will not overwrite any existing files). Your new .r2g folder contains .r2g/tests and .r2g/fixtures.


Now when r2g run executes phase-T, it runs each executable file in .r2g/tests, but it runs those tests in the context of the temp project, meaning it copies:


$HOME/.r2g/temp/project/node_modules/X/.r2g/tests/* --> $HOME/.r2g/temp/project/tests/*

and:

$HOME/.r2g/temp/project/node_modules/X/.r2g/fixtures/* --> $HOME/.r2g/temp/project/fixtures/*


The above is very important to understand, because it means phase-T scripts should not directly require dependencies from X-package.json. In fact, besides core modules and fixture files, phase-T scripts should require X itself by package name.


Example:

#!/usr/bin/env node
'use strict';

const assert = require('assert');
const fixture = require('../fixtures/phase-contract.json');
const x = require(fixture.packageName);

assert.strictEqual(typeof x.r2gSmokeTest, 'function');
assert.strictEqual(x.r2gSmokeTest(), true);

Make phase-Z explicit in package.json when npm test is too slow, too broad, or not focused on publishability:

{
  "r2g": {
    "test": "node .r2g/tests/phase-contract.cjs --phase-z"
  }
}

Use .r2g/custom.actions.js when the temp project needs setup or extra lifecycle assertions:

'use strict';

const fs = require('fs');
const path = require('path');

const marker = name => (root, cb) => {
  try {
    fs.mkdirSync(path.resolve(root, '.r2g-markers'), {recursive: true});
    fs.writeFileSync(path.resolve(root, '.r2g-markers', `${name}.txt`), `${name}\n`);
    cb();
  }
  catch (err) {
    cb(err);
  }
};

exports.default = {
  inProjectBeforeInstall: [marker('before-install')],
  inProjectAfterInstall: [marker('after-install')]
};

Use .r2g/package.override.js when the default temp package.json needs extra fields:

'use strict';

exports.default = {
  r2g: {
    packageOverride: true
  }
};

Linking with existing local dependencies:

Run r2g init and in your .r2g/config.js file, add local package names to the packages property:

exports.default = {

  // ...

  packages: {
     // local packages will be installed to your project --> test your local dependencies instead of installing from NPM
     'your-local-package-b': true,
     'your-local-package-c': true
   }
}

If you execute r2g run --full these packages (b,c) will be discovered on your local fs, and copied to "$HOME/.r2g/temp/deps/*", and then X's package.json will look like this:

{
  "dependencies": {
   "your-local-package-b": "file:///home/user/.r2g/temp/deps/your-local-package-b",
   "your-local-package-c": "file:///home/user/.r2g/temp/deps/your-local-package-c",
  }
}

If you execute r2g run --full --pack, then this awesomeness happens:

{
  "dependencies": {
   "your-local-package-b": "file:///home/user/.r2g/temp/deps/your-local-package-b.tgz",
   "your-local-package-c": "file:///home/user/.r2g/temp/deps/your-local-package-c.tgz",
  }
}

So using r2g run --full => we install local deps instead of the deps from NPM.


And using r2g run --full --pack => we pack the local deps before installing them.


Awesome.

To read more about using local deps for testing instead of installing your local deps from NPM, see:
=> docs/r2g-using-local-deps.md


Usage in a Docker image/container

Use a Docker container for a fresh/independent/isolated testing env. For packages that do more complex/system things, it will be useful to use a locally running Docker container. To use r2g in a Docker container, see: https://github.com/ORESoftware/r2g.docker


Alternatively, you can just run r2g as part of your normal CI/CD library testing on remote servers. First, make sure you have Docker installed on your local machine. See standard installation instructions for MacOS/*nix.


Run this in the root of your project:

$ r2g init --docker  # you only need to run this once per project, but won't hurt if you do it more than once

Then run this:

$ r2g docker

The above command actually uses this command line tool:
https://github.com/ORESoftware/r2g.docker


For the future:

  • Instead a dummy NPM project which will depend on X, we can allow users to use their own test projects, and pull those in with git clone or what not.

TBD

Just adding some spaces here

About

▷ Test your package in the published format, without having to publish to NPM.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors