mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
173 lines
6.7 KiB
JavaScript
173 lines
6.7 KiB
JavaScript
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 fkSql = 'ALTER TABLE t3 ADD FOREIGN KEY (valfk) REFERENCES t2(id)'
|
|
|
|
const txMatch = (engine, tname, vcolname, nextcol) =>
|
|
expect.objectContaining({
|
|
pureName: tname,
|
|
columns: [
|
|
expect.objectContaining({
|
|
columnName: 'id',
|
|
dataType: expect.stringMatching(/int.*/i),
|
|
...(engine.skipNullability ? {} : { notNull: true }),
|
|
}),
|
|
expect.objectContaining({
|
|
columnName: vcolname,
|
|
...(engine.skipNullability ? {} : { notNull: false }),
|
|
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);
|
|
|
|
describe('Table analyse', () => {
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
|
'Table structure - full analysis - %s',
|
|
testWrapper(async (conn, driver, engine) => {
|
|
await driver.query(conn, t1Sql);
|
|
|
|
const structure = await driver.analyseFull(conn);
|
|
|
|
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 driver.query(conn, t2Sql(engine));
|
|
|
|
const structure1 = await driver.analyseFull(conn);
|
|
expect(structure1.tables.length).toEqual(1);
|
|
expect(structure1.tables[0]).toEqual(t2Match(engine));
|
|
|
|
await driver.query(conn, 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 driver.query(conn, t1Sql);
|
|
await driver.query(conn, 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 driver.query(conn, '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 driver.query(conn, t1Sql);
|
|
await driver.query(conn, t2Sql(engine));
|
|
const structure1 = await driver.analyseFull(conn);
|
|
|
|
if (engine.dbSnapshotBySeconds) await new Promise(resolve => setTimeout(resolve, 1100));
|
|
|
|
await driver.query(
|
|
conn,
|
|
`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 driver.query(conn, t1Sql);
|
|
await driver.query(conn, 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 driver.query(conn, 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 driver.query(conn, t2Sql(engine));
|
|
await driver.query(conn, 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' })
|
|
);
|
|
})
|
|
);
|
|
});
|