-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Reporting] Fix and test for Listing of Reports (#74453)
* [Reporting] Fix and test for Listing of Reports * add sleeps * await selector instead of sleep * reduce changes * cleanup after csv generated * fix snapshot
- Loading branch information
Showing
10 changed files
with
160 additions
and
64 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
x-pack/plugins/reporting/public/components/__snapshots__/report_listing.test.tsx.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 0 additions & 59 deletions
59
x-pack/test/functional/apps/reporting_management/report_delete_pagination.ts
This file was deleted.
Oops, something went wrong.
121 changes: 121 additions & 0 deletions
121
x-pack/test/functional/apps/reporting_management/report_listing.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import expect from '@kbn/expect'; | ||
import { WebElementWrapper } from 'test/functional/services/lib/web_element_wrapper'; | ||
import { FtrProviderContext } from '../../ftr_provider_context'; | ||
|
||
const getTableTextFromElement = async (tableEl: WebElementWrapper) => { | ||
const rows = await tableEl.findAllByCssSelector('tbody tr'); | ||
return ( | ||
await Promise.all( | ||
rows.map(async (row) => { | ||
return await row.getVisibleText(); | ||
}) | ||
) | ||
).join('\n'); | ||
}; | ||
|
||
export default ({ getPageObjects, getService }: FtrProviderContext) => { | ||
const pageObjects = getPageObjects(['common', 'reporting']); | ||
const log = getService('log'); | ||
const retry = getService('retry'); | ||
const security = getService('security'); | ||
|
||
const testSubjects = getService('testSubjects'); | ||
const findInstance = getService('find'); | ||
const esArchiver = getService('esArchiver'); | ||
|
||
describe('Listing of Reports', function () { | ||
before(async () => { | ||
await security.testUser.setRoles(['kibana_admin', 'reporting_user']); | ||
await esArchiver.load('empty_kibana'); | ||
}); | ||
|
||
beforeEach(async () => { | ||
// to reset the data after deletion testing | ||
await esArchiver.load('reporting/archived_reports'); | ||
await pageObjects.common.navigateToApp('reporting'); | ||
await testSubjects.existOrFail('reportJobListing', { timeout: 200000 }); | ||
}); | ||
|
||
after(async () => { | ||
await esArchiver.unload('empty_kibana'); | ||
await security.testUser.restoreDefaults(); | ||
}); | ||
|
||
afterEach(async () => { | ||
await esArchiver.unload('reporting/archived_reports'); | ||
}); | ||
|
||
it('Confirm single report deletion works', async () => { | ||
log.debug('Checking for reports.'); | ||
await retry.try(async () => { | ||
await testSubjects.click('checkboxSelectRow-k9a9xlwl0gpe1457b10rraq3'); | ||
}); | ||
const deleteButton = await testSubjects.find('deleteReportButton'); | ||
await retry.waitFor('delete button to become enabled', async () => { | ||
return await deleteButton.isEnabled(); | ||
}); | ||
await deleteButton.click(); | ||
await testSubjects.exists('confirmModalBodyText'); | ||
await testSubjects.click('confirmModalConfirmButton'); | ||
await retry.try(async () => { | ||
await testSubjects.waitForDeleted('checkboxSelectRow-k9a9xlwl0gpe1457b10rraq3'); | ||
}); | ||
}); | ||
|
||
it('Paginates content', async () => { | ||
const previousButton = await testSubjects.find('pagination-button-previous'); | ||
|
||
// previous CAN NOT be clicked | ||
expect(await previousButton.getAttribute('disabled')).to.be('true'); | ||
|
||
// scan page 1 | ||
let tableText = await getTableTextFromElement(await testSubjects.find('reportJobListing')); | ||
const PAGE_CONTENT_1 = `[Logs] File Type Scatter Plot\nvisualization\n2020-04-21 @ 07:01 PM\ntest_user\nCompleted at 2020-04-21 @ 07:02 PM | ||
[Logs] File Type Scatter Plot\nvisualization\n2020-04-21 @ 07:01 PM\ntest_user\nCompleted at 2020-04-21 @ 07:02 PM | ||
[Logs] Heatmap\nvisualization\n2020-04-21 @ 07:00 PM\ntest_user\nCompleted at 2020-04-21 @ 07:01 PM | ||
[Logs] Heatmap\nvisualization\n2020-04-21 @ 07:00 PM\ntest_user\nCompleted at 2020-04-21 @ 07:01 PM | ||
[Flights] Flight Delays\nvisualization\n2020-04-21 @ 07:00 PM\ntest_user\nCompleted at 2020-04-21 @ 07:01 PM | ||
[Flights] Flight Delays\nvisualization\n2020-04-21 @ 07:00 PM\ntest_user\nCompleted at 2020-04-21 @ 07:01 PM | ||
pdf\ndashboard\n2020-04-21 @ 07:00 PM\ntest_user\nCompleted at 2020-04-21 @ 07:00 PM | ||
pdf\ndashboard\n2020-04-21 @ 07:00 PM\ntest_user\nCompleted at 2020-04-21 @ 07:00 PM | ||
[Flights] Flight Cancellations\nvisualization\n2020-04-21 @ 06:59 PM\ntest_user\nCompleted at 2020-04-21 @ 07:00 PM | ||
[Flights] Markdown Instructions\nvisualization\n2020-04-21 @ 06:59 PM\ntest_user\nCompleted at 2020-04-21 @ 07:00 PM`; | ||
expect(tableText).to.be(PAGE_CONTENT_1); | ||
|
||
// click page 2 | ||
await testSubjects.click('pagination-button-1'); | ||
await findInstance.byCssSelector('[data-test-page="1"]'); | ||
|
||
// previous CAN be clicked | ||
expect(await previousButton.getAttribute('disabled')).to.be(null); | ||
|
||
// scan page 2 | ||
tableText = await getTableTextFromElement(await testSubjects.find('reportJobListing')); | ||
const PAGE_CONTENT_2 = `[eCommerce] Revenue Tracking\ncanvas workpad\n2020-04-21 @ 06:58 PM\ntest_user\nCompleted at 2020-04-21 @ 06:59 PM | ||
[Logs] Web Traffic\ncanvas workpad\n2020-04-21 @ 06:58 PM\ntest_user\nCompleted at 2020-04-21 @ 06:59 PM | ||
[Flights] Overview\ncanvas workpad\n2020-04-21 @ 06:58 PM\ntest_user\nCompleted at 2020-04-21 @ 06:59 PM | ||
[eCommerce] Revenue Dashboard\ndashboard\n2020-04-21 @ 06:57 PM\ntest_user\nCompleted at 2020-04-21 @ 06:58 PM | ||
[Logs] Web Traffic\ndashboard\n2020-04-21 @ 06:57 PM\ntest_user\nCompleted at 2020-04-21 @ 06:58 PM | ||
[Flights] Global Flight Dashboard\ndashboard\n2020-04-21 @ 06:56 PM\ntest_user\nCompleted at 2020-04-21 @ 06:57 PM | ||
[Flights] Global Flight Dashboard\ndashboard\n2020-04-21 @ 06:56 PM\ntest_user\nCompleted at 2020-04-21 @ 06:57 PM | ||
report4csv\n2020-04-21 @ 06:55 PM\ntest_user\nCompleted at 2020-04-21 @ 06:56 PM - Max size reached\nreport3csv\n2020-04-21 @ 06:55 PM | ||
test_user\nCompleted at 2020-04-21 @ 06:55 PM - Max size reached\nreport2csv\n2020-04-21 @ 06:54 PM\ntest_user\nCompleted at 2020-04-21 @ 06:55 PM - Max size reached`; | ||
expect(tableText).to.be(PAGE_CONTENT_2); | ||
|
||
// click page 3 | ||
await testSubjects.click('pagination-button-2'); | ||
await findInstance.byCssSelector('[data-test-page="2"]'); | ||
|
||
// scan page 3 | ||
tableText = await getTableTextFromElement(await testSubjects.find('reportJobListing')); | ||
const PAGE_CONTENT_3 = `report1csv\n2020-04-21 @ 06:54 PM\ntest_user\nCompleted at 2020-04-21 @ 06:54 PM - Max size reached`; | ||
expect(tableText).to.be(PAGE_CONTENT_3); | ||
}); | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters