mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
94 lines
3.4 KiB
JavaScript
94 lines
3.4 KiB
JavaScript
describe('Run as portal', () => {
|
|
it('successfully loads', () => {
|
|
cy.visit('http://localhost:3000');
|
|
cy.contains('MySql-connection');
|
|
cy.contains('Postgres-connection');
|
|
});
|
|
|
|
// it('Delete chinook', () => {
|
|
// cy.visit('http://localhost:3000');
|
|
|
|
// cy.contains('MySql-connection').rightclick();
|
|
// cy.contains('New Query (server)').click();
|
|
// cy.realType('drop database if exists Chinook');
|
|
// cy.realPress('F5');
|
|
// cy.contains('Query execution finished');
|
|
|
|
// cy.contains('Postgres-connection').rightclick();
|
|
// cy.contains('New Query (server)').click();
|
|
// cy.realType('drop database if exists "Chinook"');
|
|
// cy.realPress('F5');
|
|
// cy.contains('Query execution finished');
|
|
|
|
// // cy.realPress('F1');
|
|
// // cy.realType('Close all');
|
|
// // cy.realPress('Enter');
|
|
// });
|
|
|
|
it('Create Chinook MySQL', () => {
|
|
cy.visit('http://localhost:3000');
|
|
|
|
cy.contains('MySql-connection').click();
|
|
cy.contains('MySql-connection').rightclick();
|
|
cy.contains('Create database').click();
|
|
cy.get('[data-testid=InputTextModal_value]').clear().type('Chinook');
|
|
cy.get('[data-testid=InputTextModal_ok]').click();
|
|
});
|
|
|
|
it('Create Chinook Postgres', () => {
|
|
cy.visit('http://localhost:3000');
|
|
|
|
cy.contains('Postgres-connection').click();
|
|
cy.contains('Postgres-connection').rightclick();
|
|
cy.contains('Create database').click();
|
|
cy.get('[data-testid=InputTextModal_value]').clear().type('Chinook');
|
|
cy.get('[data-testid=InputTextModal_ok]').click();
|
|
});
|
|
|
|
// it('Import Chinook MySQL', () => {
|
|
// cy.visit('http://localhost:3000');
|
|
// cy.contains('MySql-connection').click();
|
|
// cy.get('[data-testid=DatabaseAppObject_Chinook]').rightclick();
|
|
// cy.contains('Chinook').rightclick();
|
|
// cy.contains('Restore/import SQL dump').click();
|
|
// cy.get('#uploadFileButton').selectFile('data/chinook-mysql.sql', { force: true });
|
|
// cy.wait(500);
|
|
// cy.get('[data-testid=ImportDatabaseDumpModal_runImport]').click();
|
|
// cy.contains('Importing database');
|
|
// cy.contains('Finished job script');
|
|
// cy.get('[data-testid=RunScriptModal_close]').click();
|
|
// cy.contains('Chinook').click();
|
|
// cy.contains('Album');
|
|
// });
|
|
|
|
// it('Import Chinook Postgres', () => {
|
|
// cy.visit('http://localhost:3000');
|
|
// cy.contains('Postgres-connection').click();
|
|
// cy.get('[data-testid=DatabaseAppObject_Chinook]').rightclick();
|
|
// cy.contains('Restore/import SQL dump').click();
|
|
// cy.get('#uploadFileButton').selectFile('data/chinook-postgres.sql', { force: true });
|
|
// cy.wait(500);
|
|
// cy.get('[data-testid=ImportDatabaseDumpModal_runImport]').click();
|
|
// cy.contains('Importing database');
|
|
// cy.contains('Finished job script');
|
|
// cy.get('[data-testid=RunScriptModal_close]').click();
|
|
// cy.contains('Chinook').click();
|
|
// cy.contains('album');
|
|
// });
|
|
|
|
it('Open ask pwd connection', () => {
|
|
cy.visit('http://localhost:3000');
|
|
cy.contains('Postgres-ask-connection').click();
|
|
cy.testid('DatabaseLoginModal_username').clear().type('postgres');
|
|
cy.testid('DatabaseLoginModal_password').clear().type('Pwd2020Db');
|
|
cy.testid('DatabaseLoginModal_connect').click();
|
|
cy.contains('Chinook').click();
|
|
// cy.contains('album');
|
|
});
|
|
|
|
// it('import chinook DB', () => {
|
|
// cy.visit('http://localhost:3000');
|
|
// cy.get('[data-testid=ConnectionTab_buttonConnect]').click();
|
|
// });
|
|
});
|