Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Dashboard] Fix Lens and TSVB chart tooltip positioning relative to global headers #94247

Merged
merged 14 commits into from
Apr 5, 2021

Conversation

nickofthyme
Copy link
Contributor

@nickofthyme nickofthyme commented Mar 10, 2021

Summary

Fixes #93495

Prevents the tooltip on xy charts and Lens from rendering outside of the document.body plus a top padding of 98px for the global header. This only occurs for long tooltips caused by many split and y accessors.

Notice is all the screen recordings below, the tooltip is never positioned above the global header nor below the window, unless space is not permitted in either case.

Added top-level element

This PR adds a new top-level element #app-fixed-viewport that is otherwise invisible and non-interactable to/by the user. This is to set the confines of which the chart tooltip can be positioned, accounting for the top headers in and out of fullscreen mode. This is required as body is the main scrolling element and will constantly shift up as you scroll and the .app-wrapper element is the full scrollHeight of the content.

Screen.Recording.2021-03-11.at.11.49.31.AM.mp4

Notice the #app-fixed-viewport element never moves whereas the body shifts up as you scroll down.

Lens in editor

Screen.Recording.2021-03-10.at.07.34.05.AM.mp4

Lens in dashboard

Screen.Recording.2021-03-10.at.07.35.47.AM.mp4

xy chart in editor

Screen.Recording.2021-03-09.at.05.46.45.PM.mp4

xy chart in dashboard

Screen.Recording.2021-03-09.at.05.48.37.PM.mp4

Checklist

@nickofthyme nickofthyme added bug Fixes for quality problems that affect the customer experience Feature:XYAxis XY-Axis charts (bar, area, line) Team:Visualizations Visualization editors, elastic-charts and infrastructure v8.0.0 Feature:Lens v7.12.0 v7.13.0 labels Mar 10, 2021
Copy link
Contributor

@flash1293 flash1293 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested and works as expected - the header height should be pulled from the eui variable, otherwise this looks good to me. Failing tests seem to be easily fixable

@@ -61,6 +61,8 @@ type XYSettingsProps = Pick<
legendPosition: Position;
};

const KBN_HEADER_OFFSET = 98;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This constant should be available from

import euiLightVars from '@elastic/eui/dist/eui_theme_light.json';
KBN_HEADER_OFFSET = 2* euiLightVarseuiHeaderHeightCompensation

(same for Lens)

Copy link
Contributor Author

@nickofthyme nickofthyme Mar 10, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @flash1293 I'll pull from that value.

Also is there an easy way to tell what app you are in or better yet if the header is visible? Other than a querySelector. I'd like to only add this padding when the tooltip is visible. Like canvas for instance may use an xy chart on full screen where the padding is not necessary.

Screen.Recording.2021-03-10.at.07.50.29.AM.mp4

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a good point - core.chrome.getIsVisible$ should give you an observable with this information. The biggest challenge is to pass it through to the right places :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That worked perfectly! Thanks! 🙏

xy charts in canvas

Screen.Recording.2021-03-10.at.09.04.54.AM.mp4

Lens charts in dashboard

Screen.Recording.2021-03-10.at.09.39.54.AM.mp4

@nickofthyme nickofthyme marked this pull request as ready for review March 10, 2021 13:41
@nickofthyme nickofthyme requested a review from a team March 10, 2021 13:41
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-app (Team:KibanaApp)

@nickofthyme nickofthyme requested review from a team as code owners March 10, 2021 18:47
@nickofthyme
Copy link
Contributor Author

nickofthyme commented Mar 10, 2021

Since the body is the main scroll container in dashboard app, the document.body boundary is constantly moving. Thus to fix this I added a top-level fixed viewport element, basically an element with extents of the window that is fixed invisible and unactionable. This is then used as the boundary. See demo of this issue below.

Screen.Recording.2021-03-10.at.12.18.26.PM.mp4

@nickofthyme nickofthyme changed the title fix lens and xy charts tooltip position Fix Lens tooltip being positioned behind global headers Mar 10, 2021
@flash1293
Copy link
Contributor

flash1293 commented Mar 11, 2021

@nickofthyme With the fixed viewport element to anchor things, do we even need the padding-top calculation and chrome/no-chrome detection logic in lens and vis_type_xy? It seems like it would be easier for the core code to just add a top: 0 / top: 98px the the element in the right case and the rendered elastic-chart can simply use it as boundary. Am I missing something?

@nickofthyme
Copy link
Contributor Author

Great idea @flash1293, that also accounts for the .header__topBannerContainer element.

Image 2021-03-11 at 11 22 29 AM

I added the boundary to tsvb too as that would have the same issue...

Screen.Recording.2021-03-11.at.11.37.33.AM.mp4

@nickofthyme nickofthyme added impact:high Addressing this issue will have a high level of impact on the quality/strength of our product. loe:small Small Level of Effort labels Mar 11, 2021
@nickofthyme nickofthyme changed the title [Dashboard] Fix Lens and TSVB tooltip being positioned behind global headers [Dashboard] Fix Lens and TSVB tooltip positioning relative to global headers Mar 11, 2021
@nickofthyme nickofthyme requested a review from a team March 11, 2021 22:34
Comment on lines +55 to 57
<div id="app-fixed-viewport" />
<div id="globalBannerList">{bannerComponent}</div>
<AppContainer classes$={chrome.getApplicationClasses$()}>{appComponent}</AppContainer>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I understand the purpose, but I'm unsure why all this is necessary tbh. In 'stretch-to-height' mode apps, app-wrapper-panel (or even .kibana-body) already pretty much has the effective layout/positioning the added #app-fixed-viewport element has, isn't it?

Couldn't you just use .app-wrapper-panel or .kbnBody as your boundary element?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The .app-wrapper-panel and the #kibana-body` have a height of 100% of the entire dashboard and they scroll with the dashboard itself, using that as boundary doesn't block the tooltip from being blocked right below the headers.

Copy link
Contributor Author

@nickofthyme nickofthyme Mar 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@markov00 is correct, I tried using every top-level element that was available including:

  • document.body or .kbn-body -- only at the top of the scroll height and moves when body is scrolled. See video below.
  • #kibana-body -- full scroll height goes beyond viewport as soon as you scroll
  • .content -- full scroll height goes beyond viewport as soon as you scroll
  • .app-wrapper -- full scroll height goes beyond viewport as soon as you scroll
  • .app-wrapper-panel -- full scroll height goes beyond viewport as soon as you scroll
  • .application -- full scroll height goes beyond viewport as soon as you scroll

You can see the height of these scroll elements on the video below being ~2500px.

This was the last option unless someone else has any suggestions.

Screen.Recording.2021-03-11.at.11.49.31.AM.mp4

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The .app-wrapper-panel and the #kibana-body` have a height of 100% of the entire dashboard and they scroll with the dashboard itself

Oh, I thought it was for a stretch to height app. You're right, for dashboard, the body is taking the effective height of the dashboard.

Copy link
Contributor

@pgayvallet pgayvallet left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM for core changes

@nickofthyme
Copy link
Contributor Author

@elasticmachine merge upstream

Copy link
Contributor

@flash1293 flash1293 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lens code LGTM

One note - if the tooltip is too large for both upper and lower boundary, it still exceeds one of them and it's possible to run into annoying flickering behavior - maybe the tooltip itself should become scrollable in this case? Let me know whether I should open an issue for this
:

charts_flickering_scrollbar2

@nickofthyme
Copy link
Contributor Author

@flash1293 thanks for that, I think this could be somewhat of a solution for that elastic/elastic-charts#872 since scrolling tooltips would be a big change. But we are discussing the redesign of the tooltip now so I will add this as a case to consider.

Copy link
Contributor

@MichaelMarcialis MichaelMarcialis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The SCSS changes look fine to me. Approving.

@nickofthyme
Copy link
Contributor Author

@elasticmachine merge upstream

@kibanamachine
Copy link
Contributor

kibanamachine commented Apr 5, 2021

💔 Build Failed

Failed CI Steps


Test Failures

Kibana Pipeline / general / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/security/users·js.security app users should show the default roles

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has failed 1 times on tracked branches: https://dryrun

