2021-05-27 08:28:52 +00:00
|
|
|
const engines = require('../engines');
|
2021-05-27 11:52:51 +00:00
|
|
|
const { testWrapper } = require('../tools');
|
2021-05-27 07:12:21 +00:00
|
|
|
|
2021-05-27 16:30:49 +00:00
|
|
|
const t1Sql = 'CREATE TABLE t1 (id int not null primary key, val1 varchar(50) null)';
|
2021-08-19 14:08:27 +00:00
|
|
|
const ix1Sql = 'CREATE index ix1 ON t1(val1, id)';
|
2021-05-27 16:30:49 +00:00
|
|
|
const t2Sql = 'CREATE TABLE t2 (id int not null primary key, val2 varchar(50) null)';
|
|
|
|
|
|
|
|
const txMatch = (tname, vcolname, nextcol) =>
|
|
|
|
expect.objectContaining({
|
|
|
|
pureName: tname,
|
2021-05-27 08:16:05 +00:00
|
|
|
columns: [
|
|
|
|
expect.objectContaining({
|
|
|
|
columnName: 'id',
|
2021-05-27 16:30:49 +00:00
|
|
|
notNull: true,
|
|
|
|
dataType: expect.stringContaining('int'),
|
2021-05-27 08:16:05 +00:00
|
|
|
}),
|
2021-05-27 16:30:49 +00:00
|
|
|
expect.objectContaining({
|
|
|
|
columnName: vcolname,
|
|
|
|
notNull: false,
|
|
|
|
dataType: expect.stringMatching(/.*char.*\(50\)/),
|
|
|
|
}),
|
|
|
|
...(nextcol
|
|
|
|
? [
|
|
|
|
expect.objectContaining({
|
|
|
|
columnName: 'nextcol',
|
|
|
|
notNull: false,
|
|
|
|
dataType: expect.stringMatching(/.*char.*\(50\)/),
|
|
|
|
}),
|
|
|
|
]
|
|
|
|
: []),
|
2021-05-27 08:16:05 +00:00
|
|
|
],
|
2021-05-27 16:30:49 +00:00
|
|
|
primaryKey: expect.objectContaining({
|
|
|
|
columns: [
|
|
|
|
expect.objectContaining({
|
|
|
|
columnName: 'id',
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
const t1Match = txMatch('t1', 'val1');
|
|
|
|
const t2Match = txMatch('t2', 'val2');
|
|
|
|
const t2NextColMatch = txMatch('t2', 'val2', true);
|
2021-05-27 07:43:08 +00:00
|
|
|
|
2021-05-27 10:26:20 +00:00
|
|
|
describe('Table analyse', () => {
|
2021-05-27 07:43:08 +00:00
|
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
2021-05-27 13:46:21 +00:00
|
|
|
'Table structure - full analysis - %s',
|
2021-05-27 11:17:25 +00:00
|
|
|
testWrapper(async (conn, driver, engine) => {
|
|
|
|
await driver.query(conn, t1Sql);
|
2021-05-27 07:12:21 +00:00
|
|
|
|
2021-05-27 11:17:25 +00:00
|
|
|
const structure = await driver.analyseFull(conn);
|
2021-05-27 07:12:21 +00:00
|
|
|
|
2021-05-27 11:17:25 +00:00
|
|
|
expect(structure.tables.length).toEqual(1);
|
|
|
|
expect(structure.tables[0]).toEqual(t1Match);
|
|
|
|
})
|
2021-05-27 07:12:21 +00:00
|
|
|
);
|
2021-05-27 07:26:37 +00:00
|
|
|
|
2021-05-27 07:43:08 +00:00
|
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
2021-05-27 13:46:21 +00:00
|
|
|
'Table add - incremental analysis - %s',
|
2021-05-27 11:17:25 +00:00
|
|
|
testWrapper(async (conn, driver, engine) => {
|
2021-05-27 16:30:49 +00:00
|
|
|
await driver.query(conn, t2Sql);
|
|
|
|
|
2021-05-27 07:26:37 +00:00
|
|
|
const structure1 = await driver.analyseFull(conn);
|
2021-05-27 16:30:49 +00:00
|
|
|
expect(structure1.tables.length).toEqual(1);
|
|
|
|
expect(structure1.tables[0]).toEqual(t2Match);
|
|
|
|
|
2021-05-27 08:16:05 +00:00
|
|
|
await driver.query(conn, t1Sql);
|
2021-05-27 07:26:37 +00:00
|
|
|
const structure2 = await driver.analyseIncremental(conn, structure1);
|
|
|
|
|
|
|
|
expect(structure2.tables.length).toEqual(2);
|
2021-05-27 08:16:05 +00:00
|
|
|
expect(structure2.tables.find(x => x.pureName == 't1')).toEqual(t1Match);
|
2021-05-27 16:30:49 +00:00
|
|
|
expect(structure2.tables.find(x => x.pureName == 't2')).toEqual(t2Match);
|
2021-05-27 11:17:25 +00:00
|
|
|
})
|
2021-05-27 07:26:37 +00:00
|
|
|
);
|
2021-05-27 08:16:05 +00:00
|
|
|
|
|
|
|
test.each(engines.map(engine => [engine.label, engine]))(
|
2021-05-27 13:46:21 +00:00
|
|
|
'Table remove - incremental analysis - %s',
|
2021-05-27 11:17:25 +00:00
|
|
|
testWrapper(async (conn, driver, engine) => {
|
2021-05-27 08:16:05 +00:00
|
|
|
await driver.query(conn, t1Sql);
|
2021-05-27 16:30:49 +00:00
|
|
|
await driver.query(conn, t2Sql);
|
2021-05-27 08:16:05 +00:00
|
|
|
const structure1 = await driver.analyseFull(conn);
|
2021-05-27 16:30:49 +00:00
|
|
|
expect(structure1.tables.length).toEqual(2);
|
|
|
|
expect(structure1.tables.find(x => x.pureName == 't1')).toEqual(t1Match);
|
|
|
|
expect(structure1.tables.find(x => x.pureName == 't2')).toEqual(t2Match);
|
|
|
|
|
2021-05-27 08:16:05 +00:00
|
|
|
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);
|
2021-05-27 11:17:25 +00:00
|
|
|
})
|
2021-05-27 08:16:05 +00:00
|
|
|
);
|
2021-05-27 16:30:49 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
const structure1 = await driver.analyseFull(conn);
|
|
|
|
|
|
|
|
if (engine.dbSnapshotBySeconds) await new Promise(resolve => setTimeout(resolve, 1100));
|
2021-08-14 07:36:22 +00:00
|
|
|
|
2021-05-27 16:30:49 +00:00
|
|
|
await driver.query(conn, 'ALTER TABLE t2 ADD 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);
|
|
|
|
expect(structure2.tables.find(x => x.pureName == 't2')).toEqual(t2NextColMatch);
|
|
|
|
})
|
|
|
|
);
|
2021-08-14 07:36:22 +00:00
|
|
|
|
|
|
|
test.each(engines.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);
|
2021-08-19 14:08:27 +00:00
|
|
|
expect(t1.indexes[0].columns.length).toEqual(2);
|
2021-08-19 13:14:27 +00:00
|
|
|
expect(t1.indexes[0].columns[0]).toEqual(expect.objectContaining({ columnName: 'val1' }));
|
2021-08-19 14:08:27 +00:00
|
|
|
expect(t1.indexes[0].columns[1]).toEqual(expect.objectContaining({ columnName: 'id' }));
|
2021-08-14 07:36:22 +00:00
|
|
|
})
|
|
|
|
);
|
2021-05-27 07:12:21 +00:00
|
|
|
});
|