Move /e2e -> /e2e-tests
Этот коммит содержится в:
167
e2e-tests/cypress/utils/dashboard.js
Обычный файл
167
e2e-tests/cypress/utils/dashboard.js
Обычный файл
@@ -0,0 +1,167 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
/* eslint-disable no-console */
|
||||
|
||||
/*
|
||||
* Environment:
|
||||
* AUTOMATION_DASHBOARD_URL=[url]
|
||||
* AUTOMATION_DASHBOARD_TOKEN=[token]
|
||||
*/
|
||||
|
||||
const fs = require('fs');
|
||||
|
||||
const readFile = require('util').promisify(fs.readFile);
|
||||
|
||||
const axios = require('axios');
|
||||
const axiosRetry = require('axios-retry');
|
||||
const chalk = require('chalk');
|
||||
const mime = require('mime-types');
|
||||
|
||||
require('dotenv').config();
|
||||
|
||||
const maxRetry = 5;
|
||||
const timeout = 60 * 1000;
|
||||
|
||||
axiosRetry(axios, {
|
||||
retries: maxRetry,
|
||||
retryDelay: axiosRetry.exponentialDelay,
|
||||
});
|
||||
|
||||
const {
|
||||
AUTOMATION_DASHBOARD_URL,
|
||||
AUTOMATION_DASHBOARD_TOKEN,
|
||||
} = process.env;
|
||||
|
||||
const connectionErrors = ['ECONNABORTED', 'ECONNREFUSED'];
|
||||
|
||||
async function createAndStartCycle(data) {
|
||||
const response = await axios({
|
||||
url: `${AUTOMATION_DASHBOARD_URL}/cycles/start`,
|
||||
headers: {
|
||||
Authorization: `Bearer ${AUTOMATION_DASHBOARD_TOKEN}`,
|
||||
},
|
||||
method: 'post',
|
||||
timeout,
|
||||
data,
|
||||
});
|
||||
|
||||
return response.data;
|
||||
}
|
||||
|
||||
async function getSpecToTest({repo, branch, build, server}) {
|
||||
try {
|
||||
const response = await axios({
|
||||
url: `${AUTOMATION_DASHBOARD_URL}/executions/specs/start?repo=${repo}&branch=${branch}&build=${build}`,
|
||||
headers: {
|
||||
Authorization: `Bearer ${AUTOMATION_DASHBOARD_TOKEN}`,
|
||||
},
|
||||
method: 'post',
|
||||
timeout,
|
||||
data: {server},
|
||||
});
|
||||
|
||||
return response.data;
|
||||
} catch (err) {
|
||||
console.log(chalk.red('Failed to get spec to test'));
|
||||
if (connectionErrors.includes(err.code) || !err.response) {
|
||||
console.log(chalk.red(`Error code: ${err.code}`));
|
||||
return {code: err.code};
|
||||
}
|
||||
|
||||
return err.response && err.response.data;
|
||||
}
|
||||
}
|
||||
|
||||
async function recordSpecResult(specId, spec, tests) {
|
||||
try {
|
||||
const response = await axios({
|
||||
url: `${AUTOMATION_DASHBOARD_URL}/executions/specs/end?id=${specId}`,
|
||||
headers: {
|
||||
Authorization: `Bearer ${AUTOMATION_DASHBOARD_TOKEN}`,
|
||||
},
|
||||
method: 'post',
|
||||
timeout,
|
||||
data: {spec, tests},
|
||||
});
|
||||
|
||||
console.log(chalk.green('Successfully recorded!'));
|
||||
return response.data;
|
||||
} catch (err) {
|
||||
console.log(chalk.red('Failed to record spec result'));
|
||||
if (connectionErrors.includes(err.code) || !err.response) {
|
||||
console.log(chalk.red(`Error code: ${err.code}`));
|
||||
return {code: err.code};
|
||||
}
|
||||
|
||||
return err.response && err.response.data;
|
||||
}
|
||||
}
|
||||
|
||||
async function updateCycle(id, cyclePatch) {
|
||||
try {
|
||||
const response = await axios({
|
||||
url: `${AUTOMATION_DASHBOARD_URL}/cycles/${id}`,
|
||||
headers: {
|
||||
Authorization: `Bearer ${AUTOMATION_DASHBOARD_TOKEN}`,
|
||||
},
|
||||
method: 'put',
|
||||
timeout,
|
||||
data: cyclePatch,
|
||||
});
|
||||
|
||||
console.log(chalk.green('Successfully updated the cycle with test environment data!'));
|
||||
return response.data;
|
||||
} catch (err) {
|
||||
console.log(chalk.red('Failed to update cycle'));
|
||||
if (connectionErrors.includes(err.code) || !err.response) {
|
||||
console.log(chalk.red(`Error code: ${err.code}`));
|
||||
return {code: err.code};
|
||||
}
|
||||
|
||||
return err.response && err.response.data;
|
||||
}
|
||||
}
|
||||
|
||||
async function uploadScreenshot(filePath, repo, branch, build) {
|
||||
try {
|
||||
const contentType = mime.lookup(filePath);
|
||||
const extension = mime.extension(contentType);
|
||||
|
||||
const {data} = await axios({
|
||||
url: `${AUTOMATION_DASHBOARD_URL}/upload-request`,
|
||||
headers: {
|
||||
Authorization: `Bearer ${AUTOMATION_DASHBOARD_TOKEN}`,
|
||||
},
|
||||
method: 'get',
|
||||
timeout,
|
||||
data: {repo, branch, build, extension},
|
||||
});
|
||||
|
||||
const file = await readFile(filePath);
|
||||
|
||||
await axios({
|
||||
url: data.upload_url,
|
||||
method: 'put',
|
||||
headers: {'Content-Type': contentType},
|
||||
data: file,
|
||||
});
|
||||
|
||||
return data.object_url;
|
||||
} catch (err) {
|
||||
if (connectionErrors.includes(err.code) || !err.response) {
|
||||
console.log(chalk.red(`Error code: ${err.code}`));
|
||||
return {code: err.code};
|
||||
}
|
||||
|
||||
return {error: 'Failed to upload a screenshot.'};
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
createAndStartCycle,
|
||||
getSpecToTest,
|
||||
recordSpecResult,
|
||||
updateCycle,
|
||||
uploadScreenshot,
|
||||
};
|
||||
Ссылка в новой задаче
Block a user