@wordpress/env 4.1.2 → 4.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.2.0 (2022-01-27)
6
+
7
+ ### Enhancement
8
+ - Added command `wp-env install-path` to list the directory used for the environment.
9
+ - The help entry is now shown when no subcommand is passed to `wp-env`.
10
+
11
+ ### Bug Fix
12
+ - Updated `yargs` to fix [CVE-2021-3807](https://nvd.nist.gov/vuln/detail/CVE-2021-3807).
13
+
14
+ ## 4.1.3 (2021-11-07)
15
+
16
+ ### Bug Fix
17
+
18
+ - Fix Xdebug installation code to ensure it would fail gracefully
19
+
5
20
  ## 4.0.3 (2021-04-29)
6
21
 
7
22
  ### Bug Fix
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Gutenberg
2
2
 
3
- Copyright 2016-2021 by the contributors
3
+ Copyright 2016-2022 by the contributors
4
4
 
5
5
  **License for Contributions (on and after April 15, 2021)**
6
6
 
package/README.md CHANGED
@@ -400,6 +400,18 @@ Options:
400
400
  --watch Watch for logs as they happen. [boolean] [default: true]
401
401
  ```
402
402
 
403
+ ### `wp-env install-path`
404
+
405
+ Outputs the absolute path to the WordPress environment files.
406
+
407
+ Example:
408
+
409
+ ```sh
410
+ $ wp-env install-path
411
+
412
+ /home/user/.wp-env/63263e6506becb7b8613b02d42280a49
413
+ ```
414
+
403
415
  ## .wp-env.json
404
416
 
405
417
  You can customize the WordPress installation, plugins and themes that the development environment will use by specifying a `.wp-env.json` file in the directory that you run `wp-env` from.
@@ -509,6 +521,8 @@ This is useful for plugin development when upstream Core changes need to be test
509
521
 
510
522
  This is useful for working on plugins and WordPress Core at the same time.
511
523
 
524
+ If you are running a _build_ of `wordpress-develop`, point `core` to the `build` directory.
525
+
512
526
  ```json
513
527
  {
514
528
  "core": "../wordpress-develop/build",
@@ -516,6 +530,15 @@ This is useful for working on plugins and WordPress Core at the same time.
516
530
  }
517
531
  ```
518
532
 
533
+ If you are running `wordpress-develop` in a dev mode (e.g. the watch command `dev` or the dev build `build:dev`), then point `core` to the `src` directory.
534
+
535
+ ```json
536
+ {
537
+ "core": "../wordpress-develop/src",
538
+ "plugins": [ "." ]
539
+ }
540
+ ```
541
+
519
542
  #### A complete testing environment
520
543
 
521
544
  This is useful for integration testing: that is, testing how old versions of WordPress and different combinations of plugins and themes impact each other.
@@ -598,4 +621,10 @@ You can tell `wp-env` to use a specific PHP version for compatibility and testin
598
621
  }
599
622
  ```
600
623
 
601
- <br/><br/><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
624
+ ## Contributing to this package
625
+
626
+ This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to [npm](https://www.npmjs.com/) and used by [WordPress](https://make.wordpress.org/core/) as well as other software projects.
627
+
628
+ To find out more about contributing to this package or Gutenberg as a whole, please read the project's main [contributor guide](https://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.md).
629
+
630
+ <br /><br /><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
package/bin/wp-env CHANGED
@@ -1,3 +1,4 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
- require( '../lib/cli' )().parse( process.argv.slice( 2 ) );
3
+ const command = process.argv.slice( 2 );
4
+ require( '../lib/cli' )().parse( command.length ? command : [ '--help' ] );
package/lib/cli.js CHANGED
@@ -197,6 +197,12 @@ module.exports = function cli() {
197
197
  () => {},
198
198
  withSpinner( env.destroy )
199
199
  );
200
+ yargs.command(
201
+ 'install-path',
202
+ 'Get the path where environment files are located.',
203
+ () => {},
204
+ withSpinner( env.installPath )
205
+ );
200
206
 
201
207
  return yargs;
202
208
  };
@@ -7,6 +7,7 @@ const clean = require( './clean' );
7
7
  const run = require( './run' );
8
8
  const destroy = require( './destroy' );
9
9
  const logs = require( './logs' );
10
+ const installPath = require( './install-path' );
10
11
 
11
12
  module.exports = {
12
13
  start,
@@ -15,4 +16,5 @@ module.exports = {
15
16
  run,
16
17
  destroy,
17
18
  logs,
19
+ installPath,
18
20
  };
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Internal dependencies
3
+ */
4
+ const initConfig = require( '../init-config' );
5
+
6
+ /**
7
+ * Logs the path to where wp-env files are installed.
8
+ *
9
+ * @param {Object} options
10
+ * @param {Object} options.spinner
11
+ * @param {boolean} options.debug
12
+ */
13
+ module.exports = async function installPath( { spinner, debug } ) {
14
+ // Stop the spinner so that stdout is not polluted.
15
+ spinner.stop();
16
+ // initConfig will fail if wp-env start has not yet been called, so that
17
+ // edge case is handled.
18
+ const { workDirectoryPath } = await initConfig( { spinner, debug } );
19
+ console.log( workDirectoryPath );
20
+ };
@@ -174,6 +174,7 @@ module.exports = async function start( { spinner, debug, update, xdebug } ) {
174
174
 
175
175
  const siteUrl = config.env.development.config.WP_SITEURL;
176
176
  const e2eSiteUrl = config.env.tests.config.WP_TESTS_DOMAIN;
177
+
177
178
  const { out: mySQLAddress } = await dockerCompose.port(
178
179
  'mysql',
179
180
  3306,
@@ -181,6 +182,13 @@ module.exports = async function start( { spinner, debug, update, xdebug } ) {
181
182
  );
182
183
  const mySQLPort = mySQLAddress.split( ':' ).pop();
183
184
 
185
+ const { out: testsMySQLAddress } = await dockerCompose.port(
186
+ 'tests-mysql',
187
+ 3306,
188
+ dockerComposeConfig
189
+ );
190
+ const testsMySQLPort = testsMySQLAddress.split( ':' ).pop();
191
+
184
192
  spinner.prefixText = 'WordPress development site started'
185
193
  .concat( siteUrl ? ` at ${ siteUrl }` : '.' )
186
194
  .concat( '\n' )
@@ -188,6 +196,9 @@ module.exports = async function start( { spinner, debug, update, xdebug } ) {
188
196
  .concat( e2eSiteUrl ? ` at ${ e2eSiteUrl }` : '.' )
189
197
  .concat( '\n' )
190
198
  .concat( `MySQL is listening on port ${ mySQLPort }` )
199
+ .concat(
200
+ `MySQL for automated testing is listening on port ${ testsMySQLPort }`
201
+ )
191
202
  .concat( '\n' );
192
203
 
193
204
  spinner.text = 'Done!';
@@ -1,4 +1,4 @@
1
- /* eslint-disable jest/no-try-expect, jest/no-conditional-expect */
1
+ /* eslint-disable jest/no-conditional-expect */
2
2
  /**
3
3
  * External dependencies
4
4
  */
@@ -1128,4 +1128,4 @@ async function testPortNumberValidation( portName, value, envText = '' ) {
1128
1128
  }
1129
1129
  jest.clearAllMocks();
1130
1130
  }
1131
- /* eslint-enable jest/no-try-expect, jest/no-conditional-expect */
1131
+ /* eslint-enable jest/no-conditional-expect */
@@ -98,6 +98,41 @@ module.exports = async function initConfig( {
98
98
  return config;
99
99
  };
100
100
 
101
+ /**
102
+ * Checks the configured PHP version
103
+ * against the minimum version supported by Xdebug
104
+ *
105
+ * @param {WPConfig} config
106
+ * @return {boolean} Whether the PHP version is supported by Xdebug
107
+ */
108
+ function checkXdebugPhpCompatibility( config ) {
109
+ // By default, an undefined phpVersion uses the version on the docker image,
110
+ // which is supported by Xdebug 3.
111
+ const phpCompatibility = true;
112
+
113
+ // If PHP version is defined
114
+ // ensure it meets the Xdebug minimum compatibility requirment
115
+ if ( config.env.development.phpVersion ) {
116
+ const versionTokens = config.env.development.phpVersion.split( '.' );
117
+ const majorVer = parseInt( versionTokens[ 0 ] );
118
+ const minorVer = parseInt( versionTokens[ 1 ] );
119
+
120
+ if ( isNaN( majorVer ) || isNaN( minorVer ) ) {
121
+ throw new Error(
122
+ 'Something went wrong when parsing the PHP version.'
123
+ );
124
+ }
125
+
126
+ // Xdebug 3 supports 7.2 and higher
127
+ // Ensure user has specified a compatible PHP version
128
+ if ( majorVer < 7 || ( majorVer === 7 && minorVer < 2 ) ) {
129
+ throw new Error( 'Cannot use XDebug 3 on PHP < 7.2.' );
130
+ }
131
+ }
132
+
133
+ return phpCompatibility;
134
+ }
135
+
101
136
  /**
102
137
  * Generates the Dockerfile used by wp-env's development instance.
103
138
  *
@@ -107,20 +142,14 @@ module.exports = async function initConfig( {
107
142
  * @return {string} The dockerfile contents.
108
143
  */
109
144
  function dockerFileContents( image, config ) {
110
- let shouldInstallXdebug = true;
111
- // By default, an undefined phpVersion uses the version on the docker image,
112
- // which is supported by Xdebug 3.
113
- if ( config.env.development.phpVersion ) {
114
- const versionTokens = config.env.development.phpVersion.split( '.' );
115
- const majorVersion = parseInt( versionTokens[ 0 ] );
116
- const minorVersion = parseInt( versionTokens[ 1 ] );
117
- if ( isNaN( majorVersion ) || isNaN( minorVersion ) ) {
118
- throw new Error( 'Something went wrong parsing the php version.' );
119
- }
145
+ // Don't install XDebug unless it is explicitly required
146
+ let shouldInstallXdebug = false;
147
+
148
+ if ( config.xdebug !== 'off' ) {
149
+ const usingCompatiblePhp = checkXdebugPhpCompatibility( config );
120
150
 
121
- // Disable Xdebug for PHP < 7.2. Xdebug 3 supports 7.2 and higher.
122
- if ( majorVersion < 7 || ( majorVersion === 7 && minorVersion < 2 ) ) {
123
- shouldInstallXdebug = false;
151
+ if ( usingCompatiblePhp ) {
152
+ shouldInstallXdebug = true;
124
153
  }
125
154
  }
126
155
 
@@ -140,7 +169,8 @@ function installXdebug( enableXdebug ) {
140
169
 
141
170
  return `
142
171
  # Install Xdebug:
143
- RUN pecl install xdebug && docker-php-ext-enable xdebug
172
+ RUN if [ -z "$(pecl list | grep xdebug)" ] ; then pecl install xdebug ; fi
173
+ RUN docker-php-ext-enable xdebug
144
174
  RUN echo 'xdebug.start_with_request=yes' >> /usr/local/etc/php/php.ini
145
175
  RUN echo 'xdebug.mode=${ enableXdebug }' >> /usr/local/etc/php/php.ini
146
176
  RUN echo '${ clientDetectSettings }' >> /usr/local/etc/php/php.ini
@@ -4,28 +4,29 @@ const XDEBUG_MODES = [
4
4
  'coverage',
5
5
  'debug',
6
6
  'gcstats',
7
+ 'off',
7
8
  'profile',
8
9
  'trace',
9
10
  ];
10
11
 
11
12
  /**
12
- * Custom parsing for the Xdebug mode set via yargs. This function ensures two things:
13
- * 1. If the --xdebug flag was set by itself, default to 'debug'.
14
- * 2. If the --xdebug flag includes modes, make sure they are accepted by Xdebug.
13
+ * Custom parsing for the Xdebug mode set via yargs. This function ensures three things:
14
+ * 1. If the --xdebug flag was not set, set it to 'off'.
15
+ * 2. If the --xdebug flag was set by itself, default to 'debug'.
16
+ * 3. If the --xdebug flag includes modes, make sure they are accepted by Xdebug.
15
17
  *
16
- * Note: ideally, we would also have this handle the case where no xdebug flag
17
- * is set (and then turn Xdebug off). However, yargs does not pass 'undefined'
18
- * to the coerce callback, so we cannot handle that case here.
19
- *
20
- * @param {string} value The user-set mode of Xdebug
18
+ * @param {string|undefined} value The user-set mode of Xdebug; undefined if there is no --xdebug flag.
21
19
  * @return {string} The Xdebug mode to use with defaults applied.
22
20
  */
23
21
  module.exports = function parseXdebugMode( value ) {
22
+ if ( value === undefined ) {
23
+ return 'off';
24
+ }
24
25
  if ( typeof value !== 'string' ) {
25
26
  throwXdebugModeError( value );
26
27
  }
27
28
 
28
- if ( value.length === 0 ) {
29
+ if ( value.length === 0 || value === 'undefined' ) {
29
30
  return 'debug';
30
31
  }
31
32
 
package/lib/wordpress.js CHANGED
@@ -42,7 +42,20 @@ async function checkDatabaseConnection( { dockerComposeConfigPath, debug } ) {
42
42
  * @param {Object} spinner A CLI spinner which indicates progress.
43
43
  */
44
44
  async function configureWordPress( environment, config, spinner ) {
45
- const installCommand = `wp core install --url="localhost:${ config.env[ environment ].port }" --title="${ config.name }" --admin_user=admin --admin_password=password --admin_email=wordpress@example.com --skip-email`;
45
+ const url = ( () => {
46
+ const port = config.env[ environment ].port;
47
+ const domain =
48
+ environment === 'tests'
49
+ ? config.env.tests.config.WP_TESTS_DOMAIN
50
+ : config.env.development.config.WP_SITEURL;
51
+ if ( port === 80 ) {
52
+ return domain;
53
+ }
54
+
55
+ return `${ domain }:${ port }`;
56
+ } )();
57
+
58
+ const installCommand = `wp core install --url="${ url }" --title="${ config.name }" --admin_user=admin --admin_password=password --admin_email=wordpress@example.com --skip-email`;
46
59
 
47
60
  // -eo pipefail exits the command as soon as anything fails in bash.
48
61
  const setupCommands = [ 'set -eo pipefail', installCommand ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/env",
3
- "version": "4.1.2",
3
+ "version": "4.2.1",
4
4
  "description": "A zero-config, self contained local WordPress environment for development and testing.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -43,7 +43,7 @@
43
43
  "rimraf": "^3.0.2",
44
44
  "simple-git": "^2.35.0",
45
45
  "terminal-link": "^2.0.0",
46
- "yargs": "^14.0.0"
46
+ "yargs": "^17.3.0"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"
@@ -51,5 +51,5 @@
51
51
  "scripts": {
52
52
  "test": "echo \"Error: run tests from root\" && exit 1"
53
53
  },
54
- "gitHead": "8f7f052bc04e3f4eb50f479ced14be1489b9fa79"
54
+ "gitHead": "2e4922861e49f5a090f9dc52056165092cfba163"
55
55
  }