2024-09-30 17:49:02 +08:00
|
|
|
import { e2e } from '../utils';
|
2024-05-24 21:22:11 +08:00
|
|
|
|
|
|
|
const DASHBOARD_ID = 'P2jR04WVk';
|
|
|
|
|
2025-04-17 20:01:26 +08:00
|
|
|
describe.skip('Geomap spatial operations', () => {
|
2024-05-24 21:22:11 +08:00
|
|
|
beforeEach(() => {
|
|
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
|
|
|
});
|
|
|
|
|
2025-04-17 18:07:18 +08:00
|
|
|
it.skip('Tests location auto option', () => {
|
2025-07-19 00:27:04 +08:00
|
|
|
e2e.flows.openDashboard({ uid: DASHBOARD_ID, queryParams: { '__feature.tableNextGen': false, editPanel: 1 } });
|
2024-09-30 17:49:02 +08:00
|
|
|
e2e.components.Tab.title('Transform data').should('be.visible').click();
|
2024-05-24 21:22:11 +08:00
|
|
|
e2e.components.Transforms.addTransformationButton().scrollIntoView().should('be.visible').click();
|
|
|
|
|
|
|
|
e2e.components.TransformTab.newTransform('Spatial operations').scrollIntoView().should('be.visible').click();
|
|
|
|
e2e.components.Transforms.SpatialOperations.actionLabel().type('Prepare spatial field{enter}');
|
|
|
|
e2e.components.Transforms.SpatialOperations.locationLabel().should('be.visible');
|
|
|
|
e2e.components.Transforms.SpatialOperations.locationLabel().type('Auto{enter}');
|
|
|
|
|
|
|
|
e2e.components.PanelEditor.toggleTableView().click({ force: true });
|
|
|
|
e2e.components.Panels.Visualization.Table.header()
|
|
|
|
.should('be.visible')
|
|
|
|
.within(() => {
|
|
|
|
cy.contains('Point').should('be.visible');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Tests location coords option', () => {
|
2025-07-19 00:27:04 +08:00
|
|
|
e2e.flows.openDashboard({ uid: DASHBOARD_ID, queryParams: { '__feature.tableNextGen': false, editPanel: 1 } });
|
2024-09-30 17:49:02 +08:00
|
|
|
e2e.components.Tab.title('Transform data').should('be.visible').click();
|
2024-05-24 21:22:11 +08:00
|
|
|
e2e.components.Transforms.addTransformationButton().scrollIntoView().should('be.visible').click();
|
|
|
|
|
|
|
|
e2e.components.TransformTab.newTransform('Spatial operations').scrollIntoView().should('be.visible').click();
|
|
|
|
e2e.components.Transforms.SpatialOperations.actionLabel().type('Prepare spatial field{enter}');
|
|
|
|
e2e.components.Transforms.SpatialOperations.locationLabel().should('be.visible');
|
|
|
|
e2e.components.Transforms.SpatialOperations.locationLabel().type('Coords{enter}');
|
|
|
|
|
|
|
|
e2e.components.Transforms.SpatialOperations.location.coords.latitudeFieldLabel().should('be.visible');
|
|
|
|
e2e.components.Transforms.SpatialOperations.location.coords.latitudeFieldLabel().type('Lat{enter}');
|
|
|
|
|
|
|
|
e2e.components.Transforms.SpatialOperations.location.coords.longitudeFieldLabel().should('be.visible');
|
|
|
|
e2e.components.Transforms.SpatialOperations.location.coords.longitudeFieldLabel().type('Lng{enter}');
|
|
|
|
|
|
|
|
e2e.components.PanelEditor.toggleTableView().click({ force: true });
|
|
|
|
e2e.components.Panels.Visualization.Table.header()
|
|
|
|
.should('be.visible')
|
|
|
|
.within(() => {
|
|
|
|
cy.contains('Point').should('be.visible');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Tests geoshash field column appears in table view', () => {
|
2025-07-19 00:27:04 +08:00
|
|
|
e2e.flows.openDashboard({ uid: DASHBOARD_ID, queryParams: { '__feature.tableNextGen': false, editPanel: 1 } });
|
2024-09-30 17:49:02 +08:00
|
|
|
e2e.components.Tab.title('Transform data').should('be.visible').click();
|
2024-05-24 21:22:11 +08:00
|
|
|
e2e.components.Transforms.addTransformationButton().scrollIntoView().should('be.visible').click();
|
|
|
|
|
|
|
|
e2e.components.TransformTab.newTransform('Spatial operations').scrollIntoView().should('be.visible').click();
|
|
|
|
e2e.components.Transforms.SpatialOperations.actionLabel().type('Prepare spatial field{enter}');
|
|
|
|
e2e.components.Transforms.SpatialOperations.locationLabel().should('be.visible');
|
|
|
|
e2e.components.Transforms.SpatialOperations.locationLabel().type('Geohash{enter}');
|
|
|
|
|
|
|
|
e2e.components.Transforms.SpatialOperations.location.geohash
|
|
|
|
.geohashFieldLabel()
|
|
|
|
.should('be.visible')
|
|
|
|
.type('State{enter}');
|
|
|
|
|
|
|
|
e2e.components.PanelEditor.toggleTableView().click({ force: true });
|
|
|
|
e2e.components.Panels.Visualization.Table.header()
|
|
|
|
.should('be.visible')
|
|
|
|
.within(() => {
|
|
|
|
cy.contains('State 1').should('be.visible');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Tests location lookup option', () => {
|
2025-07-19 00:27:04 +08:00
|
|
|
e2e.flows.openDashboard({ uid: DASHBOARD_ID, queryParams: { '__feature.tableNextGen': false, editPanel: 1 } });
|
2024-09-30 17:49:02 +08:00
|
|
|
e2e.components.Tab.title('Transform data').should('be.visible').click();
|
2024-05-24 21:22:11 +08:00
|
|
|
e2e.components.Transforms.addTransformationButton().scrollIntoView().should('be.visible').click();
|
|
|
|
|
|
|
|
e2e.components.TransformTab.newTransform('Spatial operations').scrollIntoView().should('be.visible').click();
|
|
|
|
e2e.components.Transforms.SpatialOperations.actionLabel().type('Prepare spatial field{enter}');
|
|
|
|
e2e.components.Transforms.SpatialOperations.locationLabel().should('be.visible');
|
|
|
|
e2e.components.Transforms.SpatialOperations.locationLabel().type('Lookup{enter}');
|
|
|
|
|
|
|
|
e2e.components.Transforms.SpatialOperations.location.lookup.lookupFieldLabel().should('be.visible');
|
|
|
|
e2e.components.Transforms.SpatialOperations.location.lookup.lookupFieldLabel().type('State{enter}');
|
|
|
|
|
|
|
|
e2e.components.Transforms.SpatialOperations.location.lookup.gazetteerFieldLabel().should('be.visible');
|
|
|
|
e2e.components.Transforms.SpatialOperations.location.lookup.gazetteerFieldLabel().type('USA States{enter}');
|
|
|
|
|
|
|
|
e2e.components.PanelEditor.toggleTableView().click({ force: true });
|
|
|
|
e2e.components.Panels.Visualization.Table.header()
|
|
|
|
.should('be.visible')
|
|
|
|
.within(() => {
|
|
|
|
cy.contains('Geometry').should('be.visible');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|