Skip to content

Latest commit

 

History

History
146 lines (104 loc) · 7.59 KB

Linting and Testing.md

File metadata and controls

146 lines (104 loc) · 7.59 KB

For the latest code-coverage information, see codecov.io, for the latest benchmark results, see the benchmark results wiki page.

Testing Suites

Currently, flowR contains two testing suites: one for functionality and one for performance. We explain each of them in the following. A more general test experience is granted by npm run checkup which will include the construction of the docker image, the generation of the wiki pages, and the linter.

Functionality Tests

The functionality tests represent conventional unit (and depending on your terminology component/api) tests. We use vitest as our testing framework. You can run the tests by issuing:

npm run test

Within the commandline, this should automatically drop you into a watch mode which will automatically re-run the tests if you change the code. If, at any time there are too many errors, you can use --bail=<value> to stop the tests after a certain number of errors. For example:

npm run test -- --bail=1

If you want to run the tests without the watch mode, you can use:

npm run test -- --no-watch

To run all tests, including a coverage report and label summary, run:

npm run test-full

However, depending on your local R version, your network connection and potentially other factors, some tests may be skipped automatically as they don’t apply to your current system setup (or can't be tested with the current prerequisites). Each test can specify such requirements as part of the TestConfiguration, which is then used in the test.skipIf function of vitest. It is up to the ci to run the tests on different systems to ensure that those tests are ensured to run.

Test Structure

All functionality tests are to be located under test/functionality.

This folder contains three special and important elements:

  • test-setup which is the entry point if all tests are run. It should automatically disable logging statements and configure global variables (e.g., if installation tests should run).
  • _helper which contains helper functions to be used by other tests.
  • test-summary which may produce a summary of the covered capabilities.

We name all tests using the .test.ts suffix and try to run them in parallel. Whenever this is not possible (e.g., when using withShell), please use describe.sequential to disable parallel execution for the respective test.

Writing a Test

Currently, this is heavily dependent on what you want to test (normalization, dataflow, quad-export, ...) and it is probably best to have a look at existing tests in that area to get an idea of what comfort functionality is available.

Running Only Some Tests

To run only some tests, vitest allows you to filter tests. Besides, you can use the watch mode (with npm run test) to only run tests that are affected by your changes.

Performance Tests

The performance test suite of flowR uses several suites to check for variations in the required times for certain steps. Although we measure wall time in the CI (which is subject to rather large variations), it should give a rough idea of the performance of flowR. Furthermore, the respective scripts can be used locally as well. To run them, issue:

npm run performance-test

See test/performance for more information on the suites, how to run them, and their results. If you are interested in the results of the benchmarks, see here.

CI Pipeline

We have several workflows defined in .github/workflows. We explain the most important workflows in the following:

Linting

There are two linting scripts. The main one:

npm run lint

And a weaker version of the first (allowing for todo comments) which is run automatically in the pre-push githook as explained in the CONTRIBUTING.md:

npm run lint-local

Besides checking coding style (as defined in the package.json), the full linter runs the license checker.

In case you are unaware, eslint can automatically fix several linting problems. So you may be fine by just running:

npm run lint-local -- --fix

Oh no, the linter fails

By now, the rules should be rather stable and so, if the linter fails, it is usually best if you (if necessary) read the respective description and fix the respective problem. Rules in this project cover general JavaScript issues using regular ESLint, TypeScript-specific issues using typescript-eslint, and code formatting with ESLint Stylistic.

However, in case you think that the linter is wrong, please do not hesitate to open a new issue.

License Checker

flowR is licensed under the GPLv3 License requiring us to only rely on compatible licenses. For now, this list is hardcoded as part of the npm license-compat script so it can very well be that a new dependency you add causes the checker to fail — even though it is compatible. In that case, please either open a new issue or directly add the license to the list (including a reference to why it is compatible).