[00:00:00]       │
[00:00:00]         └-: security app
[00:00:00]           └-> "before all" hook in "security app"
[00:02:08]           └-: users
[00:02:08]             └-> "before all" hook for "should show the default elastic and kibana_system users"
[00:02:08]             └-> "before all" hook for "should show the default elastic and kibana_system users"
[00:02:08]               │ debg users
[00:02:08]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:08]               │ debg navigate to: http://localhost:61121/app/management
[00:02:08]               │ proc [kibana]   log   [21:22:48.764] [error][data][data][indexPatterns][plugins] ResponseError: security_exception
[00:02:08]               │ proc [kibana]     at onBody (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:333:23)
[00:02:08]               │ proc [kibana]     at IncomingMessage.onEnd (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:260:11)
[00:02:08]               │ proc [kibana]     at IncomingMessage.emit (events.js:327:22)
[00:02:08]               │ proc [kibana]     at endReadableNT (internal/streams/readable.js:1327:12)
[00:02:08]               │ proc [kibana]     at processTicksAndRejections (internal/process/task_queues.js:80:21) {
[00:02:08]               │ proc [kibana]   meta: {
[00:02:08]               │ proc [kibana]     body: { error: [Object], status: 401 },
[00:02:08]               │ proc [kibana]     statusCode: 401,
[00:02:08]               │ proc [kibana]     headers: {
[00:02:08]               │ proc [kibana]       'x-opaque-id': '5dc14712-872d-4634-b5d1-99edbd4d06e1',
[00:02:08]               │ proc [kibana]       'www-authenticate': 'Basic realm="security" charset="UTF-8", ApiKey',
[00:02:08]               │ proc [kibana]       'content-type': 'application/json;charset=utf-8',
[00:02:08]               │ proc [kibana]       'content-length': '463'
[00:02:08]               │ proc [kibana]     },
[00:02:08]               │ proc [kibana]     meta: {
[00:02:08]               │ proc [kibana]       context: null,
[00:02:08]               │ proc [kibana]       request: [Object],
[00:02:08]               │ proc [kibana]       name: 'elasticsearch-js',
[00:02:08]               │ proc [kibana]       connection: [Object],
[00:02:08]               │ proc [kibana]       attempts: 0,
[00:02:08]               │ proc [kibana]       aborted: false
[00:02:08]               │ proc [kibana]     }
[00:02:08]               │ proc [kibana]   },
[00:02:08]               │ proc [kibana]   isBoom: true,
[00:02:08]               │ proc [kibana]   isServer: true,
[00:02:08]               │ proc [kibana]   data: null,
[00:02:08]               │ proc [kibana]   output: {
[00:02:08]               │ proc [kibana]     statusCode: 500,
[00:02:08]               │ proc [kibana]     payload: {
[00:02:08]               │ proc [kibana]       statusCode: 500,
[00:02:08]               │ proc [kibana]       error: 'Internal Server Error',
[00:02:08]               │ proc [kibana]       message: 'An internal server error occurred'
[00:02:08]               │ proc [kibana]     },
[00:02:08]               │ proc [kibana]     headers: {}
[00:02:08]               │ proc [kibana]   },
[00:02:08]               │ proc [kibana]   [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/generalError'
[00:02:08]               │ proc [kibana] }
[00:02:08]               │ debg browser[INFO] http://localhost:61121/login?next=%2Fapp%2Fmanagement%3F_t%3D1617657768752 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:08]               │
[00:02:08]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:08]               │ debg ... sleep(700) start
[00:02:09]               │ debg ... sleep(700) end
[00:02:09]               │ debg returned from get, calling refresh
[00:02:09]               │ proc [kibana]   log   [21:22:49.806] [error][data][data][indexPatterns][plugins] ResponseError: security_exception
[00:02:09]               │ proc [kibana]     at onBody (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:333:23)
[00:02:09]               │ proc [kibana]     at IncomingMessage.onEnd (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:260:11)
[00:02:09]               │ proc [kibana]     at IncomingMessage.emit (events.js:327:22)
[00:02:09]               │ proc [kibana]     at endReadableNT (internal/streams/readable.js:1327:12)
[00:02:09]               │ proc [kibana]     at processTicksAndRejections (internal/process/task_queues.js:80:21) {
[00:02:09]               │ proc [kibana]   meta: {
[00:02:09]               │ proc [kibana]     body: { error: [Object], status: 401 },
[00:02:09]               │ proc [kibana]     statusCode: 401,
[00:02:09]               │ proc [kibana]     headers: {
[00:02:09]               │ proc [kibana]       'x-opaque-id': '6b9394fd-2bc7-4ec9-b455-f49f0c31c2f2',
[00:02:09]               │ proc [kibana]       'www-authenticate': 'Basic realm="security" charset="UTF-8", ApiKey',
[00:02:09]               │ proc [kibana]       'content-type': 'application/json;charset=utf-8',
[00:02:09]               │ proc [kibana]       'content-length': '463'
[00:02:09]               │ proc [kibana]     },
[00:02:09]               │ proc [kibana]     meta: {
[00:02:09]               │ proc [kibana]       context: null,
[00:02:09]               │ proc [kibana]       request: [Object],
[00:02:09]               │ proc [kibana]       name: 'elasticsearch-js',
[00:02:09]               │ proc [kibana]       connection: [Object],
[00:02:09]               │ proc [kibana]       attempts: 0,
[00:02:09]               │ proc [kibana]       aborted: false
[00:02:09]               │ proc [kibana]     }
[00:02:09]               │ proc [kibana]   },
[00:02:09]               │ proc [kibana]   isBoom: true,
[00:02:09]               │ proc [kibana]   isServer: true,
[00:02:09]               │ proc [kibana]   data: null,
[00:02:09]               │ proc [kibana]   output: {
[00:02:09]               │ proc [kibana]     statusCode: 500,
[00:02:09]               │ proc [kibana]     payload: {
[00:02:09]               │ proc [kibana]       statusCode: 500,
[00:02:09]               │ proc [kibana]       error: 'Internal Server Error',
[00:02:09]               │ proc [kibana]       message: 'An internal server error occurred'
[00:02:09]               │ proc [kibana]     },
[00:02:09]               │ proc [kibana]     headers: {}
[00:02:09]               │ proc [kibana]   },
[00:02:09]               │ proc [kibana]   [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/generalError'
[00:02:09]               │ proc [kibana] }
[00:02:09]               │ERROR browser[SEVERE] http://localhost:61121/internal/spaces/_active_space - Failed to load resource: the server responded with a status of 401 (Unauthorized)
[00:02:09]               │ debg browser[INFO] http://localhost:61121/login?next=%2Fapp%2Fmanagement%3F_t%3D1617657768752 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:09]               │
[00:02:09]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:09]               │ debg currentUrl = http://localhost:61121/login?next=%2Fapp%2Fmanagement%3F_t%3D1617657768752
[00:02:09]               │          appUrl = http://localhost:61121/app/management
[00:02:09]               │ debg TestSubjects.find(kibanaChrome)
[00:02:09]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:10]               │ debg Found login page
[00:02:10]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:02:10]               │ debg TestSubjects.click(loginUsername)
[00:02:10]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:10]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:10]               │ERROR browser[SEVERE] http://localhost:61121/internal/spaces/_active_space - Failed to load resource: the server responded with a status of 401 (Unauthorized)
[00:02:10]               │ debg browser[INFO] http://localhost:61121/41503/bundles/core/core.entry.js 12:151257 "Detected an unhandled Promise rejection.
[00:02:10]               │      Error: Unauthorized"
[00:02:10]               │ERROR browser[SEVERE] http://localhost:61121/41503/bundles/core/core.entry.js 5:2514 
[00:02:10]               │ proc [kibana]   log   [21:22:51.053] [error][data][data][indexPatterns][plugins] ResponseError: security_exception
[00:02:10]               │ proc [kibana]     at onBody (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:333:23)
[00:02:10]               │ proc [kibana]     at IncomingMessage.onEnd (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:260:11)
[00:02:10]               │ proc [kibana]     at IncomingMessage.emit (events.js:327:22)
[00:02:10]               │ proc [kibana]     at endReadableNT (internal/streams/readable.js:1327:12)
[00:02:10]               │ proc [kibana]     at processTicksAndRejections (internal/process/task_queues.js:80:21) {
[00:02:10]               │ proc [kibana]   meta: {
[00:02:10]               │ proc [kibana]     body: { error: [Object], status: 401 },
[00:02:10]               │ proc [kibana]     statusCode: 401,
[00:02:10]               │ proc [kibana]     headers: {
[00:02:10]               │ proc [kibana]       'x-opaque-id': '9280dcde-a1d7-4153-a147-2a9454dcc993',
[00:02:10]               │ proc [kibana]       'www-authenticate': 'Basic realm="security" charset="UTF-8", ApiKey',
[00:02:10]               │ proc [kibana]       'content-type': 'application/json;charset=utf-8',
[00:02:10]               │ proc [kibana]       'content-length': '463'
[00:02:10]               │ proc [kibana]     },
[00:02:10]               │ proc [kibana]     meta: {
[00:02:10]               │ proc [kibana]       context: null,
[00:02:10]               │ proc [kibana]       request: [Object],
[00:02:10]               │ proc [kibana]       name: 'elasticsearch-js',
[00:02:10]               │ proc [kibana]       connection: [Object],
[00:02:10]               │ proc [kibana]       attempts: 0,
[00:02:10]               │ proc [kibana]       aborted: false
[00:02:10]               │ proc [kibana]     }
[00:02:10]               │ proc [kibana]   },
[00:02:10]               │ proc [kibana]   isBoom: true,
[00:02:10]               │ proc [kibana]   isServer: true,
[00:02:10]               │ proc [kibana]   data: null,
[00:02:10]               │ proc [kibana]   output: {
[00:02:10]               │ proc [kibana]     statusCode: 500,
[00:02:10]               │ proc [kibana]     payload: {
[00:02:10]               │ proc [kibana]       statusCode: 500,
[00:02:10]               │ proc [kibana]       error: 'Internal Server Error',
[00:02:10]               │ proc [kibana]       message: 'An internal server error occurred'
[00:02:10]               │ proc [kibana]     },
[00:02:10]               │ proc [kibana]     headers: {}
[00:02:10]               │ proc [kibana]   },
[00:02:10]               │ proc [kibana]   [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/generalError'
[00:02:10]               │ proc [kibana] }
[00:02:10]               │ERROR browser[SEVERE] http://localhost:61121/api/licensing/info - Failed to load resource: the server responded with a status of 401 (Unauthorized)
[00:02:10]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:02:10]               │ debg TestSubjects.click(loginPassword)
[00:02:10]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:10]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:11]               │ debg TestSubjects.click(loginSubmit)
[00:02:11]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:11]               │ debg Find.waitForDeletedByCssSelector('.kibanaWelcomeLogo') with timeout=10000
[00:02:11]               │ proc [kibana]   log   [21:22:51.502] [error][data][data][indexPatterns][plugins] ResponseError: security_exception
[00:02:11]               │ proc [kibana]     at onBody (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:333:23)
[00:02:11]               │ proc [kibana]     at IncomingMessage.onEnd (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:260:11)
[00:02:11]               │ proc [kibana]     at IncomingMessage.emit (events.js:327:22)
[00:02:11]               │ proc [kibana]     at endReadableNT (internal/streams/readable.js:1327:12)
[00:02:11]               │ proc [kibana]     at processTicksAndRejections (internal/process/task_queues.js:80:21) {
[00:02:11]               │ proc [kibana]   meta: {
[00:02:11]               │ proc [kibana]     body: { error: [Object], status: 401 },
[00:02:11]               │ proc [kibana]     statusCode: 401,
[00:02:11]               │ proc [kibana]     headers: {
[00:02:11]               │ proc [kibana]       'x-opaque-id': 'a94b3749-44d9-4b19-8dd2-b8673ba72015',
[00:02:11]               │ proc [kibana]       'www-authenticate': 'Basic realm="security" charset="UTF-8", ApiKey',
[00:02:11]               │ proc [kibana]       'content-type': 'application/json;charset=utf-8',
[00:02:11]               │ proc [kibana]       'content-length': '463'
[00:02:11]               │ proc [kibana]     },
[00:02:11]               │ proc [kibana]     meta: {
[00:02:11]               │ proc [kibana]       context: null,
[00:02:11]               │ proc [kibana]       request: [Object],
[00:02:11]               │ proc [kibana]       name: 'elasticsearch-js',
[00:02:11]               │ proc [kibana]       connection: [Object],
[00:02:11]               │ proc [kibana]       attempts: 0,
[00:02:11]               │ proc [kibana]       aborted: false
[00:02:11]               │ proc [kibana]     }
[00:02:11]               │ proc [kibana]   },
[00:02:11]               │ proc [kibana]   isBoom: true,
[00:02:11]               │ proc [kibana]   isServer: true,
[00:02:11]               │ proc [kibana]   data: null,
[00:02:11]               │ proc [kibana]   output: {
[00:02:11]               │ proc [kibana]     statusCode: 500,
[00:02:11]               │ proc [kibana]     payload: {
[00:02:11]               │ proc [kibana]       statusCode: 500,
[00:02:11]               │ proc [kibana]       error: 'Internal Server Error',
[00:02:11]               │ proc [kibana]       message: 'An internal server error occurred'
[00:02:11]               │ proc [kibana]     },
[00:02:11]               │ proc [kibana]     headers: {}
[00:02:11]               │ proc [kibana]   },
[00:02:11]               │ proc [kibana]   [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/generalError'
[00:02:11]               │ proc [kibana] }
[00:02:11]               │ proc [kibana]   log   [21:22:51.504] [info][plugins][routes][security] Logging in with provider "basic" (basic)
[00:02:11]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657768752 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:11]               │
[00:02:11]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:12]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:02:13]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657773256 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:13]               │
[00:02:13]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:13]               │ debg Finished login process currentUrl = http://localhost:61121/app/management
[00:02:13]               │ debg ... sleep(501) start
[00:02:14]               │ debg ... sleep(501) end
[00:02:14]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:14]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:14]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:16]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:17]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:17]               │ debg navigate to: http://localhost:61121/app/management
[00:02:17]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657777536 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:17]               │
[00:02:17]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:17]               │ debg ... sleep(700) start
[00:02:18]               │ debg ... sleep(700) end
[00:02:18]               │ debg returned from get, calling refresh
[00:02:18]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657777536 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:18]               │
[00:02:18]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:18]               │ debg currentUrl = http://localhost:61121/app/management
[00:02:18]               │          appUrl = http://localhost:61121/app/management
[00:02:18]               │ debg TestSubjects.find(kibanaChrome)
[00:02:18]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:19]               │ debg ... sleep(501) start
[00:02:19]               │ debg ... sleep(501) end
[00:02:19]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:19]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:19]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:22]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:22]               │ debg TestSubjects.click(users)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:22]             └-> should show the default elastic and kibana_system users
[00:02:22]               └-> "before each" hook: global before each for "should show the default elastic and kibana_system users"
[00:02:22]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:22]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:22]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:23]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:23]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:23]               │ debg TestSubjects.findAll(userRow)
[00:02:23]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:24]               │ info actualUsers = {"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:24]               │ info config = "localhost"
[00:02:24]               └- ✓ pass  (1.8s) "security app users should show the default elastic and kibana_system users"
[00:02:24]             └-> should add new user
[00:02:24]               └-> "before each" hook: global before each for "should add new user"
[00:02:24]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:24]               │ debg navigate to: http://localhost:61121/app/management
[00:02:24]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657784994 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:24]               │
[00:02:24]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:24]               │ debg ... sleep(700) start
[00:02:25]               │ debg ... sleep(700) end
[00:02:25]               │ debg returned from get, calling refresh
[00:02:26]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657784994 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:26]               │
[00:02:26]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:26]               │ debg currentUrl = http://localhost:61121/app/management
[00:02:26]               │          appUrl = http://localhost:61121/app/management
[00:02:26]               │ debg TestSubjects.find(kibanaChrome)
[00:02:26]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:26]               │ debg ... sleep(501) start
[00:02:27]               │ debg ... sleep(501) end
[00:02:27]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:27]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:27]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:29]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:30]               │ debg TestSubjects.click(users)
[00:02:30]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:30]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:30]               │ debg TestSubjects.click(createUserButton)
[00:02:30]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:30]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:30]               │ debg Find.setValue('[name=username]', 'Lee')
[00:02:30]               │ debg Find.findByCssSelector('[name=username]') with timeout=10000
[00:02:30]               │ debg Find.setValue('[name=password]', 'LeePwd')
[00:02:30]               │ debg Find.findByCssSelector('[name=password]') with timeout=10000
[00:02:30]               │ debg Find.setValue('[name=confirm_password]', 'LeePwd')
[00:02:30]               │ debg Find.findByCssSelector('[name=confirm_password]') with timeout=10000
[00:02:31]               │ debg Find.setValue('[name=full_name]', 'LeeFirst LeeLast')
[00:02:31]               │ debg Find.findByCssSelector('[name=full_name]') with timeout=10000
[00:02:31]               │ debg Find.setValue('[name=email]', '[email protected]')
[00:02:31]               │ debg Find.findByCssSelector('[name=email]') with timeout=10000
[00:02:31]               │ debg TestSubjects.find(rolesDropdown)
[00:02:31]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:31]               │ debg Find.clickByCssSelector('[role=option][title="kibana_admin"]') with timeout=10000
[00:02:31]               │ debg Find.findByCssSelector('[role=option][title="kibana_admin"]') with timeout=10000
[00:02:32]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:32]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:32]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:32]               │ debg Find.clickByButtonText('Create user') with timeout=10000
[00:02:32]               │ debg Find.byButtonText('Create user') with timeout=10000
[00:02:32]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:32]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:32]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:32]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] added user [Lee]
[00:02:32]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:32]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:32]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:32]               │ debg TestSubjects.findAll(userRow)
[00:02:32]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:34]               │ debg actualUsers = {"Lee":{"username":"Lee","fullname":"LeeFirst LeeLast","email":"[email protected]","roles":["kibana_admin"],"reserved":false,"deprecated":false},"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:34]               └- ✓ pass  (9.9s) "security app users should add new user"
[00:02:34]             └-> should add new user with optional fields left empty
[00:02:34]               └-> "before each" hook: global before each for "should add new user with optional fields left empty"
[00:02:34]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:34]               │ debg navigate to: http://localhost:61121/app/management
[00:02:34]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657794912 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:34]               │
[00:02:34]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:34]               │ debg ... sleep(700) start
[00:02:35]               │ debg ... sleep(700) end
[00:02:35]               │ debg returned from get, calling refresh
[00:02:35]               │ERROR browser[SEVERE] http://localhost:61121/41503/bundles/core/core.entry.js 12:150329 TypeError: Failed to fetch
[00:02:35]               │          at fetch_Fetch.fetchResponse (http://localhost:61121/41503/bundles/core/core.entry.js:6:29862)
[00:02:35]               │          at async http://localhost:61121/41503/bundles/core/core.entry.js:6:27759
[00:02:35]               │          at async http://localhost:61121/41503/bundles/core/core.entry.js:6:27665
[00:02:35]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657794912 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:35]               │
[00:02:35]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:36]               │ debg currentUrl = http://localhost:61121/app/management
[00:02:36]               │          appUrl = http://localhost:61121/app/management
[00:02:36]               │ debg TestSubjects.find(kibanaChrome)
[00:02:36]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:36]               │ debg ... sleep(501) start
[00:02:37]               │ debg ... sleep(501) end
[00:02:37]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:37]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:37]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:39]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:40]               │ debg TestSubjects.click(users)
[00:02:40]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:40]               │ debg TestSubjects.click(createUserButton)
[00:02:40]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:40]               │ debg Find.setValue('[name=username]', 'OptionalUser')
[00:02:40]               │ debg Find.findByCssSelector('[name=username]') with timeout=10000
[00:02:40]               │ debg Find.setValue('[name=password]', 'OptionalUserPwd')
[00:02:40]               │ debg Find.findByCssSelector('[name=password]') with timeout=10000
[00:02:40]               │ debg Find.setValue('[name=confirm_password]', 'OptionalUserPwd')
[00:02:40]               │ debg Find.findByCssSelector('[name=confirm_password]') with timeout=10000
[00:02:41]               │ debg Find.clickByButtonText('Create user') with timeout=10000
[00:02:41]               │ debg Find.byButtonText('Create user') with timeout=10000
[00:02:41]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:41]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:41]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:41]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] added user [OptionalUser]
[00:02:41]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:41]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:41]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:41]               │ debg TestSubjects.findAll(userRow)
[00:02:41]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:43]               │ debg actualUsers = {"Lee":{"username":"Lee","fullname":"LeeFirst LeeLast","email":"[email protected]","roles":["kibana_admin"],"reserved":false,"deprecated":false},"OptionalUser":{"username":"OptionalUser","fullname":"","email":"","roles":[""],"reserved":false,"deprecated":false},"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:43]               └- ✓ pass  (9.3s) "security app users should add new user with optional fields left empty"
[00:02:43]             └-> should delete user
[00:02:43]               └-> "before each" hook: global before each for "should delete user"
[00:02:43]               │ debg Delete user Lee
[00:02:43]               │ debg Find.clickByDisplayedLinkText('Lee') with timeout=10000
[00:02:43]               │ debg Find.displayedByLinkText('Lee') with timeout=10000
[00:02:43]               │ debg Find.byLinkText('Lee') with timeout=10000
[00:02:43]               │ debg Wait for element become visible: Lee with timeout=10000
[00:02:44]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:44]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:44]               │ debg Find delete button and click
[00:02:44]               │ debg Find.clickByButtonText('Delete user') with timeout=10000
[00:02:44]               │ debg Find.byButtonText('Delete user') with timeout=10000
[00:02:44]               │ debg --- retry.tryForTime error: Button not found
[00:02:45]               │ debg ... sleep(2000) start
[00:02:47]               │ debg ... sleep(2000) end
[00:02:47]               │ debg TestSubjects.getVisibleText(confirmModalBodyText)
[00:02:47]               │ debg TestSubjects.find(confirmModalBodyText)
[00:02:47]               │ debg Find.findByCssSelector('[data-test-subj="confirmModalBodyText"]') with timeout=10000
[00:02:47]               │ debg Delete user alert text = This user will be permanently deleted and access to Elastic removed.
[00:02:47]               │      You can't recover deleted users.
[00:02:47]               │ debg TestSubjects.click(confirmModalConfirmButton)
[00:02:47]               │ debg Find.clickByCssSelector('[data-test-subj="confirmModalConfirmButton"]') with timeout=10000
[00:02:47]               │ debg Find.findByCssSelector('[data-test-subj="confirmModalConfirmButton"]') with timeout=10000
[00:02:47]               │ debg alertMsg = This user will be permanently deleted and access to Elastic removed.
[00:02:47]               │      You can't recover deleted users.
[00:02:47]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:47]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:47]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:47]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:47]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:47]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:47]               │ debg TestSubjects.findAll(userRow)
[00:02:47]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:49]               │ debg actualUsers = {"OptionalUser":{"username":"OptionalUser","fullname":"","email":"","roles":[""],"reserved":false,"deprecated":false},"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:49]               └- ✓ pass  (5.6s) "security app users should delete user"
[00:02:49]             └-> should show the default roles
[00:02:49]               └-> "before each" hook: global before each for "should show the default roles"
[00:02:49]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:49]               │ debg navigate to: http://localhost:61121/app/management
[00:02:49]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657809770 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:49]               │
[00:02:49]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:49]               │ debg ... sleep(700) start
[00:02:50]               │ debg ... sleep(700) end
[00:02:50]               │ debg returned from get, calling refresh
[00:02:50]               │ERROR browser[SEVERE] http://localhost:61121/41503/bundles/core/core.entry.js 12:150329 TypeError: Failed to fetch
[00:02:50]               │          at fetch_Fetch.fetchResponse (http://localhost:61121/41503/bundles/core/core.entry.js:6:29862)
[00:02:50]               │          at async http://localhost:61121/41503/bundles/core/core.entry.js:6:27759
[00:02:50]               │          at async http://localhost:61121/41503/bundles/core/core.entry.js:6:27665
[00:02:50]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657809770 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:50]               │
[00:02:50]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:51]               │ debg currentUrl = http://localhost:61121/app/management
[00:02:51]               │          appUrl = http://localhost:61121/app/management
[00:02:51]               │ debg TestSubjects.find(kibanaChrome)
[00:02:51]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:51]               │ debg ... sleep(501) start
[00:02:51]               │ debg ... sleep(501) end
[00:02:51]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:51]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:51]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:54]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:54]               │ debg TestSubjects.click(roles)
[00:02:54]               │ debg Find.clickByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:02:54]               │ debg Find.findByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:02:55]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:55]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:55]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:55]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:55]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:55]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:55]               │ debg TestSubjects.findAll(roleRow)
[00:02:55]               │ debg Find.allByCssSelector('[data-test-subj="roleRow"]') with timeout=10000
[00:03:00]               │ debg actualRoles = {"antimeridian_points_reader":{"rolename":"antimeridian_points_reader","reserved":false,"deprecated":false},"antimeridian_shapes_reader":{"rolename":"antimeridian_shapes_reader","reserved":false,"deprecated":false},"apm_system":{"rolename":"apm_system","reserved":true,"deprecated":false},"apm_user":{"rolename":"apm_user","reserved":true,"deprecated":true},"beats_admin":{"rolename":"beats_admin","reserved":true,"deprecated":false},"beats_system":{"rolename":"beats_system","reserved":true,"deprecated":false},"ccr_user":{"rolename":"ccr_user","reserved":false,"deprecated":false},"data_frame_transforms_admin":{"rolename":"data_frame_transforms_admin","reserved":true,"deprecated":true},"data_frame_transforms_user":{"rolename":"data_frame_transforms_user","reserved":true,"deprecated":true},"enrich_user":{"rolename":"enrich_user","reserved":true,"deprecated":false},"geoall_data_writer":{"rolename":"geoall_data_writer","reserved":false,"deprecated":false},"geoconnections_data_reader":{"rolename":"geoconnections_data_reader","reserved":false,"deprecated":false},"geoshape_data_reader":{"rolename":"geoshape_data_reader","reserved":false,"deprecated":false},"global_canvas_all":{"rolename":"global_canvas_all","reserved":false,"deprecated":false},"global_ccr_role":{"rolename":"global_ccr_role","reserved":false,"deprecated":false},"global_dashboard_all":{"rolename":"global_dashboard_all","reserved":false,"deprecated":false},"global_dashboard_read":{"rolename":"global_dashboard_read","reserved":false,"deprecated":false},"global_devtools_read":{"rolename":"global_devtools_read","reserved":false,"deprecated":false},"global_discover_all":{"rolename":"global_discover_all","reserved":false,"deprecated":false},"global_discover_read":{"rolename":"global_discover_read","reserved":false,"deprecated":false},"global_index_pattern_management_all":{"rolename":"global_index_pattern_management_all","reserved":false,"deprecated":false},"global_maps_all":{"rolename":"global_maps_all","reserved":false,"deprecated":false},"global_maps_read":{"rolename":"global_maps_read","reserved":false,"deprecated":false},"global_upgrade_assistant_role":{"rolename":"global_upgrade_assistant_role","reserved":false,"deprecated":false},"global_visualize_all":{"rolename":"global_visualize_all","reserved":false,"deprecated":false},"global_visualize_read":{"rolename":"global_visualize_read","reserved":false,"deprecated":false},"index_management_user":{"rolename":"index_management_user","reserved":false,"deprecated":false},"ingest_admin":{"rolename":"ingest_admin","reserved":true,"deprecated":false},"ingest_pipelines_user":{"rolename":"ingest_pipelines_user","reserved":false,"deprecated":false},"kibana_admin":{"rolename":"kibana_admin","reserved":true,"deprecated":false},"kibana_dashboard_only_user":{"rolename":"kibana_dashboard_only_user","reserved":true,"deprecated":true},"kibana_system":{"rolename":"kibana_system","reserved":true,"deprecated":false},"kibana_user":{"rolename":"kibana_user","reserved":true,"deprecated":true},"license_management_user":{"rolename":"license_management_user","reserved":false,"deprecated":false},"logstash_admin":{"rolename":"logstash_admin","reserved":true,"deprecated":false},"logstash_read_user":{"rolename":"logstash_read_user","reserved":false,"deprecated":false},"logstash_system":{"rolename":"logstash_system","reserved":true,"deprecated":false},"machine_learning_admin":{"rolename":"machine_learning_admin","reserved":true,"deprecated":false},"machine_learning_user":{"rolename":"machine_learning_user","reserved":true,"deprecated":false},"manage_ilm":{"rolename":"manage_ilm","reserved":false,"deprecated":false},"manage_rollups_role":{"rolename":"manage_rollups_role","reserved":false,"deprecated":false},"manage_security":{"rolename":"manage_security","reserved":false,"deprecated":false},"meta_for_geoshape_data_reader":{"rolename":"meta_for_geoshape_data_reader","reserved":false,"deprecated":false},"monitoring_user":{"rolename":"monitoring_user","reserved":true,"deprecated":false},"myroleEast":{"rolename":"myroleEast","reserved":false,"deprecated":false},"remote_clusters_user":{"rolename":"remote_clusters_user","reserved":false,"deprecated":false},"remote_monitoring_agent":{"rolename":"remote_monitoring_agent","reserved":true,"deprecated":false},"remote_monitoring_collector":{"rolename":"remote_monitoring_collector","reserved":true,"deprecated":false},"reporting_user":{"rolename":"reporting_user","reserved":true,"deprecated":false},"rollup_admin":{"rolename":"rollup_admin","reserved":true,"deprecated":false},"rollup_user":{"rolename":"rollup_user","reserved":true,"deprecated":false},"snapshot_user":{"rolename":"snapshot_user","reserved":true,"deprecated":false},"superuser":{"rolename":"superuser","reserved":true,"deprecated":false},"test_api_keys":{"rolename":"test_api_keys","reserved":false,"deprecated":false},"test_logstash_reader":{"rolename":"test_logstash_reader","reserved":false,"deprecated":false},"transform_admin":{"rolename":"transform_admin","reserved":true,"deprecated":false},"transform_user":{"rolename":"transform_user","reserved":true,"deprecated":false},"transport_client":{"rolename":"transport_client","reserved":true,"deprecated":false},"watcher_admin":{"rolename":"watcher_admin","reserved":true,"deprecated":false},"watcher_user":{"rolename":"watcher_user","reserved":true,"deprecated":false}}
[00:03:00]               │ info Taking screenshot "/dev/shm/workspace/parallel/12/kibana/x-pack/test/functional/screenshots/failure/security app users should show the default roles.png"
[00:03:01]               │ info Current URL is: http://localhost:61121/app/management/security/roles
[00:03:01]               │ info Saving page source to: /dev/shm/workspace/parallel/12/kibana/x-pack/test/functional/failure_debug/html/security app users should show the default roles.html
[00:03:01]               └- ✖ fail: security app users should show the default roles
[00:03:01]               │      Error: expected true to equal false
[00:03:01]               │       at Assertion.assert (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:100:11)
[00:03:01]               │       at Assertion.be.Assertion.equal (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:227:8)
[00:03:01]               │       at Assertion.be (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:69:22)
[00:03:01]               │       at Context.<anonymous> (test/functional/apps/security/users.js:93:44)
[00:03:01]               │       at runMicrotasks (<anonymous>)
[00:03:01]               │       at processTicksAndRejections (internal/process/task_queues.js:93:5)
[00:03:01]               │       at Object.apply (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16)
[00:03:01]               │ 
[00:03:01]               │ 

