Last active
February 2, 2021 14:34
-
-
Save odigity/7f37077de74964051d45c4ca80ec3250 to your computer and use it in GitHub Desktop.
Wrapping a unit test in a transaction for easy cleanup with Knex.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/node | |
const Promise = require('bluebird') | |
const config = require('./config.json') | |
const knex = require('./lib/knex')(config.database).connection() | |
const mock = () => ({ user_id: Math.floor(Math.random() * 999) + 1, payload_type: 'foo', attributes: JSON.stringify({}) }) | |
const before = (t) => { | |
console.log('before') | |
const tmp = {} | |
const p = new Promise( (resolve, reject) => tmp.resolve = resolve ) | |
knex.transaction( tx => { t.tx = tx; tmp.resolve() } ).catch( () => {} ) | |
return p | |
} | |
const test = async (t) => { | |
console.log('test') | |
let m1 = mock(), m2 = mock() | |
await t.tx('notifications').insert(m1) | |
await t.tx('notifications').insert(m2) | |
} | |
const after = (t) => { | |
console.log('after') | |
// return t.tx.commit() | |
return t.tx.rollback() | |
} | |
let t = {} | |
before(t) | |
.then( () => test(t) ) | |
.then( () => after(t) ) | |
.catch( e => console.log(`e: ${e}`) ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
knex turns the rollback into an exception which then fails the ava test