@nifty-lil-tricks/testing-plugin-postgresql
v0.6.0
Published
A nifty li'l plugin for setting up PostgreSQL database instances when testing
Downloads
18
Maintainers
Readme
nifty_lil_tricks_testing/plugin_postgresql
Note: this package is currently a work in progress
A nifty li'l plugin for setting up PostgreSQL database instances when testing
Installation
Note: this package works with TypeScript v5 or later
Deno
import { postgreSqlPlugin } from "@nifty-lil-tricks/testing-plugin-postgresql";
Node.js
npm install @nifty-lil-tricks/testing-plugin-postgresql
TypeScript
The TypeScript tsconfig.json
must contain the following recommended settings:
{
"compilerOptions": {
"target": "ES2022",
"strict": true
}
}
Features
The following features are supported
- Setup a PostgreSQL server in Docker for testing.
- Setup an existing PostgreSQL server for testing.
- Setup custom database on the PostgreSQL server
- Run migrations on the configured PostgreSQL server
- Seed the configured PostgreSQL server with data.
Quick start
Setup a Postgresql server in Docker, run migrations and seed the database with data as follows:
import {
afterEach,
beforeEach,
describe,
it,
} from "testing/bdd.ts";
import { assertEquals } from "testing/asserts.ts";
import { dirname, fromFileUrl } from "path/mod.ts";
import { Client } from "deps";
import {
setupTestsFactory,
type SetupTestsTeardown,
} from "@nifty-lil-tricks/testing";
import {
MigrationStrategy,
type PluginConfig,
postgreSqlPlugin,
Server,
ServerStrategy,
} from "@nifty-lil-tricks/testing-plugin-postgresql";
const root = dirname(fromFileUrl(import.meta.url));
// In another file, load plugins as follows to generate a setupTests function:
const { setupTests } = setupTestsFactory({ database: postgreSqlPlugin });
// Then one can use this in any test file as follows:
describe("Service", () => {
let teardownTests: SetupTestsTeardown;
let server: Server;
beforeEach(async () => {
// Setup tests with configured plugins
const result = await setupTests({
database: {
// Setup server using the Docker strategy
server: { strategy: ServerStrategy.DOCKER },
// Run migrations using the SQL strategy
migrate: { strategy: MigrationStrategy.SQL, root },
// Seed the database with data
seed: {
User: [
{ email: "email 1", name: "name 1" },
{ email: "email 2", name: "name 2" },
],
},
} as PluginConfig,
});
teardownTests = result.teardownTests;
server = result.outputs.database.output.server;
});
afterEach(async () => {
// Teardown tests to restore environment after tests have run
await teardownTests();
});
describe("method", () => {
it("should test something that relies on the postgresql plugin", async () => {
// Arrange
const query = `SELECT email, name FROM "User";`;
const { connection } = server;
const client = new Client({ tls: { enabled: false }, ...connection });
await client.connect();
// Act
const queryOutput = await client.queryObject(query);
await client.end();
// Assert
assertEquals(queryOutput.rowCount, 2);
});
});
});
Existing server
One can also use an existing Postgresql server as follows (note, in this example
an existing server is one also setup using the Docker strategy but in a
beforeAll
block):
import {
afterAll,
afterEach,
beforeAll,
beforeEach,
describe,
it,
} from "testing/bdd.ts";
import { assertEquals } from "testing/asserts.ts";
import { dirname, fromFileUrl } from "path/mod.ts";
import { Client } from "deps";
import {
setupTestsFactory,
type SetupTestsTeardown,
} from "@nifty-lil-tricks/testing";
import {
MigrationStrategy,
type PluginConfig,
postgreSqlPlugin,
Server,
ServerStrategy,
} from "@nifty-lil-tricks/testing-plugin-postgresql";
const root = dirname(fromFileUrl(import.meta.url));
// In another file, load plugins as follows to generate a setupTests function:
const { setupTests } = setupTestsFactory({ database: postgreSqlPlugin });
// Then one can use this in any test file as follows:
describe("Service", () => {
let teardownTests: SetupTestsTeardown;
let teardownServer: SetupTestsTeardown;
let server: Server;
beforeAll(async () => {
// Setup tests with configured plugins
const result = await setupTests({
database: {
// Setup server using the Docker strategy
server: { strategy: ServerStrategy.DOCKER },
} as PluginConfig,
});
teardownServer = result.teardownTests;
server = result.outputs.database.output.server;
});
beforeEach(async () => {
// Setup tests with configured plugins
const result = await setupTests({
database: {
// Setup existing server using the Docker strategy
server,
// Run migrations using the SQL strategy
migrate: { strategy: MigrationStrategy.SQL, root },
// Seed the database with data
seed: {
User: [
{ email: "email 1", name: "name 1" },
{ email: "email 2", name: "name 2" },
],
},
} as PluginConfig,
});
teardownTests = result.teardownTests;
});
afterEach(async () => {
// Teardown tests to restore environment after tests have run
await teardownTests();
});
afterAll(async () => {
// Teardown server to restore environment after tests have run
await teardownServer();
});
describe("method", () => {
it("should test something that relies on the postgresql plugin", async () => {
// Arrange
const query = `SELECT email, name FROM "User";`;
const { connection } = server;
const client = new Client({ tls: { enabled: false }, ...connection });
await client.connect();
// Act
const queryOutput = await client.queryObject(query);
await client.end();
// Assert
assertEquals(queryOutput.rowCount, 2);
});
});
});
Migrations customisation
Custom files glob
By default, the migrations look for files using the following glob:
"**/*.sql"
. This can be overridden by defining a string
or function
returning a list of strings. For example:
import {
afterEach,
beforeEach,
describe,
it,
} from "testing/bdd.ts";
import { assertEquals } from "testing/asserts.ts";
import { dirname, fromFileUrl } from "path/mod.ts";
import { Client } from "deps";
import {
setupTestsFactory,
type SetupTestsTeardown,
} from "@nifty-lil-tricks/testing";
import {
MigrationStrategy,
type PluginConfig,
postgreSqlPlugin,
Server,
ServerStrategy,
} from "@nifty-lil-tricks/testing-plugin-postgresql";
const root = dirname(fromFileUrl(import.meta.url));
// In another file, load plugins as follows to generate a setupTests function:
const { setupTests } = setupTestsFactory({ database: postgreSqlPlugin });
// Then one can use this in any test file as follows:
describe("Service", () => {
let teardownTests: SetupTestsTeardown;
let server: Server;
beforeEach(async () => {
// Setup tests with configured plugins
const result = await setupTests({
database: {
// Setup server using the Docker strategy
server: { strategy: ServerStrategy.DOCKER },
// Run migrations using the SQL strategy
migrate: {
strategy: MigrationStrategy.SQL,
root,
files: "fixtures/migrations/**/migration.sql",
},
// Seed the database with data
seed: {
User: [
{ email: "email 1", name: "name 1" },
{ email: "email 2", name: "name 2" },
],
},
} as PluginConfig,
});
teardownTests = result.teardownTests;
server = result.outputs.database.output.server;
});
afterEach(async () => {
// Teardown tests to restore environment after tests have run
await teardownTests();
});
describe("method", () => {
it("should test something that relies on the postgresql plugin", async () => {
// Arrange
const query = `SELECT email, name FROM "User";`;
const { connection } = server;
const client = new Client({ tls: { enabled: false }, ...connection });
await client.connect();
// Act
const queryOutput = await client.queryObject(query);
await client.end();
// Assert
assertEquals(queryOutput.rowCount, 2);
});
});
});
Custom files ordering
By default, the migrations process the files in ascending order by filename.
This can be overridden with the orderBy
option. For example:
import {
afterEach,
beforeEach,
describe,
it,
} from "testing/bdd.ts";
import { assertEquals } from "testing/asserts.ts";
import { dirname, fromFileUrl } from "path/mod.ts";
import { Client } from "deps";
import {
setupTestsFactory,
type SetupTestsTeardown,
} from "@nifty-lil-tricks/testing";
import {
MigrationOrderBy,
MigrationStrategy,
type PluginConfig,
postgreSqlPlugin,
Server,
ServerStrategy,
} from "@nifty-lil-tricks/testing-plugin-postgresql";
const root = dirname(fromFileUrl(import.meta.url));
// In another file, load plugins as follows to generate a setupTests function:
const { setupTests } = setupTestsFactory({ database: postgreSqlPlugin });
// Then one can use this in any test file as follows:
describe("Service", () => {
let teardownTests: SetupTestsTeardown;
let server: Server;
beforeEach(async () => {
// Setup tests with configured plugins
const result = await setupTests({
database: {
// Setup server using the Docker strategy
server: { strategy: ServerStrategy.DOCKER },
// Run migrations using the SQL strategy
migrate: {
strategy: MigrationStrategy.SQL,
root,
orderBy: MigrationOrderBy.FILENAME_DESC,
},
// Seed the database with data
seed: {
User: [
{ email: "email 1", name: "name 1" },
{ email: "email 2", name: "name 2" },
],
},
} as PluginConfig,
});
teardownTests = result.teardownTests;
server = result.outputs.database.output.server;
});
afterEach(async () => {
// Teardown tests to restore environment after tests have run
await teardownTests();
});
describe("method", () => {
it("should test something that relies on the postgresql plugin", async () => {
// Arrange
const query = `SELECT email, name FROM "User";`;
const { connection } = server;
const client = new Client({ tls: { enabled: false }, ...connection });
await client.connect();
// Act
const queryOutput = await client.queryObject(query);
await client.end();
// Assert
assertEquals(queryOutput.rowCount, 2);
});
});
});
API
The API Docs can be found here.
Examples
Examples can be found here.
Support
| Platform Version | Supported | Notes |
| ---------------- | ------------------ | -------------------------- |
| Deno v1
| :white_check_mark: | |
| Node.JS v18
| :white_check_mark: | TypeScript v5+ for typings |
| Node.JS v20
| :white_check_mark: | TypeScript v5+ for typings |
| Web Browsers | :x: | Coming soon |
Note: due to limitations in GitHub Actions, some of the above features are not able to be automatically tested on the following platforms. However, they are still supported and will be tested locally before release:
- Windows
- MacOS
Useful links
- For help or feedback on this project, join us in GitHub Discussions
License
Nifty li'l tricks postgresql package is 100% free and open-source, under the MIT license.
This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
Contributions
Contributions, issues and feature requests are very welcome. If you are using this package and fixed a bug for yourself, please consider submitting a PR!