Stack Trace

Error: expected true to equal false
    at Assertion.assert (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:100:11)
    at Assertion.be.Assertion.equal (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:227:8)
    at Assertion.be (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:69:22)
    at Context.<anonymous> (test/functional/apps/security/users.js:93:44)
    at runMicrotasks (<anonymous>)
    at processTicksAndRejections (internal/process/task_queues.js:93:5)
    at Object.apply (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16)

Kibana Pipeline / general / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/security/users·js.security app users should show the default roles

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has not failed recently on tracked branches

[00:00:00]       │
[00:00:00]         └-: security app
[00:00:00]           └-> "before all" hook in "security app"
[00:02:08]           └-: users
[00:02:08]             └-> "before all" hook for "should show the default elastic and kibana_system users"
[00:02:08]             └-> "before all" hook for "should show the default elastic and kibana_system users"
[00:02:08]               │ debg users
[00:02:08]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:08]               │ debg navigate to: http://localhost:61121/app/management
[00:02:08]               │ proc [kibana]   log   [21:18:24.951] [error][data][data][indexPatterns][plugins] ResponseError: security_exception
[00:02:08]               │ proc [kibana]     at onBody (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:333:23)
[00:02:08]               │ proc [kibana]     at IncomingMessage.onEnd (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:260:11)
[00:02:08]               │ proc [kibana]     at IncomingMessage.emit (events.js:327:22)
[00:02:08]               │ proc [kibana]     at endReadableNT (internal/streams/readable.js:1327:12)
[00:02:08]               │ proc [kibana]     at processTicksAndRejections (internal/process/task_queues.js:80:21) {
[00:02:08]               │ proc [kibana]   meta: {
[00:02:08]               │ proc [kibana]     body: { error: [Object], status: 401 },
[00:02:08]               │ proc [kibana]     statusCode: 401,
[00:02:08]               │ proc [kibana]     headers: {
[00:02:08]               │ proc [kibana]       'x-opaque-id': 'f49be5af-a9d6-4067-80b0-89eed4cc2de6',
[00:02:08]               │ proc [kibana]       'www-authenticate': 'Basic realm="security" charset="UTF-8", ApiKey',
[00:02:08]               │ proc [kibana]       'content-type': 'application/json;charset=utf-8',
[00:02:08]               │ proc [kibana]       'content-length': '463'
[00:02:08]               │ proc [kibana]     },
[00:02:08]               │ proc [kibana]     meta: {
[00:02:08]               │ proc [kibana]       context: null,
[00:02:08]               │ proc [kibana]       request: [Object],
[00:02:08]               │ proc [kibana]       name: 'elasticsearch-js',
[00:02:08]               │ proc [kibana]       connection: [Object],
[00:02:08]               │ proc [kibana]       attempts: 0,
[00:02:08]               │ proc [kibana]       aborted: false
[00:02:08]               │ proc [kibana]     }
[00:02:08]               │ proc [kibana]   },
[00:02:08]               │ proc [kibana]   isBoom: true,
[00:02:08]               │ proc [kibana]   isServer: true,
[00:02:08]               │ proc [kibana]   data: null,
[00:02:08]               │ proc [kibana]   output: {
[00:02:08]               │ proc [kibana]     statusCode: 500,
[00:02:08]               │ proc [kibana]     payload: {
[00:02:08]               │ proc [kibana]       statusCode: 500,
[00:02:08]               │ proc [kibana]       error: 'Internal Server Error',
[00:02:08]               │ proc [kibana]       message: 'An internal server error occurred'
[00:02:08]               │ proc [kibana]     },
[00:02:08]               │ proc [kibana]     headers: {}
[00:02:08]               │ proc [kibana]   },
[00:02:08]               │ proc [kibana]   [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/generalError'
[00:02:08]               │ proc [kibana] }
[00:02:08]               │ debg browser[INFO] http://localhost:61121/login?next=%2Fapp%2Fmanagement%3F_t%3D1617657504940 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:08]               │
[00:02:08]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:08]               │ debg ... sleep(700) start
[00:02:09]               │ debg ... sleep(700) end
[00:02:09]               │ debg returned from get, calling refresh
[00:02:09]               │ proc [kibana]   log   [21:18:26.077] [error][data][data][indexPatterns][plugins] ResponseError: security_exception
[00:02:09]               │ proc [kibana]     at onBody (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:333:23)
[00:02:09]               │ proc [kibana]     at IncomingMessage.onEnd (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:260:11)
[00:02:09]               │ proc [kibana]     at IncomingMessage.emit (events.js:327:22)
[00:02:09]               │ proc [kibana]     at endReadableNT (internal/streams/readable.js:1327:12)
[00:02:09]               │ proc [kibana]     at processTicksAndRejections (internal/process/task_queues.js:80:21) {
[00:02:09]               │ proc [kibana]   meta: {
[00:02:09]               │ proc [kibana]     body: { error: [Object], status: 401 },
[00:02:09]               │ proc [kibana]     statusCode: 401,
[00:02:09]               │ proc [kibana]     headers: {
[00:02:09]               │ proc [kibana]       'x-opaque-id': '694abc5a-cb44-43d8-8e58-229bd6417a1c',
[00:02:09]               │ proc [kibana]       'www-authenticate': 'Basic realm="security" charset="UTF-8", ApiKey',
[00:02:09]               │ proc [kibana]       'content-type': 'application/json;charset=utf-8',
[00:02:09]               │ proc [kibana]       'content-length': '463'
[00:02:09]               │ proc [kibana]     },
[00:02:09]               │ proc [kibana]     meta: {
[00:02:09]               │ proc [kibana]       context: null,
[00:02:09]               │ proc [kibana]       request: [Object],
[00:02:09]               │ proc [kibana]       name: 'elasticsearch-js',
[00:02:09]               │ proc [kibana]       connection: [Object],
[00:02:09]               │ proc [kibana]       attempts: 0,
[00:02:09]               │ proc [kibana]       aborted: false
[00:02:09]               │ proc [kibana]     }
[00:02:09]               │ proc [kibana]   },
[00:02:09]               │ proc [kibana]   isBoom: true,
[00:02:09]               │ proc [kibana]   isServer: true,
[00:02:09]               │ proc [kibana]   data: null,
[00:02:09]               │ proc [kibana]   output: {
[00:02:09]               │ proc [kibana]     statusCode: 500,
[00:02:09]               │ proc [kibana]     payload: {
[00:02:09]               │ proc [kibana]       statusCode: 500,
[00:02:09]               │ proc [kibana]       error: 'Internal Server Error',
[00:02:09]               │ proc [kibana]       message: 'An internal server error occurred'
[00:02:09]               │ proc [kibana]     },
[00:02:09]               │ proc [kibana]     headers: {}
[00:02:09]               │ proc [kibana]   },
[00:02:09]               │ proc [kibana]   [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/generalError'
[00:02:09]               │ proc [kibana] }
[00:02:09]               │ERROR browser[SEVERE] http://localhost:61121/internal/spaces/_active_space - Failed to load resource: the server responded with a status of 401 (Unauthorized)
[00:02:09]               │ debg browser[INFO] http://localhost:61121/login?next=%2Fapp%2Fmanagement%3F_t%3D1617657504940 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:09]               │
[00:02:09]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:09]               │ debg currentUrl = http://localhost:61121/login?next=%2Fapp%2Fmanagement%3F_t%3D1617657504940
[00:02:09]               │          appUrl = http://localhost:61121/app/management
[00:02:09]               │ debg TestSubjects.find(kibanaChrome)
[00:02:09]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:10]               │ debg Found login page
[00:02:10]               │ debg TestSubjects.setValue(loginUsername, test_user)
[00:02:10]               │ debg TestSubjects.click(loginUsername)
[00:02:10]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:10]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:02:10]               │ERROR browser[SEVERE] http://localhost:61121/internal/spaces/_active_space - Failed to load resource: the server responded with a status of 401 (Unauthorized)
[00:02:10]               │ debg browser[INFO] http://localhost:61121/41503/bundles/core/core.entry.js 12:151257 "Detected an unhandled Promise rejection.
[00:02:10]               │      Error: Unauthorized"
[00:02:10]               │ERROR browser[SEVERE] http://localhost:61121/41503/bundles/core/core.entry.js 5:2514 
[00:02:10]               │ proc [kibana]   log   [21:18:27.248] [error][data][data][indexPatterns][plugins] ResponseError: security_exception
[00:02:10]               │ proc [kibana]     at onBody (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:333:23)
[00:02:10]               │ proc [kibana]     at IncomingMessage.onEnd (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:260:11)
[00:02:10]               │ proc [kibana]     at IncomingMessage.emit (events.js:327:22)
[00:02:10]               │ proc [kibana]     at endReadableNT (internal/streams/readable.js:1327:12)
[00:02:10]               │ proc [kibana]     at processTicksAndRejections (internal/process/task_queues.js:80:21) {
[00:02:10]               │ proc [kibana]   meta: {
[00:02:10]               │ proc [kibana]     body: { error: [Object], status: 401 },
[00:02:10]               │ proc [kibana]     statusCode: 401,
[00:02:10]               │ proc [kibana]     headers: {
[00:02:10]               │ proc [kibana]       'x-opaque-id': '7baafc6f-721e-4e7a-ba51-2d2dc3f1a189',
[00:02:10]               │ proc [kibana]       'www-authenticate': 'Basic realm="security" charset="UTF-8", ApiKey',
[00:02:10]               │ proc [kibana]       'content-type': 'application/json;charset=utf-8',
[00:02:10]               │ proc [kibana]       'content-length': '463'
[00:02:10]               │ proc [kibana]     },
[00:02:10]               │ proc [kibana]     meta: {
[00:02:10]               │ proc [kibana]       context: null,
[00:02:10]               │ proc [kibana]       request: [Object],
[00:02:10]               │ proc [kibana]       name: 'elasticsearch-js',
[00:02:10]               │ proc [kibana]       connection: [Object],
[00:02:10]               │ proc [kibana]       attempts: 0,
[00:02:10]               │ proc [kibana]       aborted: false
[00:02:10]               │ proc [kibana]     }
[00:02:10]               │ proc [kibana]   },
[00:02:10]               │ proc [kibana]   isBoom: true,
[00:02:10]               │ proc [kibana]   isServer: true,
[00:02:10]               │ proc [kibana]   data: null,
[00:02:10]               │ proc [kibana]   output: {
[00:02:10]               │ proc [kibana]     statusCode: 500,
[00:02:10]               │ proc [kibana]     payload: {
[00:02:10]               │ proc [kibana]       statusCode: 500,
[00:02:10]               │ proc [kibana]       error: 'Internal Server Error',
[00:02:10]               │ proc [kibana]       message: 'An internal server error occurred'
[00:02:10]               │ proc [kibana]     },
[00:02:10]               │ proc [kibana]     headers: {}
[00:02:10]               │ proc [kibana]   },
[00:02:10]               │ proc [kibana]   [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/generalError'
[00:02:10]               │ proc [kibana] }
[00:02:10]               │ERROR browser[SEVERE] http://localhost:61121/api/licensing/info - Failed to load resource: the server responded with a status of 401 (Unauthorized)
[00:02:11]               │ debg TestSubjects.setValue(loginPassword, changeme)
[00:02:11]               │ debg TestSubjects.click(loginPassword)
[00:02:11]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:02:11]               │ debg TestSubjects.click(loginSubmit)
[00:02:11]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:02:11]               │ debg Find.waitForDeletedByCssSelector('.kibanaWelcomeLogo') with timeout=10000
[00:02:11]               │ proc [kibana]   log   [21:18:27.668] [error][data][data][indexPatterns][plugins] ResponseError: security_exception
[00:02:11]               │ proc [kibana]     at onBody (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:333:23)
[00:02:11]               │ proc [kibana]     at IncomingMessage.onEnd (/dev/shm/workspace/kibana-build-xpack-12/node_modules/@elastic/elasticsearch/lib/Transport.js:260:11)
[00:02:11]               │ proc [kibana]     at IncomingMessage.emit (events.js:327:22)
[00:02:11]               │ proc [kibana]     at endReadableNT (internal/streams/readable.js:1327:12)
[00:02:11]               │ proc [kibana]     at processTicksAndRejections (internal/process/task_queues.js:80:21) {
[00:02:11]               │ proc [kibana]   meta: {
[00:02:11]               │ proc [kibana]     body: { error: [Object], status: 401 },
[00:02:11]               │ proc [kibana]     statusCode: 401,
[00:02:11]               │ proc [kibana]     headers: {
[00:02:11]               │ proc [kibana]       'x-opaque-id': '4a87d4a1-4508-4b23-bde7-5f69b067e888',
[00:02:11]               │ proc [kibana]       'www-authenticate': 'Basic realm="security" charset="UTF-8", ApiKey',
[00:02:11]               │ proc [kibana]       'content-type': 'application/json;charset=utf-8',
[00:02:11]               │ proc [kibana]       'content-length': '463'
[00:02:11]               │ proc [kibana]     },
[00:02:11]               │ proc [kibana]     meta: {
[00:02:11]               │ proc [kibana]       context: null,
[00:02:11]               │ proc [kibana]       request: [Object],
[00:02:11]               │ proc [kibana]       name: 'elasticsearch-js',
[00:02:11]               │ proc [kibana]       connection: [Object],
[00:02:11]               │ proc [kibana]       attempts: 0,
[00:02:11]               │ proc [kibana]       aborted: false
[00:02:11]               │ proc [kibana]     }
[00:02:11]               │ proc [kibana]   },
[00:02:11]               │ proc [kibana]   isBoom: true,
[00:02:11]               │ proc [kibana]   isServer: true,
[00:02:11]               │ proc [kibana]   data: null,
[00:02:11]               │ proc [kibana]   output: {
[00:02:11]               │ proc [kibana]     statusCode: 500,
[00:02:11]               │ proc [kibana]     payload: {
[00:02:11]               │ proc [kibana]       statusCode: 500,
[00:02:11]               │ proc [kibana]       error: 'Internal Server Error',
[00:02:11]               │ proc [kibana]       message: 'An internal server error occurred'
[00:02:11]               │ proc [kibana]     },
[00:02:11]               │ proc [kibana]     headers: {}
[00:02:11]               │ proc [kibana]   },
[00:02:11]               │ proc [kibana]   [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/generalError'
[00:02:11]               │ proc [kibana] }
[00:02:11]               │ proc [kibana]   log   [21:18:27.670] [info][plugins][routes][security] Logging in with provider "basic" (basic)
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:11]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide)') with timeout=60000
[00:02:13]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657504940 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:13]               │
[00:02:13]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:14]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657509975 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:14]               │
[00:02:14]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:14]               │ debg Finished login process currentUrl = http://localhost:61121/app/management
[00:02:14]               │ debg ... sleep(501) start
[00:02:14]               │ debg ... sleep(501) end
[00:02:14]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:14]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:14]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:17]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:17]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:17]               │ debg navigate to: http://localhost:61121/app/management
[00:02:18]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657514343 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:18]               │
[00:02:18]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:18]               │ debg ... sleep(700) start
[00:02:19]               │ debg ... sleep(700) end
[00:02:19]               │ debg returned from get, calling refresh
[00:02:19]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657514343 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:19]               │
[00:02:19]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:19]               │ debg currentUrl = http://localhost:61121/app/management
[00:02:19]               │          appUrl = http://localhost:61121/app/management
[00:02:19]               │ debg TestSubjects.find(kibanaChrome)
[00:02:19]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:19]               │ debg ... sleep(501) start
[00:02:20]               │ debg ... sleep(501) end
[00:02:20]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:20]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:20]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:22]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:23]               │ debg TestSubjects.click(users)
[00:02:23]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:23]             └-> should show the default elastic and kibana_system users
[00:02:23]               └-> "before each" hook: global before each for "should show the default elastic and kibana_system users"
[00:02:23]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:23]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:23]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:23]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:23]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:23]               │ debg TestSubjects.findAll(userRow)
[00:02:23]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:25]               │ info actualUsers = {"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:25]               │ info config = "localhost"
[00:02:25]               └- ✓ pass  (1.8s) "security app users should show the default elastic and kibana_system users"
[00:02:25]             └-> should add new user
[00:02:25]               └-> "before each" hook: global before each for "should add new user"
[00:02:25]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:25]               │ debg navigate to: http://localhost:61121/app/management
[00:02:25]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657521753 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:25]               │
[00:02:25]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:25]               │ debg ... sleep(700) start
[00:02:26]               │ debg ... sleep(700) end
[00:02:26]               │ debg returned from get, calling refresh
[00:02:26]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657521753 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:26]               │
[00:02:26]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:26]               │ debg currentUrl = http://localhost:61121/app/management
[00:02:26]               │          appUrl = http://localhost:61121/app/management
[00:02:26]               │ debg TestSubjects.find(kibanaChrome)
[00:02:26]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:27]               │ debg ... sleep(501) start
[00:02:27]               │ debg ... sleep(501) end
[00:02:27]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:27]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:27]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:30]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:30]               │ debg TestSubjects.click(users)
[00:02:30]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:30]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:30]               │ debg TestSubjects.click(createUserButton)
[00:02:30]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:30]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:31]               │ debg Find.setValue('[name=username]', 'Lee')
[00:02:31]               │ debg Find.findByCssSelector('[name=username]') with timeout=10000
[00:02:31]               │ debg Find.setValue('[name=password]', 'LeePwd')
[00:02:31]               │ debg Find.findByCssSelector('[name=password]') with timeout=10000
[00:02:31]               │ debg Find.setValue('[name=confirm_password]', 'LeePwd')
[00:02:31]               │ debg Find.findByCssSelector('[name=confirm_password]') with timeout=10000
[00:02:31]               │ debg Find.setValue('[name=full_name]', 'LeeFirst LeeLast')
[00:02:31]               │ debg Find.findByCssSelector('[name=full_name]') with timeout=10000
[00:02:31]               │ debg Find.setValue('[name=email]', '[email protected]')
[00:02:31]               │ debg Find.findByCssSelector('[name=email]') with timeout=10000
[00:02:32]               │ debg TestSubjects.find(rolesDropdown)
[00:02:32]               │ debg Find.findByCssSelector('[data-test-subj="rolesDropdown"]') with timeout=10000
[00:02:32]               │ debg Find.clickByCssSelector('[role=option][title="kibana_admin"]') with timeout=10000
[00:02:32]               │ debg Find.findByCssSelector('[role=option][title="kibana_admin"]') with timeout=10000
[00:02:32]               │ debg TestSubjects.click(comboBoxToggleListButton)
[00:02:32]               │ debg Find.clickByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:32]               │ debg Find.findByCssSelector('[data-test-subj="comboBoxToggleListButton"]') with timeout=10000
[00:02:32]               │ debg Find.clickByButtonText('Create user') with timeout=10000
[00:02:32]               │ debg Find.byButtonText('Create user') with timeout=10000
[00:02:33]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:33]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:33]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:33]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] added user [Lee]
[00:02:33]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:33]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:33]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:33]               │ debg TestSubjects.findAll(userRow)
[00:02:33]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:35]               │ debg actualUsers = {"Lee":{"username":"Lee","fullname":"LeeFirst LeeLast","email":"[email protected]","roles":["kibana_admin"],"reserved":false,"deprecated":false},"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:35]               └- ✓ pass  (9.8s) "security app users should add new user"
[00:02:35]             └-> should add new user with optional fields left empty
[00:02:35]               └-> "before each" hook: global before each for "should add new user with optional fields left empty"
[00:02:35]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:35]               │ debg navigate to: http://localhost:61121/app/management
[00:02:35]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657531536 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:35]               │
[00:02:35]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:35]               │ debg ... sleep(700) start
[00:02:36]               │ debg ... sleep(700) end
[00:02:36]               │ debg returned from get, calling refresh
[00:02:36]               │ERROR browser[SEVERE] http://localhost:61121/41503/bundles/core/core.entry.js 12:150329 TypeError: Failed to fetch
[00:02:36]               │          at fetch_Fetch.fetchResponse (http://localhost:61121/41503/bundles/core/core.entry.js:6:29862)
[00:02:36]               │          at async http://localhost:61121/41503/bundles/core/core.entry.js:6:27759
[00:02:36]               │          at async http://localhost:61121/41503/bundles/core/core.entry.js:6:27665
[00:02:36]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657531536 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:36]               │
[00:02:36]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:36]               │ debg currentUrl = http://localhost:61121/app/management
[00:02:36]               │          appUrl = http://localhost:61121/app/management
[00:02:36]               │ debg TestSubjects.find(kibanaChrome)
[00:02:36]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:37]               │ debg ... sleep(501) start
[00:02:37]               │ debg ... sleep(501) end
[00:02:37]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:37]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:37]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:40]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:40]               │ debg TestSubjects.click(users)
[00:02:40]               │ debg Find.clickByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="users"]') with timeout=10000
[00:02:40]               │ debg TestSubjects.click(createUserButton)
[00:02:40]               │ debg Find.clickByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:40]               │ debg Find.findByCssSelector('[data-test-subj="createUserButton"]') with timeout=10000
[00:02:40]               │ debg Find.setValue('[name=username]', 'OptionalUser')
[00:02:40]               │ debg Find.findByCssSelector('[name=username]') with timeout=10000
[00:02:41]               │ debg Find.setValue('[name=password]', 'OptionalUserPwd')
[00:02:41]               │ debg Find.findByCssSelector('[name=password]') with timeout=10000
[00:02:41]               │ debg Find.setValue('[name=confirm_password]', 'OptionalUserPwd')
[00:02:41]               │ debg Find.findByCssSelector('[name=confirm_password]') with timeout=10000
[00:02:41]               │ debg Find.clickByButtonText('Create user') with timeout=10000
[00:02:41]               │ debg Find.byButtonText('Create user') with timeout=10000
[00:02:42]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:42]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:42]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:42]               │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] added user [OptionalUser]
[00:02:42]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:42]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:42]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:42]               │ debg TestSubjects.findAll(userRow)
[00:02:42]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:44]               │ debg actualUsers = {"Lee":{"username":"Lee","fullname":"LeeFirst LeeLast","email":"[email protected]","roles":["kibana_admin"],"reserved":false,"deprecated":false},"OptionalUser":{"username":"OptionalUser","fullname":"","email":"","roles":[""],"reserved":false,"deprecated":false},"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:44]               └- ✓ pass  (9.3s) "security app users should add new user with optional fields left empty"
[00:02:44]             └-> should delete user
[00:02:44]               └-> "before each" hook: global before each for "should delete user"
[00:02:44]               │ debg Delete user Lee
[00:02:44]               │ debg Find.clickByDisplayedLinkText('Lee') with timeout=10000
[00:02:44]               │ debg Find.displayedByLinkText('Lee') with timeout=10000
[00:02:44]               │ debg Find.byLinkText('Lee') with timeout=10000
[00:02:44]               │ debg Wait for element become visible: Lee with timeout=10000
[00:02:44]               │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:02:44]               │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:02:44]               │ debg Find delete button and click
[00:02:44]               │ debg Find.clickByButtonText('Delete user') with timeout=10000
[00:02:44]               │ debg Find.byButtonText('Delete user') with timeout=10000
[00:02:45]               │ debg --- retry.tryForTime error: Button not found
[00:02:45]               │ debg ... sleep(2000) start
[00:02:47]               │ debg ... sleep(2000) end
[00:02:47]               │ debg TestSubjects.getVisibleText(confirmModalBodyText)
[00:02:47]               │ debg TestSubjects.find(confirmModalBodyText)
[00:02:47]               │ debg Find.findByCssSelector('[data-test-subj="confirmModalBodyText"]') with timeout=10000
[00:02:47]               │ debg Delete user alert text = This user will be permanently deleted and access to Elastic removed.
[00:02:47]               │      You can't recover deleted users.
[00:02:47]               │ debg TestSubjects.click(confirmModalConfirmButton)
[00:02:47]               │ debg Find.clickByCssSelector('[data-test-subj="confirmModalConfirmButton"]') with timeout=10000
[00:02:47]               │ debg Find.findByCssSelector('[data-test-subj="confirmModalConfirmButton"]') with timeout=10000
[00:02:48]               │ debg alertMsg = This user will be permanently deleted and access to Elastic removed.
[00:02:48]               │      You can't recover deleted users.
[00:02:48]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:48]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:48]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:48]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:48]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:48]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:48]               │ debg TestSubjects.findAll(userRow)
[00:02:48]               │ debg Find.allByCssSelector('[data-test-subj="userRow"]') with timeout=10000
[00:02:50]               │ debg actualUsers = {"OptionalUser":{"username":"OptionalUser","fullname":"","email":"","roles":[""],"reserved":false,"deprecated":false},"apm_system":{"username":"apm_system","fullname":"","email":"","roles":["apm_system"],"reserved":true,"deprecated":false},"beats_system":{"username":"beats_system","fullname":"","email":"","roles":["beats_system"],"reserved":true,"deprecated":false},"elastic":{"username":"elastic","fullname":"","email":"","roles":["superuser"],"reserved":true,"deprecated":false},"kibana":{"username":"kibana","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":true},"kibana_system":{"username":"kibana_system","fullname":"","email":"","roles":["kibana_system"],"reserved":true,"deprecated":false},"logstash_system":{"username":"logstash_system","fullname":"","email":"","roles":["logstash_system"],"reserved":true,"deprecated":false},"remote_monitoring_user":{"username":"remote_monitoring_user","fullname":"","email":"","roles":["remote_monitoring_collector","remote_monitoring_agent"],"reserved":true,"deprecated":false},"test_user":{"username":"test_user","fullname":"test user","email":"","roles":["superuser"],"reserved":false,"deprecated":false},"userEast":{"username":"userEast","fullname":"dls EAST","email":"[email protected]","roles":["kibana_admin","myroleEast"],"reserved":false,"deprecated":false}}
[00:02:50]               └- ✓ pass  (5.6s) "security app users should delete user"
[00:02:50]             └-> should show the default roles
[00:02:50]               └-> "before each" hook: global before each for "should show the default roles"
[00:02:50]               │ debg navigating to settings url: http://localhost:61121/app/management
[00:02:50]               │ debg navigate to: http://localhost:61121/app/management
[00:02:50]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657546468 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:50]               │
[00:02:50]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:50]               │ debg ... sleep(700) start
[00:02:50]               │ debg ... sleep(700) end
[00:02:50]               │ debg returned from get, calling refresh
[00:02:51]               │ERROR browser[SEVERE] http://localhost:61121/41503/bundles/core/core.entry.js 12:150329 TypeError: Failed to fetch
[00:02:51]               │          at fetch_Fetch.fetchResponse (http://localhost:61121/41503/bundles/core/core.entry.js:6:29862)
[00:02:51]               │          at async http://localhost:61121/41503/bundles/core/core.entry.js:6:27759
[00:02:51]               │          at async http://localhost:61121/41503/bundles/core/core.entry.js:6:27665
[00:02:51]               │ debg browser[INFO] http://localhost:61121/app/management?_t=1617657546468 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:02:51]               │
[00:02:51]               │ debg browser[INFO] http://localhost:61121/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:02:51]               │ debg currentUrl = http://localhost:61121/app/management
[00:02:51]               │          appUrl = http://localhost:61121/app/management
[00:02:51]               │ debg TestSubjects.find(kibanaChrome)
[00:02:51]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:02:52]               │ debg ... sleep(501) start
[00:02:52]               │ debg ... sleep(501) end
[00:02:52]               │ debg in navigateTo url = http://localhost:61121/app/management
[00:02:52]               │ debg TestSubjects.exists(statusPageContainer)
[00:02:52]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:02:55]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:02:55]               │ debg TestSubjects.click(roles)
[00:02:55]               │ debg Find.clickByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:02:55]               │ debg Find.findByCssSelector('[data-test-subj="roles"]') with timeout=10000
[00:02:55]               │ debg TestSubjects.click(tablePaginationPopoverButton)
[00:02:55]               │ debg Find.clickByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:55]               │ debg Find.findByCssSelector('[data-test-subj="tablePaginationPopoverButton"]') with timeout=10000
[00:02:55]               │ debg TestSubjects.click(tablePagination-100-rows)
[00:02:55]               │ debg Find.clickByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:55]               │ debg Find.findByCssSelector('[data-test-subj="tablePagination-100-rows"]') with timeout=10000
[00:02:56]               │ debg TestSubjects.findAll(roleRow)
[00:02:56]               │ debg Find.allByCssSelector('[data-test-subj="roleRow"]') with timeout=10000
[00:03:01]               │ debg actualRoles = {"antimeridian_points_reader":{"rolename":"antimeridian_points_reader","reserved":false,"deprecated":false},"antimeridian_shapes_reader":{"rolename":"antimeridian_shapes_reader","reserved":false,"deprecated":false},"apm_system":{"rolename":"apm_system","reserved":true,"deprecated":false},"apm_user":{"rolename":"apm_user","reserved":true,"deprecated":true},"beats_admin":{"rolename":"beats_admin","reserved":true,"deprecated":false},"beats_system":{"rolename":"beats_system","reserved":true,"deprecated":false},"ccr_user":{"rolename":"ccr_user","reserved":false,"deprecated":false},"data_frame_transforms_admin":{"rolename":"data_frame_transforms_admin","reserved":true,"deprecated":true},"data_frame_transforms_user":{"rolename":"data_frame_transforms_user","reserved":true,"deprecated":true},"enrich_user":{"rolename":"enrich_user","reserved":true,"deprecated":false},"geoall_data_writer":{"rolename":"geoall_data_writer","reserved":false,"deprecated":false},"geoconnections_data_reader":{"rolename":"geoconnections_data_reader","reserved":false,"deprecated":false},"geoshape_data_reader":{"rolename":"geoshape_data_reader","reserved":false,"deprecated":false},"global_canvas_all":{"rolename":"global_canvas_all","reserved":false,"deprecated":false},"global_ccr_role":{"rolename":"global_ccr_role","reserved":false,"deprecated":false},"global_dashboard_all":{"rolename":"global_dashboard_all","reserved":false,"deprecated":false},"global_dashboard_read":{"rolename":"global_dashboard_read","reserved":false,"deprecated":false},"global_devtools_read":{"rolename":"global_devtools_read","reserved":false,"deprecated":false},"global_discover_all":{"rolename":"global_discover_all","reserved":false,"deprecated":false},"global_discover_read":{"rolename":"global_discover_read","reserved":false,"deprecated":false},"global_index_pattern_management_all":{"rolename":"global_index_pattern_management_all","reserved":false,"deprecated":false},"global_maps_all":{"rolename":"global_maps_all","reserved":false,"deprecated":false},"global_maps_read":{"rolename":"global_maps_read","reserved":false,"deprecated":false},"global_upgrade_assistant_role":{"rolename":"global_upgrade_assistant_role","reserved":false,"deprecated":false},"global_visualize_all":{"rolename":"global_visualize_all","reserved":false,"deprecated":false},"global_visualize_read":{"rolename":"global_visualize_read","reserved":false,"deprecated":false},"index_management_user":{"rolename":"index_management_user","reserved":false,"deprecated":false},"ingest_admin":{"rolename":"ingest_admin","reserved":true,"deprecated":false},"ingest_pipelines_user":{"rolename":"ingest_pipelines_user","reserved":false,"deprecated":false},"kibana_admin":{"rolename":"kibana_admin","reserved":true,"deprecated":false},"kibana_dashboard_only_user":{"rolename":"kibana_dashboard_only_user","reserved":true,"deprecated":true},"kibana_system":{"rolename":"kibana_system","reserved":true,"deprecated":false},"kibana_user":{"rolename":"kibana_user","reserved":true,"deprecated":true},"license_management_user":{"rolename":"license_management_user","reserved":false,"deprecated":false},"logstash_admin":{"rolename":"logstash_admin","reserved":true,"deprecated":false},"logstash_read_user":{"rolename":"logstash_read_user","reserved":false,"deprecated":false},"logstash_system":{"rolename":"logstash_system","reserved":true,"deprecated":false},"machine_learning_admin":{"rolename":"machine_learning_admin","reserved":true,"deprecated":false},"machine_learning_user":{"rolename":"machine_learning_user","reserved":true,"deprecated":false},"manage_ilm":{"rolename":"manage_ilm","reserved":false,"deprecated":false},"manage_rollups_role":{"rolename":"manage_rollups_role","reserved":false,"deprecated":false},"manage_security":{"rolename":"manage_security","reserved":false,"deprecated":false},"meta_for_geoshape_data_reader":{"rolename":"meta_for_geoshape_data_reader","reserved":false,"deprecated":false},"monitoring_user":{"rolename":"monitoring_user","reserved":true,"deprecated":false},"myroleEast":{"rolename":"myroleEast","reserved":false,"deprecated":false},"remote_clusters_user":{"rolename":"remote_clusters_user","reserved":false,"deprecated":false},"remote_monitoring_agent":{"rolename":"remote_monitoring_agent","reserved":true,"deprecated":false},"remote_monitoring_collector":{"rolename":"remote_monitoring_collector","reserved":true,"deprecated":false},"reporting_user":{"rolename":"reporting_user","reserved":true,"deprecated":false},"rollup_admin":{"rolename":"rollup_admin","reserved":true,"deprecated":false},"rollup_user":{"rolename":"rollup_user","reserved":true,"deprecated":false},"snapshot_user":{"rolename":"snapshot_user","reserved":true,"deprecated":false},"superuser":{"rolename":"superuser","reserved":true,"deprecated":false},"test_api_keys":{"rolename":"test_api_keys","reserved":false,"deprecated":false},"test_logstash_reader":{"rolename":"test_logstash_reader","reserved":false,"deprecated":false},"transform_admin":{"rolename":"transform_admin","reserved":true,"deprecated":false},"transform_user":{"rolename":"transform_user","reserved":true,"deprecated":false},"transport_client":{"rolename":"transport_client","reserved":true,"deprecated":false},"watcher_admin":{"rolename":"watcher_admin","reserved":true,"deprecated":false},"watcher_user":{"rolename":"watcher_user","reserved":true,"deprecated":false}}
[00:03:01]               │ info Taking screenshot "/dev/shm/workspace/parallel/12/kibana/x-pack/test/functional/screenshots/failure/security app users should show the default roles.png"
[00:03:01]               │ info Current URL is: http://localhost:61121/app/management/security/roles
[00:03:01]               │ info Saving page source to: /dev/shm/workspace/parallel/12/kibana/x-pack/test/functional/failure_debug/html/security app users should show the default roles.html
[00:03:01]               └- ✖ fail: security app users should show the default roles
[00:03:01]               │      Error: expected true to equal false
[00:03:01]               │       at Assertion.assert (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:100:11)
[00:03:01]               │       at Assertion.be.Assertion.equal (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:227:8)
[00:03:01]               │       at Assertion.be (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:69:22)
[00:03:01]               │       at Context.<anonymous> (test/functional/apps/security/users.js:93:44)
[00:03:01]               │       at runMicrotasks (<anonymous>)
[00:03:01]               │       at processTicksAndRejections (internal/process/task_queues.js:93:5)
[00:03:01]               │       at Object.apply (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16)
[00:03:01]               │ 
[00:03:01]               │ 

