Testing Guide¶
omni_test
allows you to run tests from within the database.
omni_test
is a templated extension
omni_test
is a templated extension. This means that by installing it, its default-instantiated
into omni_test
but can be instantiated into any other schema:
In order to use it, you need to provision a template database with your test functions and everything they need:
create database myapp_test;
update pg_database set datistemplate = true where datname = 'myapp_test';
-- provision the content
Use omni_schema.assemble_schema
One of the easiest way to provision files into this new schema is to use
omni_schema.assemble_schema
:
To run tests, simply pass the name of the database to the run_tests
function:
The results will conform to this structure:
Name | Type | Description |
---|---|---|
name | text |
The name of the test. |
description | text |
A detailed description of the test |
start_time | timestamp |
The start time of the test. |
end_time | timestamp |
The end time of the test. |
error_message | text |
An error message, if the test failed. |