mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 00:37:04 -06:00
0f2f25c5d9
* update drone to use cypress 12 image * upgrade cypress to 12 in core * cypress config actually valid * update @grafana/e2e imports and add lint rule * ignore grafana-e2e from betterer now it's deprecated * fix remaining type errors * fix failing tests * remove unnecessary tsconfig * remove unnecessary comment * update enterprise suite commands to work * add cypress config to CODEOWNERS * export setTimeRange in utils * remove @grafana/e2e from core deps * try running the command through yarn * move CMD to scripts * Update cloud-data-sources e2e image * Update paths --------- Co-authored-by: Andreas Christou <andreas.christou@grafana.com>
91 lines
2.4 KiB
JavaScript
91 lines
2.4 KiB
JavaScript
const fs = require('fs');
|
|
const { fromPairs } = require('lodash');
|
|
|
|
const { CDPDataCollector } = require('./CDPDataCollector');
|
|
const { formatResults } = require('./formatting');
|
|
|
|
const remoteDebuggingPortOptionPrefix = '--remote-debugging-port=';
|
|
|
|
const getOrAddRemoteDebuggingPort = (args) => {
|
|
const existing = args.find((arg) => arg.startsWith(remoteDebuggingPortOptionPrefix));
|
|
|
|
if (existing) {
|
|
return Number(existing.substring(remoteDebuggingPortOptionPrefix.length));
|
|
}
|
|
|
|
const port = 40000 + Math.round(Math.random() * 25000);
|
|
args.push(`${remoteDebuggingPortOptionPrefix}${port}`);
|
|
return port;
|
|
};
|
|
|
|
let collectors = [];
|
|
let results = [];
|
|
|
|
const startBenchmarking = async ({ testName }) => {
|
|
await Promise.all(collectors.map((coll) => coll.start({ id: testName })));
|
|
|
|
return true;
|
|
};
|
|
|
|
const stopBenchmarking = async ({ testName, appStats }) => {
|
|
const data = await Promise.all(collectors.map(async (coll) => [coll.getName(), await coll.stop({ id: testName })]));
|
|
|
|
results.push({
|
|
collectorsData: fromPairs(data),
|
|
appStats: appStats,
|
|
});
|
|
|
|
return true;
|
|
};
|
|
const afterRun = async () => {
|
|
await Promise.all(collectors.map((coll) => coll.close()));
|
|
collectors = [];
|
|
results = [];
|
|
};
|
|
|
|
const afterSpec = (resultsFolder) => async (spec) => {
|
|
fs.writeFileSync(`${resultsFolder}/${spec.name}-${Date.now()}.json`, JSON.stringify(formatResults(results), null, 2));
|
|
|
|
results = [];
|
|
};
|
|
|
|
const initialize = (on, config) => {
|
|
const resultsFolder = config.env['BENCHMARK_PLUGIN_RESULTS_FOLDER'];
|
|
|
|
if (!fs.existsSync(resultsFolder)) {
|
|
fs.mkdirSync(resultsFolder, { recursive: true });
|
|
console.log(`Created folder for benchmark results ${resultsFolder}`);
|
|
}
|
|
|
|
on('before:browser:launch', async (browser, options) => {
|
|
if (browser.family !== 'chromium' || browser.name === 'electron') {
|
|
throw new Error('benchmarking plugin requires chrome');
|
|
}
|
|
|
|
const { args } = options;
|
|
|
|
const port = getOrAddRemoteDebuggingPort(args);
|
|
collectors.push(new CDPDataCollector({ port }));
|
|
|
|
args.push('--start-fullscreen');
|
|
|
|
console.log(
|
|
`initialized benchmarking plugin with ${collectors.length} collectors: ${collectors
|
|
.map((col) => col.getName())
|
|
.join(', ')}`
|
|
);
|
|
|
|
return options;
|
|
});
|
|
|
|
on('task', {
|
|
startBenchmarking,
|
|
stopBenchmarking,
|
|
});
|
|
|
|
on('after:run', afterRun);
|
|
on('after:spec', afterSpec(resultsFolder));
|
|
};
|
|
|
|
exports.initialize = initialize;
|