lab-suite is a simple tool to create reusable test suites. It's quite easy to get into a pattern of cutting and pasting existing tests and then manually replacing the things that have changed but this can be time consuming and create a real maintenance nightmare.
While it was created to work with lab it does not directly depend on it. In theory any testing framework can be used.
npm install lab-suite -D
To create a suite follow the example below.
You can also set the expectations for the usage of the suite to make it easier for someone to implement. These expectations will be checked when the suite is run.
suite.expect
currently supports the following expectations:
- string
- function
- number
- date
- object
- array
- error
- boolean
- anything (This doesn't perform an actual check but it's good for documenting the intended use of the suite)
const {create} from "lab-suite";
const suite = create();
// These expectations double as documentation for someone implementing the suite
suite.expect("SERVICE").to.be.a.function();
suite.expect("SERVICE_CALL").to.be.a.string();
suite.expect("SERVICE_INPUT").to.be.an.array();
suite.expect("SERVICE_RESULT").to.be.a.string();
suite.declare((lab, variables) => {
const {
SERVICE,
SERVICE_CALL,
SERVICE_INPUT,
SERVICE_RESULT
} = variables;
lab.experiment(`The ${SERVICE_CALL} method`, () => {
lab.test("succeeds when get called with good parameters", done => {
const service = new SERVICE();
return service[SERVICE_CALL](...SERVICE_INPUT)
.then(result => {
expect(result).to.equal(SERVICE_RESULT);
});
});
});
});
module.exports = suite;
Additionally, you can use or
to allow more flexible inputs.
suite.expect("SERVICE_INPUT").to.be.an.array.or.an.object();
Import the suite into you test file and do away with boilerplate tests. You can still create normal too if the thing you are testing isn't generic.
const serviceTestSuite = require("./serviceTestSuite");
import ServiceA = require("./ServiceA");
import ServiceB = require("./ServiceB");
const variablesA = {
SERVICE: ServiceA,
SERVICE_CALL: "addNumbers",
SERVICE_INPUT: [1,2],
SERVICE_RESULT: 3
};
const variablesB = {
SERVICE: ServiceB,
SERVICE_CALL: "countCharacters",
SERVICE_INPUT: ["abc","def", "ghi"],
SERVICE_RESULT: 9
};
serviceTestSuite.run(lab, variablesA);
serviceTestSuite.run(lab, variablesB);