@actualwave/traceability-matrices
Integrate requirements into e2e/integration test code and generate traceability matrices for your project. Currently this project has an adapter to work with Cypress tests.
How it works
Work with this project starts with placing traces of requirements within a test file.
it("should do something according to requirement #1", () => {
project.trace("requirement #1");
expect(something).toEqual(somethingElse);
});
Once test run is finished, coverage report will be stored in a coverage folder specified in cypress config or environment variable. Stored file is a JSON file and is not suitable for viewing, to generate viewable information and actual matrices/tables, user should use command traceability-matrices generate
to generate static HTML files with reports or traceability-matrices serve
to start local HTTP server with reports.
Example project is available in git repo
Installation
Install the package via NPM
npm install -D @actualwave/traceability-matrices
or Yarn
yarn add -D @actualwave/traceability-matrices
Then configure by defining an environment variable TRACE_RECORDS_DATA_DIR
, this could be done in cypress config file
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
},
env: {
TRACE_RECORDS_DATA_DIR: "cypress/coverage",
},
},
});
Also, it might be useful to add commands to package.json
"scripts": {
"tm:serve": "traceability-matrices serve --target-dir=cypress/coverage",
"tm:generate": "traceability-matrices generate --target-dir=cypress/coverage --output-dir=coverage-static"
},
calling npm run tm:serve
will start local HTTP server with coveragereports and npm run tm:generate
will generate HTML reports into xcoverage-static
folder.
Commands
This package supports multiple commands to work with generated coverage reports after test run. All commands accept required parameter --target-dir
which points at a coverage reports root folder, it is the same folder defined in TRACE_RECORDS_DATA_DIR
environment variable. This parameter could be provided multiple times to point at multiple coverage directories to generate combined report.
traceability-matrices serve
Run HTTP/S server with coverage reports and open in default browser.
Parameters:
--target-dir
- required, path to directory with coverage reports--port
- port for HTTP/S server, 8477 by default--https
- set to "true"(--https=true
) to start HTTPS server, by default starts HTTP server
Example:
traceability-matrices serve --target-dir=cypress/coverage --https=true
traceability-matrices generate
Generate static HTML files with coverage reports.
Parameters:
--target-dir
- required, path to directory with coverage reports.--output-dir
- required, path to folder where generated HTML files should be stored
Example:
traceability-matrices generate --target-dir=cypress/coverage --output-dir=coverage-static
traceability-matrices threshold
Fails(exits with an error code) if coverage thresholds weren't met.
Parameters:
--target-dir
- required, path to directory with coverage reports.--total
- optional, defines global coverage threshold, value can be between 0 and 100. Fails command if combined coverage of all project does not meet threshold.--per-project
- optional, defines coverage threshold applies to every project, value can be between 0 and 100. Fails command if at least one project does not meet threshold.
Example:
traceability-matrices threshold --target-dir=cypress/coverage --total=80 --per-project=60
Cypress integration
Cypresss integration starts with adding TRACE_RECORDS_DATA_DIR
environment variable to cypress config that will tell where to store coverage reports
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
env: {
TRACE_RECORDS_DATA_DIR: "cypress/coverage",
},
},
});
and defining a project in a test file
import { createProject } from "@actualwave/traceability-matrices/cypress";
const project = createProject("My Project");
Created project
provides methods to match test specs with project requriements and genrates test records that will be stored in a JSON file once test run is finished.
project.trace()
To match requirements with specs, traces should be placed within specs, like
it("should do something according to requirement #1", () => {
project.trace("requirement #1");
expect(something).toEqual(somethingElse);
});
After running this test, coverage will contain a record that spec should do something according to requirement #1
tests requirement #1
requirement. One spec may contain multiple requriements and traces could contain expectations or be nested.
it("should do something according to multiple requirements", () => {
project.trace("requirement #1", () => {
expect(something).toEqual(somethingElse);
project.trace("requirement #3", () => {
expect(something).toEqual(somethingElse);
project.trace("requirement #4", () => {
expect(something).toEqual(somethingElse);
});
});
});
project.trace("requirement #2");
expect(something).toEqual(somethingElse);
});
project.trace()
could be used to generate requirements tree by providing an array of strings
it("should do something according to requirement #1", () => {
project.trace(["High", "General", "PRD I", "requirement #1"]);
project.trace(["High", "General", "PRD I", "requirement #2"]);
project.trace(["High", "General", "PRD I", "requirement #3"]);
project.trace(["Low", "PRD IVa", "requirement #45"]);
project.trace(["Low", "PRD IVa", "requirement #46"]);
project.trace(["optional requirement #1"]);
expect(something).toEqual(somethingElse);
});
This will generate a structure of requirements
- High
- General
- PRD I
- requirement #1
- requirement #2
- requirement #3
- Low
- PRD IVa
- requirement #45
- requirement #46
- optional requirement #1
Such structure also could be created using project.structure()
method
project.structure({
High: {
General: {
"PRD I": {
"requirement #1": {},
"requirement #2": {},
"requirement #3": {},
},
},
},
Low: {
"PRD IVa": {
"requirement #45": {},
"requirement #46": {},
},
},
"optional requirement #1": {},
});
and with this just use requirement name in project.trace()
call,
it("should do something according to requirement #1", () => {
project.trace("requirement #3");
expect(something).toEqual(somethingElse);
});
it will be matched to leaf node of structure. If requirement not found in structure, it will be added to the root of structure when coverage is generated.
project.requirement()
With project.trace()
, engineer could use project.requirement()
and specify requirement to use in multiple places.
const req1 = project.requirement("requirement #1");
Once created, it could be used to replace test lifecycle hooks like describe()
and it()
req1.describe('When someting', () => {
...
});
req1.it('should do', () => {
...
});
Both will record requirement being tested in these places.
project.structure()
project.structure()
used to specify category tree, and it should be built only with objects. Leaf objects of this structure will be identified as a testable requirements, other branches are categories and could not be tested.
project.structure({
High: {
General: {
"PRD I": {
"requirement #1": {},
"requirement #2": {},
"requirement #3": {},
},
},
},
});
With structure tree optionally list of table headers could be provided, they will be used to render HTML table in the report
project.structure({
High: {
General: {
"PRD I": {
"requirement #1": {},
"requirement #2": {},
"requirement #3": {},
},
},
},
}, ['Priority', 'Category', 'Requirement']);
If test will contain a trace to category, that record will be added as a leaf node to the root of the structure.
project.structure()
return an object with additional methods to work with structure.
add(...path: string[]) => Record<string, object>
- add categories/requirements to the structure if not existget(...path: string[]) => Record<string, object>
- retrieve a branch of the structuremerge(source: Record<string, object>) => void
- merge external structure intoclone(...path: string[]) => Record<string, object>
- clone and return whole or branch of the structurebranch(path: string[], projectTitle: string, projectDescription?: string) => ProjectApi
- create a sub-project from structure branch. sub-project will have no connection to current project and structures will be copied.narrow(path: string[], projectTitle: string, projectDescription?: string) => ProjectApi
- create sub-project with a structure by removing branches out of provided path. sub-project will have no connection to current project and structures will be copied.
Allows to specify list of HTML table headers
project.clone()
Clone project, creates a new project with same structure and empty test records.
project.valueOf()
Returns internal state of the project