mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
9e96b04542
- this is a small part of a bit of cleanup of our test files - the goal is to make the existing tests clearer with a view to making it easier to write more tests - this makes the test structure follow the codebase structure more closely - eventually we will colocate the tests as we break the codebase down further
37 lines
1.3 KiB
JavaScript
37 lines
1.3 KiB
JavaScript
const should = require('should');
|
|
const errors = require('@tryghost/errors');
|
|
|
|
const commands = require('../../../../../core/server/data/schema/commands');
|
|
|
|
describe('schema commands', function () {
|
|
it('_hasForeignSQLite throws when knex is nox configured to use sqlite3', async function () {
|
|
const Knex = require('knex');
|
|
const knex = Knex({
|
|
client: 'mysql'
|
|
});
|
|
|
|
try {
|
|
await commands._hasForeignSQLite({transaction: knex});
|
|
should.fail('addForeign did not throw');
|
|
} catch (err) {
|
|
should.equal(err instanceof errors.GhostError, true);
|
|
err.message.should.equal('Must use hasForeignSQLite3 on an SQLite3 database');
|
|
}
|
|
});
|
|
|
|
it('_hasPrimaryKeySQLite throws when knex is configured to use sqlite', async function () {
|
|
const Knex = require('knex');
|
|
const knex = Knex({
|
|
client: 'mysql'
|
|
});
|
|
|
|
try {
|
|
await commands._hasPrimaryKeySQLite(null, knex);
|
|
should.fail('hasPrimaryKeySQLite did not throw');
|
|
} catch (err) {
|
|
should.equal(err instanceof errors.GhostError, true);
|
|
err.message.should.equal('Must use hasPrimaryKeySQLite on an SQLite3 database');
|
|
}
|
|
});
|
|
});
|