File size: 3,095 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
"use strict";

/* eslint-disable no-console */
const spawn = require('./spawn');
const util = require('../util');
const state = require('../tasks/state');
const os = require('os');
const chalk = require('chalk');
const prettyBytes = require('pretty-bytes');
const _ = require('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 = {};
methods.findProxyEnvironmentVariables = () => {
  return _.pick(process.env, ['HTTP_PROXY', 'HTTPS_PROXY', 'NO_PROXY']);
};
const maskSensitiveVariables = obj => {
  const masked = {
    ...obj
  };
  if (masked.CYPRESS_RECORD_KEY) {
    masked.CYPRESS_RECORD_KEY = '<redacted>';
  }
  return masked;
};
methods.findCypressEnvironmentVariables = () => {
  const isCyVariable = (val, key) => key.startsWith('CYPRESS_');
  return _.pickBy(process.env, isCyVariable);
};
const formatCypressVariables = () => {
  const vars = methods.findCypressEnvironmentVariables();
  return maskSensitiveVariables(vars);
};
methods.start = async (options = {}) => {
  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, key) => {
      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, key) => {
      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));
  }
};
module.exports = methods;