mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
import { login } from '../../tasks/login';
|
|
import { navigateTo } from '../../tasks/navigation';
|
|
import {
|
|
checkResults,
|
|
inputQuery,
|
|
selectAllAgents,
|
|
submitQuery,
|
|
typeInECSFieldInput,
|
|
typeInOsqueryFieldInput,
|
|
} from '../../tasks/live_query';
|
|
|
|
describe('Super User - Live Query', () => {
|
|
beforeEach(() => {
|
|
login();
|
|
navigateTo('/app/osquery');
|
|
});
|
|
|
|
it('should run query and enable ecs mapping', () => {
|
|
cy.contains('New live query').click();
|
|
selectAllAgents();
|
|
inputQuery('select * from uptime;');
|
|
submitQuery();
|
|
|
|
checkResults();
|
|
cy.react('EuiDataGridHeaderCellWrapper', {
|
|
props: { id: 'osquery.days.number', index: 1 },
|
|
});
|
|
cy.react('EuiDataGridHeaderCellWrapper', {
|
|
props: { id: 'osquery.hours.number', index: 2 },
|
|
});
|
|
|
|
cy.react('EuiAccordion', { props: { buttonContent: 'Advanced' } }).click();
|
|
typeInECSFieldInput('message{downArrow}{enter}');
|
|
typeInOsqueryFieldInput('days{downArrow}{enter}');
|
|
submitQuery();
|
|
|
|
checkResults();
|
|
cy.react('EuiDataGridHeaderCellWrapper', {
|
|
props: { id: 'message', index: 1 },
|
|
});
|
|
cy.react('EuiDataGridHeaderCellWrapper', {
|
|
props: { id: 'osquery.days.number', index: 2 },
|
|
}).react('EuiIconIndexMapping');
|
|
});
|
|
});
|