mutation-switch-instrumenter

0.3.1 • Public • Published

Mutation switch instrumenter

An example implementation for mutation switching in JavaScript and TypeScript.

This is a proof of concept implementation for mutation switching in JavaScript and TypeScript. Mutation switching is a technique that can be used to accelerate mutation testing.

Why?

This is a proof of concept that the Stryker team will use to test out mutation switching in the wild.

Install

Install is recommended either globally or not at all (using npx to run).

> npm i -g mutation-switch-instrumenter

Features

👽 Mutate both JavaScript and TypeScripts
👾 Mutator support for Arithmetic operator, Block statement, Conditional expression and String literal
📚 Supports js, ts, html and vue files
🧥 Adds mutation coverage syntax
🎨 Outputs the instrumented mutants to console

Usage

Run it with:

> mutation-switch-instrumenter src/*.js

or

> npx mutation-switch-instrumenter src/*.js

Full help

  mutation-switch-instrumenter [glob..]

  Instrument JavaScript/TypeScript code for mutation testing as a Proof of Concept

  Options:
    --help, -h        Show this help
    --out-dir <path>  The out directory to instrument to (default: "instrumented").
                      Set to "." to replace the input files (warning!!!)

Example

This input:

function add(a, b) {
  return a + b;
}

add(40, 2);

Will be instrumented as:

var __global_69fa48 = function (g) {
  g.__mutationCoverage__ = g.__mutationCoverage__ || {
    static: {}
  };

  g.__coverMutant__ = g.__coverMutant__ || function () {
    var c = g.__mutationCoverage__.static;

    if (g.__currentTestId__) {
      c = g.__mutationCoverage__[g.__currentTestId__];
    }

    var a = arguments;

    for (var i = 0; i < a.length; i++) {
      c[a[i]] = (c[a[i]] || 0) + 1;
    }
  };

  return g;
}(new Function("return this")());

function add(a, b) {
  switch (__global_69fa48.activeMutant) {
    case 0:
      {}
      break;

    default:
      __global_69fa48.__coverMutant__(0);
      {
        return __global_69fa48.activeMutant === 1 ? a - b : (__global_69fa48.__coverMutant__(1), a + b);
      }
      break;
  }
}

add(40, 2);

License

Copyright 2020 Nico Jansen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

Package Sidebar

Install

npm i mutation-switch-instrumenter

Weekly Downloads

1

Version

0.3.1

License

MIT

Unpacked Size

117 kB

Total Files

95

Last publish

Collaborators

  • nicojs