Skip to content

ably/test-observability

Repository files navigation

Test observability server

This is a web application which provides:

  • an API for uploading JUnit-format unit test results
  • a website for viewing aggregate information about all the uploaded test results

You might want to use it to observe trends in your test results — for example, finding out which tests fail most frequently. We’ve been using it for this purpose in ably/ably-cocoa#1279.

Take a look at an example

The Ably SDK team is currently using it for observing the results of the ably-cocoa SDK’s tests. You can take a look at our instance at https://test-observability.herokuapp.com/.

How it’s built

It’s written in TypeScript, and uses the Nest web application framework and TypeORM ORM. It uses a PostgreSQL database for storage.

How to run it locally

Dependencies

The instructions here are for macOS only, but should be similar on other platforms.

  • Node.js version 16.14.0
    • install using, for example, nvm or brew install node@16
  • PostgreSQL server
    • install using brew install postgresql

Setup instructions

  1. If you don’t already have a local PostgreSQL user, create one:

    $ sudo -u postgres createuser $USER --createdb
  2. Create the database:

    $ createdb test_observation
  3. Install dependencies:

    $ npm install
  4. Run the server in development mode (will restart each time you change the code):

    $ npm run start:dev
  5. You can now access the server at http://localhost:3000.

How to deploy it

It’s ready to be deployed to Heroku. You just need to set a config var containing a randomly-generated TEST_OBSERVABILITY_AUTH_KEY value.

How to upload results to it

A couple of examples:

Development tips

How to generate a migration

If you want to modify the database schema (e.g. add columns, change a column from nullable to non-nullable, …), you’ll need to do so using a TypeORM migration. TypeORM is able to generate these migrations automatically from your entity files. Do the following:

  1. Update your entity .ts files to reflect the new characteristics of the schema.
  2. Generate the migration:
    $ npm exec typeorm migration:generate -- -n '<insert a good name for the migration here, e.g. MakeGithubBaseAndHeadRefsNullable>'

Migrations are automatically run when the server starts up.

About

A web app for storing and displaying information about unit test results.

Topics

Resources

License

Stars

Watchers

Forks