Stack Trace

Error: expected true to equal false
    at Assertion.assert (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:100:11)
    at Assertion.be.Assertion.equal (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:227:8)
    at Assertion.be (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/expect/expect.js:69:22)
    at Context.<anonymous> (test/functional/apps/security/users.js:93:44)
    at runMicrotasks (<anonymous>)
    at processTicksAndRejections (internal/process/task_queues.js:93:5)
    at Object.apply (/dev/shm/workspace/parallel/12/kibana/node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16)

Kibana Pipeline / general / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/discover/reporting·ts.discover Discover CSV Export Generate CSV: new search generates a report from a new search with data: default

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has not failed recently on tracked branches

[00:00:00]       │
[00:14:29]         └-: discover
[00:14:29]           └-> "before all" hook in "discover"
[00:22:46]           └-: Discover CSV Export
[00:22:46]             └-> "before all" hook in "Discover CSV Export"
[00:22:46]             └-> "before all" hook: initialize tests in "Discover CSV Export"
[00:22:46]               │ debg ReportingPage:initTests
[00:22:46]               │ info [reporting/ecommerce] Loading "mappings.json"
[00:22:46]               │ info [reporting/ecommerce] Loading "data.json.gz"
[00:22:46]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [ecommerce] creating index, cause [api], templates [], shards [1]/[0]
[00:22:46]               │ info [reporting/ecommerce] Created index "ecommerce"
[00:22:46]               │ debg [reporting/ecommerce] "ecommerce" settings {"index":{"number_of_replicas":"0","number_of_shards":"1"}}
[00:22:47]               │ info [reporting/ecommerce] Indexed 4675 docs into "ecommerce"
[00:22:47]               │ info [reporting/ecommerce_kibana] Loading "mappings.json"
[00:22:47]               │ info [reporting/ecommerce_kibana] Loading "data.json"
[00:22:47]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_task_manager_8.0.0_001/0jqIebUhRHOESicY3AnWcg] deleting index
[00:22:47]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001/_xijxTAVTUqXxLK7rFN_QQ] deleting index
[00:22:47]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_pre6.5.0_001/rsbkZgE8TeKxZm58qhRLqA] deleting index
[00:22:48]               │ info [reporting/ecommerce_kibana] Deleted existing index ".kibana_8.0.0_001"
[00:22:48]               │ info [reporting/ecommerce_kibana] Deleted existing index ".kibana_task_manager_8.0.0_001"
[00:22:48]               │ info [reporting/ecommerce_kibana] Deleted existing index ".kibana_pre6.5.0_001"
[00:22:48]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_1] creating index, cause [api], templates [], shards [1]/[0]
[00:22:48]               │ info [reporting/ecommerce_kibana] Created index ".kibana_1"
[00:22:48]               │ debg [reporting/ecommerce_kibana] ".kibana_1" settings {"index":{"auto_expand_replicas":"0-1","number_of_replicas":"0","number_of_shards":"1"}}
[00:22:48]               │ info [reporting/ecommerce_kibana] Indexed 13 docs into ".kibana_1"
[00:22:48]               │ debg Migrating saved objects
[00:22:48]               │ proc [kibana]   log   [21:37:31.442] [info][savedobjects-service] [.kibana_task_manager] INIT -> CREATE_NEW_TARGET
[00:22:48]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_task_manager_8.0.0_001] creating index, cause [api], templates [], shards [1]/[1]
[00:22:48]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] updating number_of_replicas to [0] for indices [.kibana_task_manager_8.0.0_001]
[00:22:48]               │ proc [kibana]   log   [21:37:31.450] [info][savedobjects-service] [.kibana] INIT -> SET_SOURCE_WRITE_BLOCK
[00:22:48]               │ info [o.e.c.m.MetadataIndexStateService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] adding block write to indices [[.kibana_1/XGLOWNf7Q4Savt61IoYi1A]]
[00:22:48]               │ info [o.e.c.m.MetadataIndexStateService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] completed adding block write to indices [.kibana_1]
[00:22:48]               │ proc [kibana]   log   [21:37:31.510] [info][savedobjects-service] [.kibana_task_manager] CREATE_NEW_TARGET -> MARK_VERSION_INDEX_READY
[00:22:48]               │ proc [kibana]   log   [21:37:31.524] [info][savedobjects-service] [.kibana] SET_SOURCE_WRITE_BLOCK -> CREATE_REINDEX_TEMP
[00:22:48]               │ proc [kibana]   log   [21:37:31.538] [info][savedobjects-service] [.kibana_task_manager] MARK_VERSION_INDEX_READY -> DONE
[00:22:48]               │ proc [kibana]   log   [21:37:31.538] [info][savedobjects-service] [.kibana_task_manager] Migration completed after 102ms
[00:22:48]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp] creating index, cause [api], templates [], shards [1]/[1]
[00:22:48]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] updating number_of_replicas to [0] for indices [.kibana_8.0.0_reindex_temp]
[00:22:48]               │ proc [kibana]   log   [21:37:31.597] [info][savedobjects-service] [.kibana] CREATE_REINDEX_TEMP -> REINDEX_SOURCE_TO_TEMP
[00:22:48]               │ proc [kibana]   log   [21:37:31.603] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP -> REINDEX_SOURCE_TO_TEMP_WAIT_FOR_TASK
[00:22:48]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/hlfFOxqZR_u6Ra8eMmxw5g] update_mapping [_doc]
[00:22:48]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/hlfFOxqZR_u6Ra8eMmxw5g] update_mapping [_doc]
[00:22:48]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/hlfFOxqZR_u6Ra8eMmxw5g] update_mapping [_doc]
[00:22:48]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/hlfFOxqZR_u6Ra8eMmxw5g] update_mapping [_doc]
[00:22:48]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/hlfFOxqZR_u6Ra8eMmxw5g] update_mapping [_doc]
[00:22:48]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] 83979 finished with response BulkByScrollResponse[took=138.9ms,timed_out=false,sliceId=null,updated=0,created=13,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:22:48]               │ proc [kibana]   log   [21:37:31.810] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_WAIT_FOR_TASK -> SET_TEMP_WRITE_BLOCK
[00:22:48]               │ info [o.e.c.m.MetadataIndexStateService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] adding block write to indices [[.kibana_8.0.0_reindex_temp/hlfFOxqZR_u6Ra8eMmxw5g]]
[00:22:48]               │ info [o.e.c.m.MetadataIndexStateService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] completed adding block write to indices [.kibana_8.0.0_reindex_temp]
[00:22:48]               │ proc [kibana]   log   [21:37:31.851] [info][savedobjects-service] [.kibana] SET_TEMP_WRITE_BLOCK -> CLONE_TEMP_TO_TARGET
[00:22:48]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] applying create index request using existing index [.kibana_8.0.0_reindex_temp] metadata
[00:22:48]               │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001] creating index, cause [clone_index], templates [], shards [1]/[1]
[00:22:48]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] updating number_of_replicas to [0] for indices [.kibana_8.0.0_001]
[00:22:48]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001/agG5Aj-uTqCOFQDeifIuFg] create_mapping
[00:22:48]               │ proc [kibana]   log   [21:37:31.947] [info][savedobjects-service] [.kibana] CLONE_TEMP_TO_TARGET -> OUTDATED_DOCUMENTS_SEARCH
[00:22:48]               │ proc [kibana]   log   [21:37:31.956] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH -> OUTDATED_DOCUMENTS_TRANSFORM
[00:22:48]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001/agG5Aj-uTqCOFQDeifIuFg] update_mapping [_doc]
[00:22:49]               │ proc [kibana]   log   [21:37:32.883] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_TRANSFORM -> OUTDATED_DOCUMENTS_SEARCH
[00:22:49]               │ proc [kibana]   log   [21:37:32.891] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH -> UPDATE_TARGET_MAPPINGS
[00:22:49]               │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001/agG5Aj-uTqCOFQDeifIuFg] update_mapping [_doc]
[00:22:49]               │ proc [kibana]   log   [21:37:32.937] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS -> UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK
[00:22:49]               │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] 84074 finished with response BulkByScrollResponse[took=19.3ms,timed_out=false,sliceId=null,updated=13,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:22:49]               │ proc [kibana]   log   [21:37:33.044] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK -> MARK_VERSION_INDEX_READY
[00:22:49]               │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/hlfFOxqZR_u6Ra8eMmxw5g] deleting index
[00:22:49]               │ proc [kibana]   log   [21:37:33.079] [info][savedobjects-service] [.kibana] MARK_VERSION_INDEX_READY -> DONE
[00:22:49]               │ proc [kibana]   log   [21:37:33.079] [info][savedobjects-service] [.kibana] Migration completed after 1644ms
[00:22:49]               │ debg [reporting/ecommerce_kibana] Migrated Kibana index after loading Kibana data
[00:22:49]               │ debg [reporting/ecommerce_kibana] Ensured that default space exists in .kibana
[00:22:49]               │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC","visualization:visualize:legacyChartsLibrary":true}
[00:23:55]             └-: Generate CSV: new search
[00:23:55]               └-> "before all" hook for "generates a report from a new search with data: default"
[00:23:55]               └-> generates a report from a new search with data: default
[00:23:55]                 └-> "before each" hook: global before each for "generates a report from a new search with data: default"
[00:23:55]                 └-> "before each" hook for "generates a report from a new search with data: default"
[00:23:55]                   │ info [reporting/ecommerce_kibana] Loading "mappings.json"
[00:23:55]                   │ info [reporting/ecommerce_kibana] Loading "data.json"
[00:23:55]                   │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_1/XGLOWNf7Q4Savt61IoYi1A] deleting index
[00:23:55]                   │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001/agG5Aj-uTqCOFQDeifIuFg] deleting index
[00:23:55]                   │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_task_manager_8.0.0_001/Db4NPMhjSKi7GFV5POWiAA] deleting index
[00:23:55]                   │ info [reporting/ecommerce_kibana] Deleted existing index ".kibana_8.0.0_001"
[00:23:55]                   │ info [reporting/ecommerce_kibana] Deleted existing index ".kibana_task_manager_8.0.0_001"
[00:23:55]                   │ info [reporting/ecommerce_kibana] Deleted existing index ".kibana_1"
[00:23:55]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_1] creating index, cause [api], templates [], shards [1]/[0]
[00:23:55]                   │ info [reporting/ecommerce_kibana] Created index ".kibana_1"
[00:23:55]                   │ debg [reporting/ecommerce_kibana] ".kibana_1" settings {"index":{"auto_expand_replicas":"0-1","number_of_replicas":"0","number_of_shards":"1"}}
[00:23:55]                   │ info [reporting/ecommerce_kibana] Indexed 13 docs into ".kibana_1"
[00:23:55]                   │ debg Migrating saved objects
[00:23:55]                   │ proc [kibana]   log   [21:38:38.970] [info][savedobjects-service] [.kibana_task_manager] INIT -> CREATE_NEW_TARGET
[00:23:55]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_task_manager_8.0.0_001] creating index, cause [api], templates [], shards [1]/[1]
[00:23:55]                   │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] updating number_of_replicas to [0] for indices [.kibana_task_manager_8.0.0_001]
[00:23:55]                   │ proc [kibana]   log   [21:38:38.979] [info][savedobjects-service] [.kibana] INIT -> SET_SOURCE_WRITE_BLOCK
[00:23:55]                   │ info [o.e.c.m.MetadataIndexStateService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] adding block write to indices [[.kibana_1/ANj9uLf9SVGhkOjqdI3Bsw]]
[00:23:55]                   │ info [o.e.c.m.MetadataIndexStateService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] completed adding block write to indices [.kibana_1]
[00:23:55]                   │ proc [kibana]   log   [21:38:39.027] [info][savedobjects-service] [.kibana_task_manager] CREATE_NEW_TARGET -> MARK_VERSION_INDEX_READY
[00:23:55]                   │ proc [kibana]   log   [21:38:39.041] [info][savedobjects-service] [.kibana] SET_SOURCE_WRITE_BLOCK -> CREATE_REINDEX_TEMP
[00:23:55]                   │ proc [kibana]   log   [21:38:39.053] [info][savedobjects-service] [.kibana_task_manager] MARK_VERSION_INDEX_READY -> DONE
[00:23:55]                   │ proc [kibana]   log   [21:38:39.053] [info][savedobjects-service] [.kibana_task_manager] Migration completed after 86ms
[00:23:55]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp] creating index, cause [api], templates [], shards [1]/[1]
[00:23:55]                   │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] updating number_of_replicas to [0] for indices [.kibana_8.0.0_reindex_temp]
[00:23:55]                   │ proc [kibana]   log   [21:38:39.095] [info][savedobjects-service] [.kibana] CREATE_REINDEX_TEMP -> REINDEX_SOURCE_TO_TEMP
[00:23:55]                   │ proc [kibana]   log   [21:38:39.101] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP -> REINDEX_SOURCE_TO_TEMP_WAIT_FOR_TASK
[00:23:55]                   │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/QPyCtTT6TWek5YdMpXp-xQ] update_mapping [_doc]
[00:23:55]                   │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/QPyCtTT6TWek5YdMpXp-xQ] update_mapping [_doc]
[00:23:55]                   │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/QPyCtTT6TWek5YdMpXp-xQ] update_mapping [_doc]
[00:23:55]                   │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/QPyCtTT6TWek5YdMpXp-xQ] update_mapping [_doc]
[00:23:55]                   │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/QPyCtTT6TWek5YdMpXp-xQ] update_mapping [_doc]
[00:23:55]                   │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] 85789 finished with response BulkByScrollResponse[took=104.4ms,timed_out=false,sliceId=null,updated=0,created=13,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:23:55]                   │ proc [kibana]   log   [21:38:39.207] [info][savedobjects-service] [.kibana] REINDEX_SOURCE_TO_TEMP_WAIT_FOR_TASK -> SET_TEMP_WRITE_BLOCK
[00:23:55]                   │ info [o.e.c.m.MetadataIndexStateService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] adding block write to indices [[.kibana_8.0.0_reindex_temp/QPyCtTT6TWek5YdMpXp-xQ]]
[00:23:55]                   │ info [o.e.c.m.MetadataIndexStateService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] completed adding block write to indices [.kibana_8.0.0_reindex_temp]
[00:23:55]                   │ proc [kibana]   log   [21:38:39.239] [info][savedobjects-service] [.kibana] SET_TEMP_WRITE_BLOCK -> CLONE_TEMP_TO_TARGET
[00:23:55]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] applying create index request using existing index [.kibana_8.0.0_reindex_temp] metadata
[00:23:55]                   │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001] creating index, cause [clone_index], templates [], shards [1]/[1]
[00:23:55]                   │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] updating number_of_replicas to [0] for indices [.kibana_8.0.0_001]
[00:23:55]                   │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001/kagzTEUPSYG43jqZQnRLoA] create_mapping
[00:23:56]                   │ proc [kibana]   log   [21:38:39.325] [info][savedobjects-service] [.kibana] CLONE_TEMP_TO_TARGET -> OUTDATED_DOCUMENTS_SEARCH
[00:23:56]                   │ proc [kibana]   log   [21:38:39.333] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH -> OUTDATED_DOCUMENTS_TRANSFORM
[00:23:56]                   │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001/kagzTEUPSYG43jqZQnRLoA] update_mapping [_doc]
[00:23:56]                   │ proc [kibana]   log   [21:38:40.268] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_TRANSFORM -> OUTDATED_DOCUMENTS_SEARCH
[00:23:56]                   │ proc [kibana]   log   [21:38:40.277] [info][savedobjects-service] [.kibana] OUTDATED_DOCUMENTS_SEARCH -> UPDATE_TARGET_MAPPINGS
[00:23:56]                   │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001/kagzTEUPSYG43jqZQnRLoA] update_mapping [_doc]
[00:23:57]                   │ proc [kibana]   log   [21:38:40.322] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS -> UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK
[00:23:57]                   │ info [o.e.t.LoggingTaskListener] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] 85872 finished with response BulkByScrollResponse[took=20.4ms,timed_out=false,sliceId=null,updated=13,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[00:23:57]                   │ proc [kibana]   log   [21:38:40.429] [info][savedobjects-service] [.kibana] UPDATE_TARGET_MAPPINGS_WAIT_FOR_TASK -> MARK_VERSION_INDEX_READY
[00:23:57]                   │ info [o.e.c.m.MetadataDeleteIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_reindex_temp/QPyCtTT6TWek5YdMpXp-xQ] deleting index
[00:23:57]                   │ proc [kibana]   log   [21:38:40.468] [info][savedobjects-service] [.kibana] MARK_VERSION_INDEX_READY -> DONE
[00:23:57]                   │ proc [kibana]   log   [21:38:40.469] [info][savedobjects-service] [.kibana] Migration completed after 1503ms
[00:23:57]                   │ debg [reporting/ecommerce_kibana] Migrated Kibana index after loading Kibana data
[00:23:57]                   │ debg [reporting/ecommerce_kibana] Ensured that default space exists in .kibana
[00:23:57]                   │ debg applying update to kibana config: {"accessibility:disableAnimations":true,"dateFormat:tz":"UTC","visualization:visualize:legacyChartsLibrary":true}
[00:23:58]                   │ debg navigating to discover url: http://localhost:6131/app/discover#/
[00:23:58]                   │ debg navigate to: http://localhost:6131/app/discover#/
[00:23:59]                   │ debg browser[INFO] http://localhost:6131/app/discover?_t=1617658722287#/ 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:23:59]                   │
[00:23:59]                   │ debg browser[INFO] http://localhost:6131/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:23:59]                   │ debg ... sleep(700) start
[00:23:59]                   │ debg ... sleep(700) end
[00:23:59]                   │ debg returned from get, calling refresh
[00:24:00]                   │ERROR browser[SEVERE] http://localhost:6131/41503/bundles/core/core.entry.js 12:150329 TypeError: Failed to fetch
[00:24:00]                   │          at fetch_Fetch.fetchResponse (http://localhost:6131/41503/bundles/core/core.entry.js:6:29862)
[00:24:00]                   │          at async http://localhost:6131/41503/bundles/core/core.entry.js:6:27759
[00:24:00]                   │          at async http://localhost:6131/41503/bundles/core/core.entry.js:6:27665
[00:24:00]                   │ debg browser[INFO] http://localhost:6131/app/discover?_t=1617658722287#/ 341 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:24:00]                   │
[00:24:00]                   │ debg browser[INFO] http://localhost:6131/bootstrap.js 41:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:24:00]                   │ debg currentUrl = http://localhost:6131/app/discover#/
[00:24:00]                   │          appUrl = http://localhost:6131/app/discover#/
[00:24:00]                   │ debg TestSubjects.find(kibanaChrome)
[00:24:00]                   │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:24:01]                   │ debg ... sleep(501) start
[00:24:01]                   │ debg ... sleep(501) end
[00:24:01]                   │ debg in navigateTo url = http://localhost:6131/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(),filters:!(),index:%275193f870-d861-11e9-a311-0fa548c5f953%27,interval:auto,query:(language:kuery,query:%27%27),sort:!(!(order_date,desc)))
[00:24:01]                   │ debg --- retry.try error: URL changed, waiting for it to settle
[00:24:02]                   │ debg ... sleep(501) start
[00:24:02]                   │ debg ... sleep(501) end
[00:24:02]                   │ debg in navigateTo url = http://localhost:6131/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-15m,to:now))&_a=(columns:!(),filters:!(),index:%275193f870-d861-11e9-a311-0fa548c5f953%27,interval:auto,query:(language:kuery,query:%27%27),sort:!(!(order_date,desc)))
[00:24:02]                   │ debg TestSubjects.exists(statusPageContainer)
[00:24:02]                   │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:24:05]                   │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:24:05]                 │ debg TestSubjects.click(discoverNewButton)
[00:24:05]                 │ debg Find.clickByCssSelector('[data-test-subj="discoverNewButton"]') with timeout=10000
[00:24:05]                 │ debg Find.findByCssSelector('[data-test-subj="discoverNewButton"]') with timeout=10000
[00:24:05]                 │ debg isGlobalLoadingIndicatorVisible
[00:24:05]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:24:05]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:24:06]                 │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_8.0.0_001/kagzTEUPSYG43jqZQnRLoA] update_mapping [_doc]
[00:24:07]                 │ debg --- retry.tryForTime error: [data-test-subj="globalLoadingIndicator"] is not displayed
[00:24:07]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:24:07]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:24:07]                 │ debg Reporting:setTimepickerInDataRange
[00:24:07]                 │ debg Setting absolute range to Apr 27, 2019 @ 23:56:51.374 to Aug 23, 2019 @ 16:18:51.821
[00:24:07]                 │ debg TestSubjects.exists(superDatePickerToggleQuickMenuButton)
[00:24:07]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerToggleQuickMenuButton"]') with timeout=20000
[00:24:07]                 │ debg TestSubjects.exists(superDatePickerShowDatesButton)
[00:24:07]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=2500
[00:24:07]                 │ debg TestSubjects.click(superDatePickerShowDatesButton)
[00:24:07]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=10000
[00:24:07]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerShowDatesButton"]') with timeout=10000
[00:24:07]                 │ debg TestSubjects.exists(superDatePickerstartDatePopoverButton)
[00:24:07]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=2500
[00:24:08]                 │ debg TestSubjects.click(superDatePickerendDatePopoverButton)
[00:24:08]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerendDatePopoverButton"]') with timeout=10000
[00:24:08]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerendDatePopoverButton"]') with timeout=10000
[00:24:08]                 │ debg Find.findByCssSelector('div.euiPopover__panel-isOpen') with timeout=10000
[00:24:08]                 │ debg TestSubjects.click(superDatePickerAbsoluteTab)
[00:24:08]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:24:08]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:24:08]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:24:08]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:24:08]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:24:08]                 │ debg TestSubjects.setValue(superDatePickerAbsoluteDateInput, Aug 23, 2019 @ 16:18:51.821)
[00:24:08]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:24:08]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:24:08]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:24:08]                 │ debg TestSubjects.click(superDatePickerstartDatePopoverButton)
[00:24:08]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=10000
[00:24:08]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerstartDatePopoverButton"]') with timeout=10000
[00:24:08]                 │ debg Find.waitForElementStale with timeout=10000
[00:24:09]                 │ debg Find.findByCssSelector('div.euiPopover__panel-isOpen') with timeout=10000
[00:24:09]                 │ debg TestSubjects.click(superDatePickerAbsoluteTab)
[00:24:09]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:24:09]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteTab"]') with timeout=10000
[00:24:09]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:24:09]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:24:09]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:24:09]                 │ debg TestSubjects.setValue(superDatePickerAbsoluteDateInput, Apr 27, 2019 @ 23:56:51.374)
[00:24:09]                 │ debg TestSubjects.click(superDatePickerAbsoluteDateInput)
[00:24:09]                 │ debg Find.clickByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:24:09]                 │ debg Find.findByCssSelector('[data-test-subj="superDatePickerAbsoluteDateInput"]') with timeout=10000
[00:24:09]                 │ debg TestSubjects.exists(superDatePickerApplyTimeButton)
[00:24:09]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="superDatePickerApplyTimeButton"]') with timeout=2500
[00:24:12]                 │ debg --- retry.tryForTime error: [data-test-subj="superDatePickerApplyTimeButton"] is not displayed
[00:24:12]                 │ debg TestSubjects.click(querySubmitButton)
[00:24:12]                 │ debg Find.clickByCssSelector('[data-test-subj="querySubmitButton"]') with timeout=10000
[00:24:12]                 │ debg Find.findByCssSelector('[data-test-subj="querySubmitButton"]') with timeout=10000
[00:24:12]                 │ debg Find.waitForElementStale with timeout=10000
[00:24:12]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:24:12]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:24:12]                 │ debg TestSubjects.click(discoverSaveButton)
[00:24:12]                 │ debg Find.clickByCssSelector('[data-test-subj="discoverSaveButton"]') with timeout=10000
[00:24:12]                 │ debg Find.findByCssSelector('[data-test-subj="discoverSaveButton"]') with timeout=10000
[00:24:13]                 │ debg Waiting up to 20000ms for saved search title is set to my search - with data - expectReportCanBeCreated and save button is clickable...
[00:24:13]                 │ debg TestSubjects.find(confirmSaveSavedObjectButton)
[00:24:13]                 │ debg Find.findByCssSelector('[data-test-subj="confirmSaveSavedObjectButton"]') with timeout=10000
[00:24:13]                 │ debg TestSubjects.setValue(savedObjectTitle, my search - with data - expectReportCanBeCreated)
[00:24:13]                 │ debg TestSubjects.click(savedObjectTitle)
[00:24:13]                 │ debg Find.clickByCssSelector('[data-test-subj="savedObjectTitle"]') with timeout=10000
[00:24:13]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectTitle"]') with timeout=10000
[00:24:13]                 │ debg TestSubjects.click(confirmSaveSavedObjectButton)
[00:24:13]                 │ debg Find.clickByCssSelector('[data-test-subj="confirmSaveSavedObjectButton"]') with timeout=10000
[00:24:13]                 │ debg Find.findByCssSelector('[data-test-subj="confirmSaveSavedObjectButton"]') with timeout=10000
[00:24:13]                 │ debg isGlobalLoadingIndicatorVisible
[00:24:13]                 │ debg TestSubjects.exists(globalLoadingIndicator)
[00:24:13]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="globalLoadingIndicator"]') with timeout=1500
[00:24:13]                 │ debg TestSubjects.exists(globalLoadingIndicator-hidden)
[00:24:13]                 │ debg Find.existsByCssSelector('[data-test-subj="globalLoadingIndicator-hidden"]') with timeout=100000
[00:24:16]                 │ debg Waiting up to 20000ms for saved search was persisted with name my search - with data - expectReportCanBeCreated...
[00:24:16]                 │ debg TestSubjects.getVisibleText(headerGlobalNav > breadcrumbs > ~breadcrumb & ~last)
[00:24:16]                 │ debg TestSubjects.find(headerGlobalNav > breadcrumbs > ~breadcrumb & ~last)
[00:24:16]                 │ debg Find.findByCssSelector('[data-test-subj="headerGlobalNav"] [data-test-subj="breadcrumbs"] [data-test-subj~="breadcrumb"][data-test-subj~="last"]') with timeout=10000
[00:24:16]                 │ debg openCsvReportingPanel
[00:24:16]                 │ debg openShareMenuItem title:CSV Reports
[00:24:16]                 │ debg TestSubjects.exists(shareContextMenu)
[00:24:16]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="shareContextMenu"]') with timeout=2500
[00:24:18]                 │ debg --- retry.tryForTime error: [data-test-subj="shareContextMenu"] is not displayed
[00:24:19]                 │ debg TestSubjects.click(shareTopNavButton)
[00:24:19]                 │ debg Find.clickByCssSelector('[data-test-subj="shareTopNavButton"]') with timeout=10000
[00:24:19]                 │ debg Find.findByCssSelector('[data-test-subj="shareTopNavButton"]') with timeout=10000
[00:24:19]                 │ debg Find.findByCssSelector('div.euiContextMenuPanel') with timeout=10000
[00:24:19]                 │ debg TestSubjects.click(sharePanel-CSVReports)
[00:24:19]                 │ debg Find.clickByCssSelector('[data-test-subj="sharePanel-CSVReports"]') with timeout=10000
[00:24:19]                 │ debg Find.findByCssSelector('[data-test-subj="sharePanel-CSVReports"]') with timeout=10000
[00:24:19]                 │ debg Find.waitForElementStale with timeout=10000
[00:24:19]                 │ debg TestSubjects.click(generateReportButton)
[00:24:19]                 │ debg Find.clickByCssSelector('[data-test-subj="generateReportButton"]') with timeout=10000
[00:24:19]                 │ debg Find.findByCssSelector('[data-test-subj="generateReportButton"]') with timeout=10000
[00:24:19]                 │ debg getReportURL
[00:24:19]                 │ debg TestSubjects.getAttribute(downloadCompletedReportButton, href, tryTimeout=120000, findTimeout=60000)
[00:24:19]                 │ debg TestSubjects.find(downloadCompletedReportButton)
[00:24:19]                 │ debg Find.findByCssSelector('[data-test-subj="downloadCompletedReportButton"]') with timeout=60000
[00:24:19]                 │ info [o.e.c.m.MetadataCreateIndexService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.reporting-2021-04-04] creating index, cause [api], templates [], shards [1]/[1]
[00:24:19]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] updating number_of_replicas to [0] for indices [.reporting-2021-04-04]
[00:24:19]                 │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.kibana_task_manager_8.0.0_001/8RqAs7k8T_yUBl9Disj43g] update_mapping [_doc]
[00:24:19]                 │ proc [kibana]   log   [21:39:03.156] [info][createJob][plugins][reporting] Scheduled csv_searchsource reporting task. Task ID: 57063d80-9657-11eb-a571-9df3f27b3fb6. Report ID: kn548yl43a2ueeb01f0iqhkz
[00:24:23]                 │ proc [kibana]   log   [21:39:06.995] [info][plugins][reporting][runTask] Starting csv_searchsource report kn548yl43a2ueeb01f0iqhkz: attempt 1 of 3.
[00:24:23]                 │ proc [kibana]   log   [21:39:07.277] [warning][csv_searchsource][csv_searchsource][execute-job][kn548yl43a2ueeb01f0iqhkz][plugins][reporting][runTask] Max Size Reached after 1 rows.
[00:24:23]                 │ proc [kibana]   log   [21:39:07.280] [info][plugins][reporting][runTask] Saving csv_searchsource job /.reporting-2021-04-04/_doc/kn548yl43a2ueeb01f0iqhkz.
[00:24:23]                 │ info [o.e.c.m.MetadataMappingService] [kibana-ci-immutable-centos-tests-xxl-1617654850852510937] [.reporting-2021-04-04/XV6yGL3xSAWwCJVb0aintw] update_mapping [_doc]
[00:24:26]                 │ debg getReportURL got url: http://localhost:6131/api/reporting/jobs/download/kn548yl43a2ueeb01f0iqhkz
[00:24:26]                 │ debg getResponse for http://localhost:6131/api/reporting/jobs/download/kn548yl43a2ueeb01f0iqhkz
[00:24:26]                 │ info Taking screenshot "/dev/shm/workspace/parallel/3/kibana/x-pack/test/functional/screenshots/failure/discover Discover CSV Export Generate CSV_ new search generates a report from a new search with data_ default.png"
[00:24:26]                 │ info Current URL is: http://localhost:6131/app/discover#/view/533b2bc0-9657-11eb-a571-9df3f27b3fb6?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:%272019-04-27T23:56:51.374Z%27,to:%272019-08-23T16:18:51.821Z%27))&_a=(columns:!(),filters:!(),index:%275193f870-d861-11e9-a311-0fa548c5f953%27,interval:auto,query:(language:kuery,query:%27%27),sort:!(!(order_date,desc)))
[00:24:26]                 │ info Saving page source to: /dev/shm/workspace/parallel/3/kibana/x-pack/test/functional/failure_debug/html/discover Discover CSV Export Generate CSV_ new search generates a report from a new search with data_ default.html
[00:24:26]                 └- ✖ fail: discover Discover CSV Export Generate CSV: new search generates a report from a new search with data: default
[00:24:26]                 │      Error: expect(received).toMatchSnapshot()
[00:24:26]                 │ 
[00:24:26]                 │ Snapshot name: `discover Discover CSV Export Generate CSV: new search generates a report from a new search with data: default 1`
[00:24:26]                 │ 
[00:24:26]                 │ - Snapshot  - 1
[00:24:26]                 │ + Received  + 1
[00:24:26]                 │ 
[00:24:26]                 │ @@ -3,7 +3,7 @@
[00:24:26]                 │     ""coordinates"": [
[00:24:26]                 │       54.4,
[00:24:26]                 │       24.5
[00:24:26]                 │     ],
[00:24:26]                 │     ""type"": ""Point""
[00:24:26]                 │ - }","Abu Dhabi","Angeldale, Oceanavigations, Microlutions","Angeldale, Oceanavigations, Microlutions","Jul 12, 2019 @ 00:00:00.000",716724,"sold_product_716724_23975, sold_product_716724_6338, sold_product_716724_14116, sold_product_716724_15290","sold_product_716724_23975, sold_product_716724_6338, sold_product_716724_14116, sold_product_716724_15290","79.99, 59.99, 21.99, 11.99","79.99, 59.99, 21.99, 11.99","Men's Shoes, Men's Clothing, Women's Accessories, Men's Accessories","Men's Shoes, Men's Clothing, Women's Accessories, Men's Accessories","Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000","0, 0, 0, 0","0, 0, 0, 0","Angeldale, Oceanavigations, Microlutions, Oceanavigations","Angeldale, Oceanavigations, Microlutions, Oceanavigations","42.39, 32.99, 10.34, 6.11","79.99, 59.99, 21.99, 11.99","23,975, 6,338, 14,116, 15,290","Winter boots - cognac, Trenchcoat - black, Watch - black, Hat - light grey multicolor","Winter boots - cognac, Trenchcoat - black, Watch - black, Hat - light grey multicolor","1, 1, 1, 1","ZO0687606876, ZO0290502905, ZO0126701267, ZO0308503085","0, 0, 0, 0","79.99, 59.99, 21.99, 11.99","79.99, 59.99, 21.99, 11.99","0, 0, 0, 0","ZO0687606876, ZO0290502905, ZO0126701267, ZO0308503085","173.96","173.96",4,4,order,sultan
[00:24:26]                 │ + }","Abu Dhabi","Angeldale, Oceanavigations, Microlutions","Angeldale, Oceanavigations, Microlutions","Jul 12, 2019 @ 00:00:00.000",716724,"sold_product_716724_23975, sold_product_716724_6338, sold_product_716724_14116, sold_product_716724_15290","sold_product_716724_23975, sold_product_716724_6338, sold_product_716724_14116, sold_product_716724_15290","80, 60, 21.984, 11.992","80, 60, 21.984, 11.992","Men's Shoes, Men's Clothing, Women's Accessories, Men's Accessories","Men's Shoes, Men's Clothing, Women's Accessories, Men's Accessories","Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000","0, 0, 0, 0","0, 0, 0, 0","Angeldale, Oceanavigations, Microlutions, Oceanavigations","Angeldale, Oceanavigations, Microlutions, Oceanavigations","42.375, 33, 10.344, 6.109","80, 60, 21.984, 11.992","23,975, 6,338, 14,116, 15,290","Winter boots - cognac, Trenchcoat - black, Watch - black, Hat - light grey multicolor","Winter boots - cognac, Trenchcoat - black, Watch - black, Hat - light grey multicolor","1, 1, 1, 1","ZO0687606876, ZO0290502905, ZO0126701267, ZO0308503085","0, 0, 0, 0","80, 60, 21.984, 11.992","80, 60, 21.984, 11.992","0, 0, 0, 0","ZO0687606876, ZO0290502905, ZO0126701267, ZO0308503085",174,174,4,4,order,sultan
[00:24:26]                 │   ↵
[00:24:26]                 │       at Context.<anonymous> (test/functional/apps/discover/reporting.ts:93:34)
[00:24:26]                 │       at Object.apply (/dev/shm/workspace/parallel/3/kibana/node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16)
[00:24:26]                 │ 
[00:24:26]                 │ 

