HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/local/wp/features/skip-plugins.feature
Feature: Skipping plugins

  Scenario: Skipping plugins via global flag
    Given a WP installation
    And I run `wp plugin activate hello akismet`

    When I run `wp eval 'var_export( defined("AKISMET_VERSION") );var_export( function_exists( "hello_dolly" ) );'`
    Then STDOUT should be:
      """
      truetrue
      """

    # The specified plugin should be skipped
    When I run `wp --skip-plugins=akismet eval 'var_export( defined("AKISMET_VERSION") );'`
    Then STDOUT should be:
      """
      false
      """

    # The specified plugin should still show up as an active plugin
    When I run `wp --skip-plugins=akismet plugin status akismet`
    Then STDOUT should contain:
      """
      Status: Active
      """

    # The un-specified plugin should continue to be loaded
    When I run `wp --skip-plugins=akismet eval 'var_export( defined("AKISMET_VERSION") );var_export( function_exists( "hello_dolly" ) );'`
    Then STDOUT should be:
      """
      falsetrue
      """

    # Can specify multiple plugins to skip
    When I try `wp eval --skip-plugins=hello,akismet 'echo hello_dolly();'`
    Then STDERR should contain:
      """
      Call to undefined function hello_dolly()
      """

    # No plugins should be loaded when --skip-plugins doesn't have a value
    When I run `wp --skip-plugins eval 'var_export( defined("AKISMET_VERSION") );var_export( function_exists( "hello_dolly" ) );'`
    Then STDOUT should be:
      """
      falsefalse
      """

  Scenario: Skipping multiple plugins via config file
    Given a WP installation
    And a wp-cli.yml file:
      """
      skip-plugins:
        - hello
        - akismet
      """

    When I run `wp plugin activate hello`
    And I try `wp eval 'echo hello_dolly();'`
    Then STDERR should contain:
      """
      Call to undefined function hello_dolly()
      """

  Scenario: Skipping all plugins via config file
    Given a WP installation
    And a wp-cli.yml file:
      """
      skip-plugins: true
      """

    When I run `wp plugin activate hello`
    And I try `wp eval 'echo hello_dolly();'`
    Then STDERR should contain:
      """
      Call to undefined function hello_dolly()
      """

  Scenario: Skip network active plugins
    Given a WP multisite installation

    When I try `wp plugin deactivate akismet hello`
    Then STDERR should be:
      """
      Warning: Plugin 'akismet' isn't active.
      Warning: Plugin 'hello' isn't active.
      """
    And STDOUT should be:
      """
      Success: Plugins already deactivated.
      """
    And the return code should be 0

    When I run `wp plugin activate --network akismet hello`
    And I run `wp eval 'var_export( defined("AKISMET_VERSION") );var_export( function_exists( "hello_dolly" ) );'`
    Then STDOUT should be:
      """
      truetrue
      """

    When I run `wp --skip-plugins eval 'var_export( defined("AKISMET_VERSION") );var_export( function_exists( "hello_dolly" ) );'`
    Then STDOUT should be:
      """
      falsefalse
      """

    When I run `wp --skip-plugins=akismet eval 'var_export( defined("AKISMET_VERSION") );var_export( function_exists( "hello_dolly" ) );'`
    Then STDOUT should be:
      """
      falsetrue
      """

    When I run `wp --skip-plugins=hello eval 'var_export( defined("AKISMET_VERSION") );var_export( function_exists( "hello_dolly" ) );'`
    Then STDOUT should be:
      """
      truefalse
      """