generate screenshots

This commit is contained in:
SPRINX0\prochazka
2025-01-28 18:01:36 +01:00
parent 707ccf2d21
commit 9e06944fe7
5 changed files with 52 additions and 9 deletions

View File

@@ -1,7 +1,10 @@
beforeEach(() => {
cy.visit('http://localhost:3000');
cy.viewport(1250, 900);
});
describe('Data browser data', () => { describe('Data browser data', () => {
it('Load table data', () => { it('Load table data', () => {
cy.visit('http://localhost:3000');
cy.contains('MySql-connection').click(); cy.contains('MySql-connection').click();
cy.contains('Chinook').click(); cy.contains('Chinook').click();
cy.contains('Album').click(); cy.contains('Album').click();
@@ -11,9 +14,7 @@ describe('Data browser data', () => {
cy.contains('Aerosmith'); cy.contains('Aerosmith');
}); });
it.only('Filter model', () => { it('Filter model', () => {
cy.visit('http://localhost:3000');
cy.contains('MySql-connection').click(); cy.contains('MySql-connection').click();
cy.contains('Chinook').click(); cy.contains('Chinook').click();
cy.testid('SqlObjectList_search').clear().type('album'); cy.testid('SqlObjectList_search').clear().type('album');
@@ -29,8 +30,6 @@ describe('Data browser data', () => {
}); });
it('Show raw data', () => { it('Show raw data', () => {
cy.visit('http://localhost:3000');
cy.contains('MySql-connection').click(); cy.contains('MySql-connection').click();
cy.contains('Chinook').click(); cy.contains('Chinook').click();
cy.contains('Album').rightclick(); cy.contains('Album').rightclick();
@@ -40,4 +39,43 @@ describe('Data browser data', () => {
cy.realPress(['Control', 'ArrowRight']); cy.realPress(['Control', 'ArrowRight']);
cy.contains('Aerosmith').should('not.exist'); cy.contains('Aerosmith').should('not.exist');
}); });
it('Data grid screenshots', () => {
cy.contains('MySql-connection').click();
cy.window().then(win => {
win.__changeCurrentTheme('theme-dark');
});
cy.contains('MyChinook').click();
cy.contains('Album').click();
cy.testid('TabsPanel_pinTabButton').click();
cy.contains('Genre').click();
cy.testid('TabsPanel_pinTabButton').click();
cy.contains('Playlist').click();
cy.testid('TabsPanel_pinTabButton').click();
cy.contains('Postgres-connection').click();
cy.contains('PgChinook').click();
cy.contains('customer').click();
cy.contains('Leonie').click();
cy.screenshot('datagrid');
cy.contains('invoice').click();
cy.contains('invoice_line (invoice_id)').click();
cy.screenshot('masterdetail');
cy.contains('9, Place Louis Barthou').click();
cy.contains('Switch to form').click();
cy.contains('Switch to table'); // test that we are in form view
cy.screenshot('formview');
});
it.only('SQL Gen', () => {
cy.contains('Postgres-connection').click();
cy.contains('PgChinook').rightclick();
cy.contains('SQL Generator').click();
cy.contains('Check all').click();
cy.screenshot('sqlgen');
});
}); });

View File

@@ -6,6 +6,7 @@ USER_mysql=root
PASSWORD_mysql=Pwd2020Db PASSWORD_mysql=Pwd2020Db
PORT_mysql=16004 PORT_mysql=16004
ENGINE_mysql=mysql@dbgate-plugin-mysql ENGINE_mysql=mysql@dbgate-plugin-mysql
DBCONFIG_mysql=[{"name":"MyChinook","connectionColor":"cyan"}]
LABEL_postgres=Postgres-connection LABEL_postgres=Postgres-connection
SERVER_postgres=localhost SERVER_postgres=localhost
@@ -13,3 +14,4 @@ USER_postgres=postgres
PASSWORD_postgres=Pwd2020Db PASSWORD_postgres=Pwd2020Db
PORT_postgres=16000 PORT_postgres=16000
ENGINE_postgres=postgres@dbgate-plugin-postgres ENGINE_postgres=postgres@dbgate-plugin-postgres
DBCONFIG_postgres=[{"name":"PgChinook","connectionColor":"red"}]

View File

@@ -79,11 +79,11 @@ async function initPostgresDatabase(dbname, inputFile) {
} }
async function run() { async function run() {
await initMySqlDatabase('Chinook', path.resolve(path.join(__dirname, '../data/Chinook-mysql.sql'))); await initMySqlDatabase('MyChinook', path.resolve(path.join(__dirname, '../data/Chinook-mysql.sql')));
// await initMySqlDatabase('Northwind', path.resolve(path.join(__dirname, '../data/northwind-mysql.sql'))); // await initMySqlDatabase('Northwind', path.resolve(path.join(__dirname, '../data/northwind-mysql.sql')));
// await initMySqlDatabase('Sakila', path.resolve(path.join(__dirname, '../data/sakila-mysql.sql'))); // await initMySqlDatabase('Sakila', path.resolve(path.join(__dirname, '../data/sakila-mysql.sql')));
await initPostgresDatabase('Chinook', path.resolve(path.join(__dirname, '../data/Chinook-postgres.sql'))); await initPostgresDatabase('PgChinook', path.resolve(path.join(__dirname, '../data/Chinook-postgres.sql')));
} }
dbgateApi.runScript(run); dbgateApi.runScript(run);

View File

@@ -416,3 +416,5 @@ focusedTreeDbKey.subscribe(value => {
focusedTreeDbKeyValue = value; focusedTreeDbKeyValue = value;
}); });
export const getFocusedTreeDbKey = () => focusedTreeDbKeyValue; export const getFocusedTreeDbKey = () => focusedTreeDbKeyValue;
window['__changeCurrentTheme'] = theme => currentTheme.set(theme);

View File

@@ -660,6 +660,7 @@
{#if tab.tabPreviewMode} {#if tab.tabPreviewMode}
<span <span
class="pin-button" class="pin-button"
data-testid='TabsPanel_pinTabButton'
on:click={e => pinTab(tab.tabid)} on:click={e => pinTab(tab.tabid)}
title="This tab is in preview mode, it will be replaced eg. when clicking table. Click to switch to normal mode. You could also double-click tab header." title="This tab is in preview mode, it will be replaced eg. when clicking table. Click to switch to normal mode. You could also double-click tab header."
> >