Files
vercel/test/lib/deployment/now-deploy.js
Trek Glowacki 866d0c173d [tests] remove unused opts.skipTeam (#11650)
I can't find this being used anywhere.
2024-05-23 15:25:04 -05:00

311 lines
7.8 KiB
JavaScript

// bust cache
const assert = require('assert');
const { createHash } = require('crypto');
const path = require('path');
const _fetch = require('node-fetch');
const fetch = require('./fetch-retry');
const fileModeSymbol = Symbol('fileMode');
const { logWithinTest } = require('./log');
const ms = require('ms');
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms));
async function nowDeploy(projectName, bodies, randomness, uploadNowJson, opts) {
const files = Object.keys(bodies)
.filter(n =>
uploadNowJson
? true
: n !== 'vercel.json' &&
n !== 'now.json' &&
!n.includes('node_modules/') &&
!n.includes('.git/') &&
!n.includes('.next/')
)
.map(n => ({
sha: digestOfFile(bodies[n]),
size: bodies[n].length,
file: n,
mode:
bodies[n][fileModeSymbol] ||
(path.extname(n) === '.sh' ? 0o100755 : 0o100644),
}));
const { FORCE_BUILD_IN_REGION, VERCEL_DEBUG, VERCEL_CLI_VERSION } =
process.env;
const nowJson = JSON.parse(
bodies['vercel.json'] || bodies['now.json'] || '{}'
);
delete nowJson.probes;
const nowDeployPayload = {
version: 2,
public: true,
name: projectName,
files,
meta: {},
...nowJson,
projectSettings: {
...nowJson.projectSettings,
...opts.projectSettings,
},
env: { ...nowJson.env, RANDOMNESS_ENV_VAR: randomness },
build: {
env: {
...(nowJson.build || {}).env,
RANDOMNESS_BUILD_ENV_VAR: randomness,
FORCE_BUILD_IN_REGION,
VERCEL_DEBUG,
VERCEL_CLI_VERSION,
NEXT_TELEMETRY_DISABLED: '1',
},
},
};
logWithinTest(`posting ${files.length} files`);
for (const { file: filename } of files) {
await filePost(bodies[filename], digestOfFile(bodies[filename]));
}
let deploymentId;
let deploymentUrl;
{
const json = await deploymentPost(nowDeployPayload, opts);
if (json.error && json.error.code === 'missing_files')
throw new Error('Missing files');
deploymentId = json.id;
deploymentUrl = json.url;
}
logWithinTest('id', deploymentId);
for (let i = 0; i < 750; i += 1) {
const deployment = await deploymentGet(deploymentId);
const { readyState } = deployment;
if (readyState === 'ERROR') {
logWithinTest('state is ERROR, throwing');
const error = new Error(
`State of https://${deploymentUrl} is ERROR: ${deployment.errorMessage}`
);
error.deployment = deployment;
throw error;
}
if (readyState === 'READY') {
logWithinTest(`State of https://${deploymentUrl} is READY, moving on`);
break;
}
if (i % 25 === 0) {
logWithinTest(
`State of https://${deploymentUrl} is ${readyState}, retry number ${i}`
);
}
await new Promise(r => setTimeout(r, 1000));
}
return { deploymentId, deploymentUrl };
}
function digestOfFile(body) {
return createHash('sha1').update(body).digest('hex');
}
async function filePost(body, digest) {
assert(Buffer.isBuffer(body));
const headers = {
'Content-Type': 'application/octet-stream',
'Content-Length': body.length,
'x-now-digest': digest,
'x-now-size': body.length,
};
const url = '/v2/now/files';
const resp = await fetchWithAuth(url, {
method: 'POST',
headers,
body,
timeout: ms('30s'),
});
const json = await resp.json();
if (json.error) {
const { status, statusText, headers } = resp;
const { message } = json.error;
logWithinTest('Fetch Error', { url, status, statusText, headers, digest });
throw new Error(message);
}
return json;
}
async function deploymentPost(payload, opts = {}) {
const url = `/v13/deployments?skipAutoDetectionConfirmation=1${
// skipForceNew allows turbo cache to be leveraged
!opts.skipForceNew ? `&forceNew=1` : ''
}`;
const resp = await fetchWithAuth(url, {
method: 'POST',
body: JSON.stringify(payload),
});
const json = await resp.json();
if (json.error) {
const { status, statusText, headers } = resp;
const { message } = json.error;
logWithinTest('Fetch Error', { url, status, statusText, headers });
throw new Error(message);
}
return json;
}
async function deploymentGet(deploymentId) {
const url = `/v13/deployments/${deploymentId}`;
const resp = await fetchWithAuth(url);
const json = await resp.json();
if (json.error) {
const { status, statusText, headers } = resp;
const { message } = json.error;
logWithinTest('Fetch Error', { url, status, statusText, headers, message });
throw new Error(message);
}
return json;
}
let token;
let tokenCreated = 0;
// temporary tokens last for 25 minutes
const MAX_TOKEN_AGE = 25 * 60 * 1000;
async function fetchWithAuth(url, opts = {}) {
if (!opts.headers) opts.headers = {};
if (!opts.headers.Authorization) {
opts.headers.Authorization = `Bearer ${await fetchCachedToken()}`;
}
const { VERCEL_TEAM_ID } = process.env;
if (VERCEL_TEAM_ID) {
url += `${url.includes('?') ? '&' : '?'}teamId=${VERCEL_TEAM_ID}`;
}
return await fetchApi(url, opts);
}
/**
* @returns { Promise<String> }
*/
async function fetchCachedToken() {
if (!token || tokenCreated < Date.now() - MAX_TOKEN_AGE) {
return fetchTokenWithRetry();
}
return token;
}
/**
* @returns { Promise<String> }
*/
async function fetchTokenWithRetry(retries = 5) {
const {
NOW_TOKEN,
TEMP_TOKEN,
VERCEL_TOKEN,
VERCEL_TEST_TOKEN,
VERCEL_TEST_REGISTRATION_URL,
} = process.env;
if (VERCEL_TOKEN || NOW_TOKEN || TEMP_TOKEN) {
if (!TEMP_TOKEN) {
logWithinTest(
'Your personal token will be used to make test deployments.'
);
}
return VERCEL_TOKEN || NOW_TOKEN || TEMP_TOKEN;
}
if (!VERCEL_TEST_TOKEN || !VERCEL_TEST_REGISTRATION_URL) {
throw new Error(
process.env.CI
? 'Failed to create test deployment. This is expected for 3rd-party Pull Requests. Please run tests locally.'
: 'Failed to create test deployment. Please set `VERCEL_TOKEN` environment variable and run again.'
);
}
try {
const res = await _fetch(VERCEL_TEST_REGISTRATION_URL, {
method: 'POST',
headers: {
Authorization: `Bearer ${VERCEL_TEST_TOKEN}`,
},
});
if (!res.ok) {
const text = await res.text();
throw new Error(
`Unexpected status (${res.status}) from registration: ${text}`
);
}
const data = await res.json();
if (!data) {
throw new Error(`Unexpected response from registration: no body`);
}
if (!data.token) {
const text = JSON.stringify(data);
throw new Error(`Unexpected response from registration: ${text}`);
}
// Cache the token to be returned via `fetchCachedToken`
token = data.token;
tokenCreated = Date.now();
return data.token;
} catch (error) {
logWithinTest(
`Failed to fetch token. Retries remaining: ${retries}`,
error.message
);
if (retries === 0) {
logWithinTest(error);
throw error;
}
await sleep(500);
return fetchTokenWithRetry(retries - 1);
}
}
async function fetchApi(url, opts = {}) {
const { method = 'GET', body } = opts;
const apiHost = process.env.API_HOST || 'api.vercel.com';
const urlWithHost = url.startsWith('https://')
? url
: `https://${apiHost}${url}`;
if (process.env.VERBOSE) {
logWithinTest('fetch', method, url);
if (body) logWithinTest(encodeURIComponent(body).slice(0, 80));
}
if (!opts.headers) opts.headers = {};
if (!opts.headers.Accept) {
opts.headers.Accept = 'application/json';
}
if (typeof opts.timeout === 'undefined') {
opts.timeout = ms('30s');
}
opts.headers['x-now-trace-priority'] = '1';
return await fetch(urlWithHost, opts);
}
module.exports = {
fetchApi,
fetchWithAuth,
nowDeploy,
fetchCachedToken,
fetchTokenWithRetry,
fileModeSymbol,
};