UNPKG

@pmoo/testy

Version:

A minimal testing framework, for educational purposes.

367 lines (288 loc) 21 kB
# Testy ![ci](https://img.shields.io/github/actions/workflow/status/ngarbezza/testy/node_ci.yml?logo=github&branch=main) \ [![maintainability](https://img.shields.io/codeclimate/maintainability/ngarbezza/testy?logo=code-climate)](https://codeclimate.com/github/ngarbezza/testy) [![tech-debt](https://img.shields.io/codeclimate/tech-debt/ngarbezza/testy?logo=code-climate)](https://codeclimate.com/github/ngarbezza/testy) [![coverage](https://img.shields.io/codeclimate/coverage/ngarbezza/testy?logo=code-climate)](https://codeclimate.com/github/ngarbezza/testy) [![Mutation testing badge](https://img.shields.io/endpoint?style=flat&logo=stryker&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fngarbezza%2Ftesty%2Fmain)](https://dashboard.stryker-mutator.io/reports/github.com/ngarbezza/testy/main) \ [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=ngarbezza_testy&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=ngarbezza_testy) [![Technical Debt](https://sonarcloud.io/api/project_badges/measure?project=ngarbezza_testy&metric=sqale_index)](https://sonarcloud.io/summary/new_code?id=ngarbezza_testy) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=ngarbezza_testy&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=ngarbezza_testy) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=ngarbezza_testy&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=ngarbezza_testy) \ ![GitHub Repo stars](https://img.shields.io/github/stars/ngarbezza/testy?style=flat&logo=github) ![open-issues](https://img.shields.io/github/issues-raw/ngarbezza/testy?logo=github) ![closed-issues](https://img.shields.io/github/issues-closed-raw/ngarbezza/testy?logo=github) ![open-prs](https://img.shields.io/github/issues-pr-raw/ngarbezza/testy?logo=github) \ ![downloads](https://img.shields.io/npm/dt/@pmoo/testy.svg?logo=npm) ![dependencies](https://img.shields.io/librariesio/release/npm/@pmoo/testy?logo=npm) \ ![package-size](https://img.shields.io/bundlephobia/min/@pmoo/testy.svg?logo=npm) ![activity](https://img.shields.io/github/commit-activity/m/ngarbezza/testy?logo=npm) ![release-date](https://img.shields.io/github/release-date/ngarbezza/testy.svg?logo=npm) <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> [![all-contributors](https://img.shields.io/github/all-contributors/ngarbezza/testy?logo=open-source-initiative)](#contributors) <!-- ALL-CONTRIBUTORS-BADGE:END --> A very simple JS testing framework, for educational purposes. Live at npm at [@pmoo/testy](https://www.npmjs.com/package/@pmoo/testy). :arrow_right: [Documentación en español aquí](README_es.md) :construction_worker: [Contributing guidelines](CONTRIBUTING.md) ## Sponsors <a href="https://10pines.com"> <img alt="10Pines" src="https://10pines.com/assets/10Pines-logo_reducido-10729182.svg" width="300" height="100" /> </a> ## Getting started `npm install --save-dev @pmoo/testy` (if you use [npm](https://www.npmjs.com/)) \ `yarn add --dev @pmoo/testy` (if you use [yarn](https://classic.yarnpkg.com/en/)) **Supported Node versions**: 18.x or higher (versions with active and security support listed [here](https://endoflife.date/nodejs)) ## Usage ### Writing test suites A test suite is a file ending `_test.js` that looks like this: ```javascript // my_test.js import { suite, test, assert } from "@pmoo/testy"; suite("a boring test suite", () => { test("42 is 42, not surprising", () => { assert.that(42).isEqualTo(42); }); }); ``` A test suite represents a grouping of tests, and it is implemented as a function call to `suite` passing a name and a zero-argument function, which is the suite body. A test is implemented as a function call to `test()`, passing a name and the test body as a zero-argument function. Inside the test you can call different assertions that are documented in detail later on. ### Running Testy You can run an individual test file using: ```sh npx testy my_test.js ``` Or, you can run it without arguments to run all the tests (by default it looks on a `tests` folder located in the project root): ```sh npx testy ``` You can also add it as the `test` script for npm/yarn in your `package.json`: ```json { ... "scripts": { "test": "npx testy" }, ... } ``` And then run the tests using `npm test` or `yarn test`. ### Configuring Testy Testy will look for a `.testyrc.json` configuration file in the project root directory. You can use this configuration as a template (values here are the defaults): ```json { "directory": "./tests", // directory including your test files "filter": ".*_test.js$", // which convention to use to recognize test files "language": "en", // language of the output messages. "es" and "en" supported for now "failFast": false, // enable/disable fail fast mode (stop as soon as a failed test appears) "randomOrder": false // enable/disable execution of tests in random order "timeoutMs": 1000 // sets the per-test timeout in milliseconds "language": "en", // language of the output messages. "es", "it" and "en" supported for now } ``` You can also pass a configuration through the console when running tests by adding these available options after your test file path: - `-f` or `--fail-fast` to enable fail fast mode. - `-r` or `--randomize` to enable the execution of tests in random order. - `-l xx` or `--language xx` where `xx` must be either `es` for Spanish, `en` for English or `it` for Italian. - `-d route` or `--directory route` where `route` must be a directory that contains test files. If explicit test routes are provided, this directory parameter will be ignored. These console parameters can be sent in any order and combined as you want. These are all the configuration parameters you can set. Feel free to change it according to your needs. When declaring this configuration, every test suite under the `tests` directory (matching files ending with `*test.js`) will be executed. ### Examples and available assertions There must be at least one assertion on the test to be valid. These are all the supported assertion types: - Boolean assertions: - `assert.that(boolean).isTrue()` or `assert.isTrue(boolean)`. It does a strict comparison against `true` (`object === true`) - `assert.that(boolean).isFalse()` or `assert.isFalse(boolean)`. It does a strict comparison against `false` (`object === false`) - Equality assertions: - `assert.that(actual).isEqualTo(expected)` or `assert.areEqual(actual, expected)`. - `assert.that(actual).isNotEqualTo(expected)` or `assert.areNotEqual(actual, expected)` - Equality assertions use a deep object comparison (based on Node's `assert` module) and fail if objects under comparison have circular references. - Equality criteria on non-primitive objects can be specified: - Passing an extra two-arg comparator function to `isEqualTo(expected, criteria)` or `areEqual(actual, expected, criteria)` - Passing a method name that `actual` object understands: `isEqualTo(expected, 'myEqMessage')` or `areEqual(actual, expected, 'myEqMessage')` - By default, if `actual` has an `equals` method it will be used. - If we compare `undefined` with `undefined` using `isEqualTo()`, it will make the test fail. For explicit check for `undefined`, use the `isUndefined()`/`isNotUndefined()` assertions documented above. - Identity assertions: - `assert.that(actual).isIdenticalTo(expected)` or `assert.areIdentical(actual, expected)` - `assert.that(actual).isNotIdenticalTo(expected)` or `assert.areNotIdentical(actual, expected)` - Identity assertions check if two references point to the same object using the `===` operator. - Check for `undefined` presence/absence: - `assert.that(aValue).isUndefined()` or `assert.isUndefined(aValue)` - `assert.that(aValue).isNotUndefined()` or `assert.isNotUndefined(aValue)` - Check for `null` presence/absence: - `assert.that(aValue).isNull()` or `assert.isNull(aValue)` - `assert.that(aValue).isNotNull()` or `assert.isNotNull(aValue)` - Exception testing: - `assert.that(() => { ... }).raises(error)` or with regex `.raises(/part of message/)` - `assert.that(() => { ... }).doesNotRaise(error)` - `assert.that(() => { ... }).doesNotRaiseAnyErrors()` - Numeric assertions: - Comparators: - `assert.that(aNumber).isGreaterThan(anotherNumber)` - `assert.that(aNumber).isLessThan(anotherNumber)` - `assert.that(aNumber).isGreaterThanOrEqualTo(anotherNumber)` - `assert.that(aNumber).isLessThanOrEqualTo(anotherNumber)` - Rounding: - `assert.that(aNumber).isNearTo(anotherNumber)`. There's a second optional argument that indicates the number of digits to be used for precision. Default is `4`. - String assertions: - `assert.that(string).matches(regexOrString)` or `assert.isMatching(string, regexOrString)` - Array inclusion: - `assert.that(collection).includes(object)` - `assert.that(collection).doesNotInclude(object)` - `assert.that(collection).includesExactly(...objects)` - Emptiness - `assert.that(collection).isEmpty()` or `assert.isEmpty(collection)` - `assert.that(collection).isNotEmpty()` or `assert.isNotEmpty(collection)` - the collection under test can be an `Array`, a `String` or a `Set` Please take a look at the `tests` folder, you'll find examples of each possible test you can write. Testy is self-tested. ### Running testy globally If you don't have a NPM project you can install Testy globally using `npm install -g testy` and then run `testy <files>`. ### Other features - **Running code before/after every test**: just like many testing frameworks have, there is a way to execute some code before or after each test in a suite using the `before()` and `after()` functions, respectively. You can use only one definition of `before()` and `after()` per suite, and they always receive a function as argument. Example: ```javascript import { suite, test, assert, before, after } from '@pmoo/testy'; suite('using the before() and after() helpers', () => { let answer; before(() => { answer = 42; }); test('checking the answer', () => { assert.that(answer).isEqualTo(42); }); after(() => { answer = undefined; }); }); ``` - **Support for pending tests**: if a test has no body, it will be reported as `[WIP]` and it won't be considered a failure. - **Support for skipped tests**: you can skip a test by adding `.skip()` after test declaration, it will be reported as `[SKIP]` and it won't be executed nor considered a failure. ```javascript import { suite, test, assert } from '@pmoo/testy'; suite('I am a suite with a skipped test', () => { test('I am a skipped test', async () => { assert.that(1).isEqualTo(1); }).skip(); }); ``` - **Support for exclusive tests**: you can mark a test as exclusive for a run by adding `.only()` after test declaration. If there's at least one test marked as exclusive for run in a suite, only the tests marked as exclusive for run will be executed and the rest will be skipped. ```javascript import { suite, test, assert } from '@pmoo/testy'; suite('I am a suite with an exclusive test', () => { test('I am an exclusive for run test', async () => { assert.that(1).isEqualTo(1); }).only(); }); ``` - **Support for skipped suites**: you can skip a test suite by adding `.skip()` after suite declaration. All of the suite's test will be reported as `[SKIP]` and won't be executed nor considered a failure. - **Support for asynchronous tests**: if the code you are testing has `async` logic, you can `await` inside the test definition and make assertions later. You can also use it on `before()` and `after()` declarations. Example: ```javascript import { suite, test, assert, before } from '@pmoo/testy'; const promiseOne = async () => Promise.resolve(42); const promiseTwo = async () => Promise.resolve(21); suite('using async & await', () => { let answerOne; before(async () => { answerOne = await promiseOne(); }); test('comparing results from promises', async () => { const answerTwo = await promiseTwo(); assert.that(answerOne).isEqualTo(42); assert.that(answerTwo).isEqualTo(21); }); }); ``` - **Fail-Fast mode**: if enabled, it stops execution in the first test that fails (or has an error). Remaining tests will be marked as skipped. - **Run tests and suites in random order**: a good test suite does not depend on a particular order. Enabling this setting is a good way to ensure that. - **Strict check for assertions**: if a test does not evaluate any assertion while it is executed, the result is considered an error. Basically, a test with no assertion is considered a "bad" test. - **Explicitly failing or marking a test as pending**: there's a possibility of marking a test as failed or pending, for example: ```javascript import { suite, test, fail, pending } from "@pmoo/testy"; suite("marking tests as failed and pending", () => { test("marking as failed", () => fail.with("should not be here")); test("marking as pending", () => pending.dueTo("did not have time to finish")); }); ``` The output includes the messages provided: ```text [FAIL] marking as failed => should not be here [WIP] marking as pending => did not have time to finish ``` ## Why? Why another testing tool? The main reason is that we want to keep simplicity, something it's hard to see in the main testing tools out there. - **Zero dependencies:** right now, this project does not depend on any npm package, making the tool easy to install, and fast: essential to have immediate feedback while doing TDD. This is also good for installing on places where the internet connection is not good and we don't want to download hundreds of libraries. - **Understandable object-oriented code:** we want to use this tool for teaching, so eventually we'll look at the code during lessons, and students should be able to see what is going on, and even contributing at it, with no dark magic involved. Also, we try to follow good OO practices. - **Unique set of features:** we are not following any specification nor trying to copy behavior from other approaches (like the "xUnit" or "xSpec" way). ["Design Principles Behind Smalltalk"](https://www.cs.virginia.edu/~evans/cs655/readings/smalltalk.html) is a source of inspiration for this work. We try to follow the same principles here. ## Contributing Please take a look at the [Contributing section](CONTRIBUTING.md). ## Contributors Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tr> <td align="center"><a href="https://github.com/JavierGelatti"><img src="https://avatars2.githubusercontent.com/u/993337?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Facundo Javier Gelatti</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=JavierGelatti" title="Tests">⚠️</a> <a href="https://github.com/ngarbezza/testy/commits?author=JavierGelatti" title="Code">💻</a></td> <td align="center"><a href="https://codepen.io/TomerBenRachel/"><img src="https://avatars2.githubusercontent.com/u/23402988?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tomer Ben-Rachel</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=TomerPacific" title="Tests">⚠️</a> <a href="https://github.com/ngarbezza/testy/commits?author=TomerPacific" title="Code">💻</a></td> <td align="center"><a href="https://github.com/abraaoduarte"><img src="https://avatars2.githubusercontent.com/u/6676804?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Abraão Duarte</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=abraaoduarte" title="Code">💻</a></td> <td align="center"><a href="http://adico.tech"><img src="https://avatars0.githubusercontent.com/u/5412270?v=4?s=100" width="100px;" alt=""/><br /><sub><b>adico</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=adico1" title="Code">💻</a> <a href="https://github.com/ngarbezza/testy/commits?author=adico1" title="Tests">⚠️</a></td> <td align="center"><a href="https://github.com/ask-imran"><img src="https://avatars0.githubusercontent.com/u/20487103?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Askar Imran</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=ask-imran" title="Code">💻</a> <a href="https://github.com/ngarbezza/testy/commits?author=ask-imran" title="Tests">⚠️</a></td> <td align="center"><a href="http://www.nigelyong.com/"><img src="https://avatars2.githubusercontent.com/u/23243585?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Nigel Yong</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=niyonx" title="Code">💻</a></td> <td align="center"><a href="https://github.com/chelsieng"><img src="https://avatars1.githubusercontent.com/u/60008262?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Chelsie Ng</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=chelsieng" title="Code">💻</a></td> </tr> <tr> <td align="center"><a href="https://github.com/trochepablo"><img src="https://avatars2.githubusercontent.com/u/18213369?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Pablo T</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=trochepablo" title="Tests">⚠️</a> <a href="https://github.com/ngarbezza/testy/commits?author=trochepablo" title="Code">💻</a></td> <td align="center"><a href="https://github.com/franciscojaimesfreyre"><img src="https://avatars.githubusercontent.com/u/10203729?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Francisco Jaimes Freyre</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=franciscojaimesfreyre" title="Code">💻</a> <a href="https://github.com/ngarbezza/testy/commits?author=franciscojaimesfreyre" title="Tests">⚠️</a> <a href="https://github.com/ngarbezza/testy/commits?author=franciscojaimesfreyre" title="Documentation">📖</a></td> <td align="center"><a href="https://rpt.altervista.org"><img src="https://avatars.githubusercontent.com/u/1763919?v=4?s=100" width="100px;" alt=""/><br /><sub><b>giovannipessiva</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=giovannipessiva" title="Translation">🌍</a></td> <td align="center"><a href="https://abhikhatri67.github.io/"><img src="https://avatars.githubusercontent.com/u/15958423?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Abhishek Khatri</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=abhikhatri67" title="Code">💻</a></td> <td align="center"><a href="https://github.com/ignacio-r"><img src="https://avatars.githubusercontent.com/u/42122391?v=4" width="100px;" alt=""/><br /><sub><b>Ignacio Robledo</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=ignacio-r" title="Code">💻</a> <a href="https://github.com/ngarbezza/testy/commits?author=ignacio-r" title="Tests">⚠️</a></td> <td align="center"><a href="https://github.com/mellster2012"><img src="https://avatars.githubusercontent.com/u/2126256?v=4" width="100px;" alt=""/><br /><sub><b>Marco Ellwanger</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=mellster2012" title="Code">💻</a> <a href="https://github.com/ngarbezza/testy/commits?author=mellster2012" title="Tests">⚠️</a></td> <td align="center"><a href="https://github.com/beluamat29"><img src="https://avatars.githubusercontent.com/u/9338235?v=4" width="100px;" alt=""/><br /><sub><b>María Belén Amat</b></sub></a><br /><a href="https://github.com/ngarbezza/testy/commits?author=beluamat29" title="Code">💻</a> <a href="https://github.com/ngarbezza/testy/commits?author=beluamat29" title="Tests">⚠️</a> <a href="https://github.com/ngarbezza/testy/commits?author=beluamat29" title="Translation">🌍</a> <a href="https://github.com/ngarbezza/testy/commits?author=beluamat29" title="Documentation">📖</a></td> </tr> </table> <!-- markdownlint-restore --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END --> This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!