mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-17 22:36:01 +00:00
219 lines
7.4 KiB
JavaScript
219 lines
7.4 KiB
JavaScript
const stableStringify = require('json-stable-stringify');
|
|
const _ = require('lodash');
|
|
const fp = require('lodash/fp');
|
|
const { testWrapper, removeNotNull, transformSqlForEngine } = require('../tools');
|
|
const engines = require('../engines');
|
|
const crypto = require('crypto');
|
|
const {
|
|
getAlterTableScript,
|
|
extendDatabaseInfo,
|
|
generateDbPairingId,
|
|
formatQueryWithoutParams,
|
|
} = require('dbgate-tools');
|
|
|
|
function pickImportantTableInfo(engine, table) {
|
|
const props = ['columnName', 'defaultValue'];
|
|
if (!engine.skipNullability) props.push('notNull');
|
|
if (!engine.skipAutoIncrement) props.push('autoIncrement');
|
|
return {
|
|
pureName: table.pureName,
|
|
columns: table.columns
|
|
.filter(x => x.columnName != 'rowid')
|
|
.sort((a, b) => a.columnName.localeCompare(b.columnName))
|
|
.map(fp.pick(props))
|
|
.map(props => _.omitBy(props, x => x == null))
|
|
.map(props =>
|
|
_.omitBy(props, (v, k) => k == 'defaultValue' && v == 'NULL' && engine.setNullDefaultInsteadOfDrop)
|
|
),
|
|
};
|
|
}
|
|
|
|
function checkTableStructure(engine, t1, t2) {
|
|
// expect(t1.pureName).toEqual(t2.pureName)
|
|
expect(pickImportantTableInfo(engine, t1)).toEqual(pickImportantTableInfo(engine, t2));
|
|
}
|
|
|
|
async function testTableDiff(engine, conn, driver, mangle) {
|
|
const initQuery = formatQueryWithoutParams(driver, `create table ~t0 (~id int not null primary key)`);
|
|
await driver.query(conn, transformSqlForEngine(engine, initQuery));
|
|
|
|
const query = formatQueryWithoutParams(
|
|
driver,
|
|
`create table ~t1 (
|
|
~col_pk int not null primary key,
|
|
~col_std int,
|
|
~col_def int ${engine.skipDefaultValue ? '' : 'default 12'},
|
|
${engine.skipReferences ? '' : '~col_fk int references ~t0(~id),'}
|
|
~col_idx int,
|
|
~col_uq int ${engine.skipUnique ? '' : 'unique'} ,
|
|
~col_ref int ${engine.skipUnique ? '' : 'unique'}
|
|
)`
|
|
);
|
|
|
|
await driver.query(conn, transformSqlForEngine(engine, query));
|
|
|
|
if (!engine.skipIndexes) {
|
|
const query = formatQueryWithoutParams(driver, `create index ~idx1 on ~t1(~col_idx)`);
|
|
await driver.query(conn, transformSqlForEngine(engine, query));
|
|
}
|
|
|
|
if (!engine.skipReferences) {
|
|
const query = formatQueryWithoutParams(
|
|
driver,
|
|
`create table ~t2 (~id int not null primary key, ~fkval int null references ~t1(~col_ref))`
|
|
);
|
|
|
|
await driver.query(conn, transformSqlForEngine(engine, query));
|
|
}
|
|
|
|
const tget = x => x.tables.find(y => y.pureName == 't1');
|
|
const structure1 = generateDbPairingId(extendDatabaseInfo(await driver.analyseFull(conn)));
|
|
let structure2 = _.cloneDeep(structure1);
|
|
mangle(tget(structure2));
|
|
structure2 = extendDatabaseInfo(structure2);
|
|
|
|
const { sql } = getAlterTableScript(tget(structure1), tget(structure2), {}, structure1, structure2, driver);
|
|
console.log('RUNNING ALTER SQL', driver.engine, ':', sql);
|
|
|
|
await driver.script(conn, sql);
|
|
|
|
const structure2Real = extendDatabaseInfo(await driver.analyseFull(conn));
|
|
|
|
checkTableStructure(engine, tget(structure2Real), tget(structure2));
|
|
// expect(stableStringify(structure2)).toEqual(stableStringify(structure2Real));
|
|
}
|
|
|
|
const TESTED_COLUMNS = ['col_pk', 'col_std', 'col_def', 'col_fk', 'col_ref', 'col_idx', 'col_uq'];
|
|
// const TESTED_COLUMNS = ['col_pk'];
|
|
// const TESTED_COLUMNS = ['col_idx'];
|
|
// const TESTED_COLUMNS = ['col_def'];
|
|
// const TESTED_COLUMNS = ['col_std'];
|
|
// const TESTED_COLUMNS = ['col_ref'];
|
|
|
|
function create_engines_columns_source(engines) {
|
|
return _.flatten(
|
|
engines.map(engine =>
|
|
TESTED_COLUMNS.filter(col => col.endsWith('_pk') || !engine.skipNonPkRename)
|
|
.filter(col => !col.endsWith('_pk') || !engine.skipPkColumnTesting)
|
|
.map(column => [engine.label, column, engine])
|
|
)
|
|
);
|
|
}
|
|
|
|
describe('Alter table', () => {
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
|
'Add column - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await testTableDiff(engine, conn, driver, tbl => {
|
|
tbl.columns.push({
|
|
columnName: 'added',
|
|
dataType: 'int',
|
|
pairingId: crypto.randomUUID(),
|
|
notNull: false,
|
|
autoIncrement: false,
|
|
});
|
|
});
|
|
})
|
|
);
|
|
|
|
const columnsSource = create_engines_columns_source(engines);
|
|
const dropableColumnsSrouce = columnsSource.filter(
|
|
([_label, col, engine]) => !engine.skipPkDrop || !col.endsWith('_pk')
|
|
);
|
|
const hasDropableColumns = dropableColumnsSrouce.length > 0;
|
|
|
|
if (hasDropableColumns) {
|
|
test.each(dropableColumnsSrouce)(
|
|
'Drop column - %s - %s',
|
|
testWrapper(async (conn, driver, column, engine) => {
|
|
await testTableDiff(
|
|
engine,
|
|
conn,
|
|
driver,
|
|
tbl => (tbl.columns = tbl.columns.filter(x => x.columnName != column))
|
|
);
|
|
})
|
|
);
|
|
}
|
|
|
|
// const hasEnginesWithNullable = engines.filter(x => !x.skipNullable).length > 0;
|
|
//
|
|
// if (hasEnginesWithNullable) {
|
|
// const source = create_engines_columns_source(engines.filter(x => !x.skipNullable));
|
|
//
|
|
// test.each(source)(
|
|
// 'Change nullability - %s - %s',
|
|
// testWrapper(async (conn, driver, column, engine) => {
|
|
// await testTableDiff(
|
|
// engine,
|
|
// conn,
|
|
// driver,
|
|
// tbl => (tbl.columns = tbl.columns.map(x => (x.columnName == column ? { ...x, notNull: true } : x)))
|
|
// );
|
|
// })
|
|
// );
|
|
// }
|
|
//
|
|
// test.each(columnsSource)(
|
|
// 'Rename column - %s - %s',
|
|
// testWrapper(async (conn, driver, column, engine) => {
|
|
// await testTableDiff(
|
|
// engine,
|
|
// conn,
|
|
// driver,
|
|
// tbl => (tbl.columns = tbl.columns.map(x => (x.columnName == column ? { ...x, columnName: 'col_renamed' } : x)))
|
|
// );
|
|
// })
|
|
// );
|
|
//
|
|
// test.each(engines.map(engine => [engine.label, engine]))(
|
|
// 'Drop index - %s',
|
|
// testWrapper(async (conn, driver, engine) => {
|
|
// await testTableDiff(engine, conn, driver, tbl => {
|
|
// tbl.indexes = [];
|
|
// });
|
|
// })
|
|
// );
|
|
//
|
|
// const enginesWithDefault = engines.filter(x => !x.skipDefaultValue);
|
|
// const hasEnginesWithDefault = enginesWithDefault.length > 0;
|
|
//
|
|
// if (hasEnginesWithDefault) {
|
|
// test.each(enginesWithDefault.map(engine => [engine.label, engine]))(
|
|
// 'Add default value - %s',
|
|
// testWrapper(async (conn, driver, engine) => {
|
|
// await testTableDiff(engine, conn, driver, tbl => {
|
|
// tbl.columns.find(x => x.columnName == 'col_std').defaultValue = '123';
|
|
// });
|
|
// })
|
|
// );
|
|
//
|
|
// test.each(enginesWithDefault.map(engine => [engine.label, engine]))(
|
|
// 'Unset default value - %s',
|
|
// testWrapper(async (conn, driver, engine) => {
|
|
// await testTableDiff(engine, conn, driver, tbl => {
|
|
// tbl.columns.find(x => x.columnName == 'col_def').defaultValue = undefined;
|
|
// });
|
|
// })
|
|
// );
|
|
//
|
|
// test.each(enginesWithDefault.map(engine => [engine.label, engine]))(
|
|
// 'Change default value - %s',
|
|
// testWrapper(async (conn, driver, engine) => {
|
|
// await testTableDiff(engine, conn, driver, tbl => {
|
|
// tbl.columns.find(x => x.columnName == 'col_def').defaultValue = '567';
|
|
// });
|
|
// })
|
|
// );
|
|
// }
|
|
|
|
// test.each(engines.map(engine => [engine.label, engine]))(
|
|
// 'Change autoincrement - %s',
|
|
// testWrapper(async (conn, driver, engine) => {
|
|
// await testTableDiff(engine, conn, driver, tbl => {
|
|
// tbl.columns.find(x => x.columnName == 'col_pk').autoIncrement = true;
|
|
// });
|
|
// })
|
|
// );
|
|
});
|