mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 00:56:02 +00:00
192 lines
7.9 KiB
JavaScript
192 lines
7.9 KiB
JavaScript
const { runCommandOnDriver } = require('dbgate-tools');
|
|
const engines = require('../engines');
|
|
const { testWrapper } = require('../tools');
|
|
|
|
const t1Sql = 'CREATE TABLE ~t1 (~id int not null primary key, ~val1 varchar(50))';
|
|
const ix1Sql = 'CREATE index ~ix1 ON ~t1(~val1, ~id)';
|
|
const t2Sql = engine =>
|
|
`CREATE TABLE ~t2 (~id int not null primary key, ~val2 varchar(50) ${engine.skipUnique ? '' : 'unique'})`;
|
|
const t3Sql = 'CREATE TABLE ~t3 (~id int not null primary key, ~valfk int, foreign key (~valfk) references ~t2(~id))';
|
|
const t4Sql = 'CREATE TABLE ~t4 (~id int not null primary key, ~valdef int default 12 not null)';
|
|
// const fkSql = 'ALTER TABLE t3 ADD FOREIGN KEY (valfk) REFERENCES t2(id)'
|
|
|
|
const txMatch = (engine, tname, vcolname, nextcol, defaultValue) =>
|
|
expect.objectContaining({
|
|
pureName: tname,
|
|
columns: [
|
|
expect.objectContaining({
|
|
columnName: 'id',
|
|
dataType: expect.stringMatching(/int.*|number/i),
|
|
...(engine.skipNullability ? {} : { notNull: true }),
|
|
}),
|
|
expect.objectContaining({
|
|
columnName: vcolname,
|
|
...(engine.skipNullability ? {} : { notNull: !!defaultValue }),
|
|
...(defaultValue
|
|
? { defaultValue }
|
|
: {
|
|
dataType: engine.skipStringLength
|
|
? expect.stringMatching(/.*string|char.*/i)
|
|
: expect.stringMatching(/.*char.*\(50\)/i),
|
|
}),
|
|
}),
|
|
...(nextcol
|
|
? [
|
|
expect.objectContaining({
|
|
columnName: 'nextcol',
|
|
...(engine.skipNullability ? {} : { notNull: false }),
|
|
dataType: engine.skipStringLength
|
|
? expect.stringMatching(/.*string.*|char.*/i)
|
|
: expect.stringMatching(/.*char.*\(50\).*/i),
|
|
}),
|
|
]
|
|
: []),
|
|
],
|
|
primaryKey: expect.objectContaining({
|
|
columns: [
|
|
expect.objectContaining({
|
|
columnName: 'id',
|
|
}),
|
|
],
|
|
}),
|
|
});
|
|
|
|
const t1Match = engine => txMatch(engine, 't1', 'val1');
|
|
const t2Match = engine => txMatch(engine, 't2', 'val2');
|
|
const t2NextColMatch = engine => txMatch(engine, 't2', 'val2', true);
|
|
const t4Match = engine => txMatch(engine, 't4', 'valdef', null, '12');
|
|
|
|
describe('Table analyse', () => {
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
|
'Table structure - full analysis - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql));
|
|
|
|
const structure = await driver.analyseFull(conn);
|
|
console.log(JSON.stringify(structure, null, 2));
|
|
|
|
expect(structure.tables.length).toEqual(1);
|
|
expect(structure.tables[0]).toEqual(t1Match(engine));
|
|
})
|
|
);
|
|
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
|
'Table add - incremental analysis - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t2Sql(engine)));
|
|
|
|
const structure1 = await driver.analyseFull(conn);
|
|
expect(structure1.tables.length).toEqual(1);
|
|
expect(structure1.tables[0]).toEqual(t2Match(engine));
|
|
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql));
|
|
const structure2 = await driver.analyseIncremental(conn, structure1);
|
|
|
|
expect(structure2.tables.length).toEqual(2);
|
|
expect(structure2.tables.find(x => x.pureName == 't1')).toEqual(t1Match(engine));
|
|
expect(structure2.tables.find(x => x.pureName == 't2')).toEqual(t2Match(engine));
|
|
})
|
|
);
|
|
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
|
'Table remove - incremental analysis - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql));
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t2Sql(engine)));
|
|
const structure1 = await driver.analyseFull(conn);
|
|
expect(structure1.tables.length).toEqual(2);
|
|
expect(structure1.tables.find(x => x.pureName == 't1')).toEqual(t1Match(engine));
|
|
expect(structure1.tables.find(x => x.pureName == 't2')).toEqual(t2Match(engine));
|
|
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put('DROP TABLE ~t2'));
|
|
const structure2 = await driver.analyseIncremental(conn, structure1);
|
|
|
|
expect(structure2.tables.length).toEqual(1);
|
|
expect(structure2.tables[0]).toEqual(t1Match(engine));
|
|
})
|
|
);
|
|
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
|
'Table change - incremental analysis - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql));
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t2Sql(engine)));
|
|
const structure1 = await driver.analyseFull(conn);
|
|
|
|
if (engine.dbSnapshotBySeconds) await new Promise(resolve => setTimeout(resolve, 1100));
|
|
|
|
await runCommandOnDriver(conn, driver, dmp =>
|
|
dmp.put(`ALTER TABLE ~t2 ADD ${engine.alterTableAddColumnSyntax ? 'COLUMN' : ''} ~nextcol varchar(50)`)
|
|
);
|
|
const structure2 = await driver.analyseIncremental(conn, structure1);
|
|
|
|
expect(structure2).toBeTruthy(); // if falsy, no modification is detected
|
|
|
|
expect(structure2.tables.length).toEqual(2);
|
|
expect(structure2.tables.find(x => x.pureName == 't1')).toEqual(t1Match(engine));
|
|
expect(structure2.tables.find(x => x.pureName == 't2')).toEqual(t2NextColMatch(engine));
|
|
})
|
|
);
|
|
|
|
test.each(engines.filter(x => !x.skipIndexes).map(engine => [engine.label, engine]))(
|
|
'Index - full analysis - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t1Sql));
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(ix1Sql));
|
|
const structure = await driver.analyseFull(conn);
|
|
|
|
const t1 = structure.tables.find(x => x.pureName == 't1');
|
|
expect(t1.indexes.length).toEqual(1);
|
|
expect(t1.indexes[0].columns.length).toEqual(2);
|
|
expect(t1.indexes[0].columns[0]).toEqual(expect.objectContaining({ columnName: 'val1' }));
|
|
expect(t1.indexes[0].columns[1]).toEqual(expect.objectContaining({ columnName: 'id' }));
|
|
})
|
|
);
|
|
|
|
test.each(engines.filter(x => !x.skipUnique).map(engine => [engine.label, engine]))(
|
|
'Unique - full analysis - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t2Sql(engine)));
|
|
const structure = await driver.analyseFull(conn);
|
|
|
|
const t2 = structure.tables.find(x => x.pureName == 't2');
|
|
// const indexesAndUniques = [...t2.uniques, ...t2.indexes];
|
|
expect(t2.uniques.length).toEqual(1);
|
|
expect(t2.uniques[0].columns.length).toEqual(1);
|
|
expect(t2.uniques[0].columns[0]).toEqual(expect.objectContaining({ columnName: 'val2' }));
|
|
})
|
|
);
|
|
|
|
test.each(engines.filter(x => !x.skipReferences).map(engine => [engine.label, engine]))(
|
|
'Foreign key - full analysis - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t2Sql(engine)));
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t3Sql));
|
|
// await driver.query(conn, fkSql);
|
|
|
|
const structure = await driver.analyseFull(conn);
|
|
|
|
const t3 = structure.tables.find(x => x.pureName == 't3');
|
|
console.log('T3', t3.foreignKeys[0].columns);
|
|
expect(t3.foreignKeys.length).toEqual(1);
|
|
expect(t3.foreignKeys[0].columns.length).toEqual(1);
|
|
expect(t3.foreignKeys[0]).toEqual(expect.objectContaining({ refTableName: 't2' }));
|
|
expect(t3.foreignKeys[0].columns[0]).toEqual(
|
|
expect.objectContaining({ columnName: 'valfk', refColumnName: 'id' })
|
|
);
|
|
})
|
|
);
|
|
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
|
'Table structure - default value - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await runCommandOnDriver(conn, driver, dmp => dmp.put(t4Sql));
|
|
|
|
const structure = await driver.analyseFull(conn);
|
|
|
|
expect(structure.tables.length).toEqual(1);
|
|
expect(structure.tables[0]).toEqual(t4Match(engine));
|
|
})
|
|
);
|
|
});
|