Stack Trace

Error: expect(received).toMatchSnapshot()

Snapshot name: `discover Discover CSV Export Generate CSV: new search generates a report from a new search with data: default 1`

- Snapshot  - 1
+ Received  + 1

@@ -3,7 +3,7 @@
    ""coordinates"": [
      54.4,
      24.5
    ],
    ""type"": ""Point""
- }","Abu Dhabi","Angeldale, Oceanavigations, Microlutions","Angeldale, Oceanavigations, Microlutions","Jul 12, 2019 @ 00:00:00.000",716724,"sold_product_716724_23975, sold_product_716724_6338, sold_product_716724_14116, sold_product_716724_15290","sold_product_716724_23975, sold_product_716724_6338, sold_product_716724_14116, sold_product_716724_15290","79.99, 59.99, 21.99, 11.99","79.99, 59.99, 21.99, 11.99","Men's Shoes, Men's Clothing, Women's Accessories, Men's Accessories","Men's Shoes, Men's Clothing, Women's Accessories, Men's Accessories","Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000","0, 0, 0, 0","0, 0, 0, 0","Angeldale, Oceanavigations, Microlutions, Oceanavigations","Angeldale, Oceanavigations, Microlutions, Oceanavigations","42.39, 32.99, 10.34, 6.11","79.99, 59.99, 21.99, 11.99","23,975, 6,338, 14,116, 15,290","Winter boots - cognac, Trenchcoat - black, Watch - black, Hat - light grey multicolor","Winter boots - cognac, Trenchcoat - black, Watch - black, Hat - light grey multicolor","1, 1, 1, 1","ZO0687606876, ZO0290502905, ZO0126701267, ZO0308503085","0, 0, 0, 0","79.99, 59.99, 21.99, 11.99","79.99, 59.99, 21.99, 11.99","0, 0, 0, 0","ZO0687606876, ZO0290502905, ZO0126701267, ZO0308503085","173.96","173.96",4,4,order,sultan
+ }","Abu Dhabi","Angeldale, Oceanavigations, Microlutions","Angeldale, Oceanavigations, Microlutions","Jul 12, 2019 @ 00:00:00.000",716724,"sold_product_716724_23975, sold_product_716724_6338, sold_product_716724_14116, sold_product_716724_15290","sold_product_716724_23975, sold_product_716724_6338, sold_product_716724_14116, sold_product_716724_15290","80, 60, 21.984, 11.992","80, 60, 21.984, 11.992","Men's Shoes, Men's Clothing, Women's Accessories, Men's Accessories","Men's Shoes, Men's Clothing, Women's Accessories, Men's Accessories","Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000, Dec 31, 2016 @ 00:00:00.000","0, 0, 0, 0","0, 0, 0, 0","Angeldale, Oceanavigations, Microlutions, Oceanavigations","Angeldale, Oceanavigations, Microlutions, Oceanavigations","42.375, 33, 10.344, 6.109","80, 60, 21.984, 11.992","23,975, 6,338, 14,116, 15,290","Winter boots - cognac, Trenchcoat - black, Watch - black, Hat - light grey multicolor","Winter boots - cognac, Trenchcoat - black, Watch - black, Hat - light grey multicolor","1, 1, 1, 1","ZO0687606876, ZO0290502905, ZO0126701267, ZO0308503085","0, 0, 0, 0","80, 60, 21.984, 11.992","80, 60, 21.984, 11.992","0, 0, 0, 0","ZO0687606876, ZO0290502905, ZO0126701267, ZO0308503085",174,174,4,4,order,sultan
  ↵
    at Context.<anonymous> (test/functional/apps/discover/reporting.ts:93:34)
    at Object.apply (/dev/shm/workspace/parallel/3/kibana/node_modules/@kbn/test/src/functional_test_runner/lib/mocha/wrap_function.js:73:16)

