createSql test + postgre FIX

This commit is contained in:
Jan Prochazka
2021-05-27 15:46:21 +02:00
parent 8896260df7
commit 73d8ad36ad
6 changed files with 33 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ const obj1Match = expect.objectContaining({
describe('Object analyse', () => {
test.each(flatSource())(
'Full analysis (%s - %s)',
'Full analysis - %s - %s',
testWrapper(async (conn, driver, type, object, engine) => {
for (const sql of initSql) await driver.query(conn, sql);
@@ -29,7 +29,7 @@ describe('Object analyse', () => {
);
test.each(flatSource())(
'Incremental analysis - add (%s - %s)',
'Incremental analysis - add - %s - %s',
testWrapper(async (conn, driver, type, object, engine) => {
for (const sql of initSql) await driver.query(conn, sql);
@@ -44,7 +44,7 @@ describe('Object analyse', () => {
);
test.each(flatSource())(
'Incremental analysis - drop (%s - %s)',
'Incremental analysis - drop - %s - %s',
testWrapper(async (conn, driver, type, object, engine) => {
for (const sql of initSql) await driver.query(conn, sql);
@@ -58,4 +58,25 @@ describe('Object analyse', () => {
expect(structure2[type][0]).toEqual(obj1Match);
})
);
test.each(flatSource())(
'Create SQL - add - %s - %s',
testWrapper(async (conn, driver, type, object, engine) => {
for (const sql of initSql) await driver.query(conn, sql);
await driver.query(conn, object.create1);
const structure1 = await driver.analyseFull(conn);
await driver.query(conn, object.drop1);
const structure2 = await driver.analyseIncremental(conn, structure1);
expect(structure2[type].length).toEqual(0);
await driver.query(conn, structure1[type][0].createSql);
const structure3 = await driver.analyseIncremental(conn, structure2);
expect(structure3[type].length).toEqual(1);
expect(structure3[type][0]).toEqual(obj1Match);
})
);
});