-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Revert "Remove percy based visual regression tests (#136359)" This reverts commit a91aeb4. * update codeowners
- Loading branch information
Showing
29 changed files
with
1,430 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import { FtrConfigProviderContext } from '@kbn/test'; | ||
import { services } from './services'; | ||
|
||
export default async function ({ readConfigFile }: FtrConfigProviderContext) { | ||
const functionalConfig = await readConfigFile(require.resolve('../functional/config.base.js')); | ||
|
||
return { | ||
...functionalConfig.getAll(), | ||
|
||
testFiles: [ | ||
require.resolve('./tests/console_app'), | ||
require.resolve('./tests/discover'), | ||
require.resolve('./tests/vega'), | ||
], | ||
|
||
services, | ||
|
||
junit: { | ||
reportName: 'Kibana Visual Regression Tests', | ||
}, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import { GenericFtrProviderContext, GenericFtrService } from '@kbn/test'; | ||
|
||
import { pageObjects } from '../functional/page_objects'; | ||
import { services } from './services'; | ||
|
||
export type FtrProviderContext = GenericFtrProviderContext<typeof services, typeof pageObjects>; | ||
export class FtrService extends GenericFtrService<FtrProviderContext> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import { services as functionalServices } from '../../functional/services'; | ||
import { VisualTestingService } from './visual_testing'; | ||
|
||
export const services = { | ||
...functionalServices, | ||
visualTesting: VisualTestingService, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
export * from './visual_testing'; |
102 changes: 102 additions & 0 deletions
102
test/visual_regression/services/visual_testing/take_percy_snapshot.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
import { readFileSync } from 'fs'; | ||
import { agentJsFilename } from '@percy/agent/dist/utils/sdk-utils'; | ||
|
||
export function takePercySnapshot(show, hide) { | ||
if (!window.PercyAgent) { | ||
return false; | ||
} | ||
|
||
// add percy styles to hide/show specific elements | ||
const styleElement = document.createElement('style'); | ||
styleElement.appendChild( | ||
document.createTextNode(` | ||
.hideInPercy { | ||
visibility: hidden; | ||
.showInPercy { | ||
visibility: visible; | ||
} | ||
} | ||
.showInPercy { | ||
visibility: visible; | ||
.hideInPercy { | ||
visibility: hidden; | ||
} | ||
} | ||
`) | ||
); | ||
document.head.appendChild(styleElement); | ||
|
||
const add = (selectors, className) => { | ||
for (const selector of selectors) { | ||
for (const element of document.querySelectorAll(selector)) { | ||
element.classList.add(className); | ||
} | ||
} | ||
}; | ||
|
||
const remove = (selectors, className) => { | ||
for (const selector of selectors) { | ||
for (const element of document.querySelectorAll(selector)) { | ||
element.classList.remove(className); | ||
} | ||
} | ||
}; | ||
|
||
// set Percy visibility on elements | ||
add(hide, 'hideInPercy'); | ||
if (show.length > 0) { | ||
// hide the body by default | ||
add(['body'], 'hideInPercy'); | ||
add(show, 'showInPercy'); | ||
} | ||
|
||
// convert canvas elements into static images | ||
const replacements = []; | ||
for (const canvas of document.querySelectorAll('canvas')) { | ||
const image = document.createElement('img'); | ||
image.classList.value = canvas.classList.value; | ||
image.src = canvas.toDataURL(); | ||
image.style.cssText = window.getComputedStyle(canvas).cssText; | ||
canvas.parentElement.replaceChild(image, canvas); | ||
replacements.push({ canvas, image }); | ||
} | ||
|
||
try { | ||
const agent = new window.PercyAgent({ | ||
handleAgentCommunication: false, | ||
}); | ||
|
||
// cache the dom snapshot containing the images | ||
return agent.snapshot(document, { | ||
widths: [document.documentElement.clientWidth], | ||
}); | ||
} finally { | ||
// restore replaced canvases | ||
for (const { image, canvas } of replacements) { | ||
image.parentElement.replaceChild(canvas, image); | ||
} | ||
|
||
// restore element visibility | ||
document.head.removeChild(styleElement); | ||
remove(['body'], 'hideInPercy'); | ||
remove(show, 'showInPercy'); | ||
remove(hide, 'hideInPercy'); | ||
} | ||
} | ||
|
||
export const takePercySnapshotWithAgent = ` | ||
${readFileSync(agentJsFilename(), 'utf8')} | ||
return (${takePercySnapshot.toString()}).apply(null, arguments); | ||
`; |
Oops, something went wrong.