and 3 more failures, only showing the first 3.

Metrics [docs]

Async chunks

Total size of all lazy-loaded chunks that will be downloaded as the user navigates the app

id before after diff
lens 903.2KB 903.6KB +348.0B
visTypeTimeseries 1.6MB 1.6MB +173.0B
visTypeXy 111.5KB 111.7KB +205.0B
total +726.0B

Page load bundle

Size of the bundles that are downloaded on every page load. Target size is below 100kb

id before after diff
core 412.1KB 414.0KB +1.9KB

Saved Objects .kibana field count

Every field in each saved object type adds overhead to Elasticsearch. Kibana needs to keep the total field count below Elasticsearch's default limit of 1000 fields. Only specify field mappings for the fields you wish to search on or query. See https://www.elastic.co/guide/en/kibana/master/development-plugin-saved-objects.html#_mappings

id before after diff
_tier - 1 +1

History

To update your PR or re-run it, just comment with:
@elasticmachine merge upstream

@nickofthyme nickofthyme merged commit d4b0f92 into elastic:master Apr 5, 2021
@nickofthyme nickofthyme changed the title [Dashboard] Fix Lens and TSVB tooltip positioning relative to global headers [Dashboard] Fix Lens and TSVB chart tooltip positioning relative to global headers Apr 5, 2021
@nickofthyme nickofthyme deleted the fix-tooltip-boundary branch April 5, 2021 23:02
jloleysens added a commit to jloleysens/kibana that referenced this pull request Apr 6, 2021
…-nav

