mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-17 04:29:57 -06:00
* migrate cli scripts to TypeScript * convert all javascript source files in the CLI to TypeScript rebase into first * chore: refactor all tests to TypeScript rebase into second * add npmignore for cli for typescript files * update build process * fix publically available exports * Fix cy-in-cy tests * add ts-expect-error to failing files * fix projectConfigIpc failures as there are now multiple installs of tsx * fix after-pack hook * fix binary script * chore: update publish binary to account for CLI being an ESModule compiled down to CommonJS * does this work? * fix the verify spec by making the listr2 renderer silent as it behaves differently since the refactor and is printing non deterministic outputs into our tests that do not have a large impact on the area we are testing and mostly served to actually test the renders of the listr2 framework itself * empty commit * additional refactor to code to remove strange any typing and exporting * bump cache and build binaries * fix CLI exports to keep backwards compatibility * fix unit-tests * turn on mac jobs * fix group name rename in CLI * remove babel deps from cli and explicitly install typescript * address feedback from code review * dont just falsy check results and instead explicitly check for null or undefined * add ts-expect-error * additional pass on cleaning up dynamic require / import from global lib references * annotate ts-expect-errors with reason for why error is expected * add rest of ts-expect-error comments * removing hardcoded branch to publish binary chore/migrate_cli_to_typescript
110 lines
3.0 KiB
TypeScript
110 lines
3.0 KiB
TypeScript
/* eslint-disable no-console */
|
|
import spawn from './spawn'
|
|
import util from '../util'
|
|
import state from '../tasks/state'
|
|
import os from 'os'
|
|
import chalk from 'chalk'
|
|
import prettyBytes from 'pretty-bytes'
|
|
import _ from 'lodash'
|
|
|
|
// color for numbers and show values
|
|
const g = chalk.green
|
|
// color for paths
|
|
const p = chalk.cyan
|
|
const red = chalk.red
|
|
// urls
|
|
const link = chalk.blue.underline
|
|
|
|
// to be exported
|
|
const methods: any = {}
|
|
|
|
methods.findProxyEnvironmentVariables = (): any => {
|
|
return _.pick(process.env, ['HTTP_PROXY', 'HTTPS_PROXY', 'NO_PROXY'])
|
|
}
|
|
|
|
const maskSensitiveVariables = (obj: any): any => {
|
|
const masked = { ...obj }
|
|
|
|
if (masked.CYPRESS_RECORD_KEY) {
|
|
masked.CYPRESS_RECORD_KEY = '<redacted>'
|
|
}
|
|
|
|
return masked
|
|
}
|
|
|
|
methods.findCypressEnvironmentVariables = (): any => {
|
|
const isCyVariable = (val: any, key: string): boolean => key.startsWith('CYPRESS_')
|
|
|
|
return _.pickBy(process.env, isCyVariable)
|
|
}
|
|
|
|
const formatCypressVariables = (): any => {
|
|
const vars = methods.findCypressEnvironmentVariables()
|
|
|
|
return maskSensitiveVariables(vars)
|
|
}
|
|
|
|
methods.start = async (options: any = {}): Promise<void> => {
|
|
const args = ['--mode=info']
|
|
|
|
await spawn.start(args, {
|
|
dev: options.dev,
|
|
})
|
|
|
|
console.log()
|
|
const proxyVars = methods.findProxyEnvironmentVariables()
|
|
|
|
if (_.isEmpty(proxyVars)) {
|
|
console.log('Proxy Settings: none detected')
|
|
} else {
|
|
console.log('Proxy Settings:')
|
|
_.forEach(proxyVars, (value: any, key: string) => {
|
|
console.log('%s: %s', key, g(value))
|
|
})
|
|
|
|
console.log()
|
|
console.log('Learn More: %s', link('https://on.cypress.io/proxy-configuration'))
|
|
console.log()
|
|
}
|
|
|
|
const cyVars = formatCypressVariables()
|
|
|
|
if (_.isEmpty(cyVars)) {
|
|
console.log('Environment Variables: none detected')
|
|
} else {
|
|
console.log('Environment Variables:')
|
|
_.forEach(cyVars, (value: any, key: string) => {
|
|
console.log('%s: %s', key, g(value))
|
|
})
|
|
}
|
|
|
|
console.log()
|
|
console.log('Application Data:', p(util.getApplicationDataFolder()))
|
|
console.log('Browser Profiles:', p(util.getApplicationDataFolder('browsers')))
|
|
console.log('Binary Caches: %s', p(state.getCacheDir()))
|
|
|
|
console.log()
|
|
|
|
const osVersion = await util.getOsVersionAsync()
|
|
const buildInfo = util.pkgBuildInfo()
|
|
const isStable = buildInfo && buildInfo.stable
|
|
|
|
console.log('Cypress Version: %s', g(util.pkgVersion()), isStable ? g('(stable)') : red('(pre-release)'))
|
|
console.log('System Platform: %s (%s)', g(os.platform()), g(osVersion))
|
|
console.log('System Memory: %s free %s', g(prettyBytes(os.totalmem())), g(prettyBytes(os.freemem())))
|
|
|
|
if (!buildInfo) {
|
|
console.log()
|
|
console.log('This is the', red('development'), '(un-built) Cypress CLI.')
|
|
} else if (!isStable) {
|
|
console.log()
|
|
console.log('This is a', red('pre-release'), 'build of Cypress.')
|
|
console.log('Build info:')
|
|
console.log(' Commit SHA:', g(buildInfo.commitSha))
|
|
console.log(' Commit Branch:', g(buildInfo.commitBranch))
|
|
console.log(' Commit Date:', g(buildInfo.commitDate))
|
|
}
|
|
}
|
|
|
|
export default methods
|