* 'master' of github.com:elastic/kibana: (106 commits)
  [Lens] don't use eui variables for zindex (elastic#96117)
  Remove /src/legacy (elastic#95510)
  skip flaky suite (elastic#95899)
  [Dashboard] Fix Lens and TSVB chart tooltip positioning relative to global headers (elastic#94247)
  fixes a skipped management x-pack test (elastic#96178)
  [App Search] API logs: Add log detail flyout (elastic#96162)
  [tech-debt] Remove defunct opacity parameters from EUI shadow functions (elastic#96191)
  Add Input Controls project configuration (elastic#96238)
  [file upload] document file upload privileges and provide actionable UI when failures occur (elastic#95883)
  Revert "TS Incremental build exclude test files (elastic#95610)" (elastic#96223)
  [App Search] Added Sample Response section to Result Settings (elastic#95971)
  [Maps] Safe-erase text-field (elastic#94873)
  [RAC][Alert Triage][TGrid] Update the Alerts Table (TGrid) API to implement `renderCellValue` (elastic#96098)
  [Maps] Enable all zoom levels for all users (elastic#96093)
  Use plugin version in its publicPath (elastic#95945)
  [Enterprise Search] Expose core.chrome.setIsVisible for use in Workplace Search (elastic#95984)
  [Workplace Search] Add sub nav and fix rendering bugs in Personal dashboard (elastic#96100)
  [OBS]home page is showing incorrect value of APM throughput (tpm) (elastic#95991)
  [Observability] Exploratory View initial skeleton (elastic#94426)
  [KQL] Fixed styles of KQL textarea for the K8 theme (elastic#96190)
  ...

# Conflicts:
#	x-pack/plugins/snapshot_restore/__jest__/client_integration/helpers/restore_snapshot.helpers.ts
@kibanamachine
Copy link
Contributor

Friendly reminder: Looks like this PR hasn’t been backported yet.
To create backports run node scripts/backport --pr 94247 or prevent reminders by adding the backport:skip label.

@kibanamachine kibanamachine added the backport missing Added to PRs automatically when the are determined to be missing a backport. label Apr 7, 2021
nickofthyme added a commit to nickofthyme/kibana that referenced this pull request Apr 8, 2021
@kibanamachine kibanamachine removed the backport missing Added to PRs automatically when the are determined to be missing a backport. label Apr 8, 2021
nickofthyme added a commit that referenced this pull request Apr 8, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Fixes for quality problems that affect the customer experience Feature:Dashboard Dashboard related features Feature:Lens Feature:TSVB TSVB (Time Series Visual Builder) Feature:XYAxis XY-Axis charts (bar, area, line) impact:high Addressing this issue will have a high level of impact on the quality/strength of our product. loe:small Small Level of Effort release_note:fix Team:Presentation Presentation Team for Dashboard, Input Controls, and Canvas Team:Visualizations Visualization editors, elastic-charts and infrastructure v7.13.0 v8.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Dashboard] Lens, TSVB and XY chart tooltips renders under kibana header
7 participants