| Server IP : 173.236.223.38 / Your IP : 216.73.216.33 Web Server : Apache System : Linux vps62975 6.8.0-83-generic #83~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Sep 9 18:19:47 UTC 2 x86_64 User : invmicvps ( 6727287) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/wp/features/ |
Upload File : |
Feature: `wp cli completions` tasks
Scenario: Bash Completion without wp-cli.yml
Given an empty directory
When I run `wp cli completions --line="wp " --point=100`
Then STDOUT should contain:
"""
config
"""
And STDOUT should contain:
"""
core
"""
And STDOUT should contain:
"""
eval
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp co" --point=100`
Then STDOUT should contain:
"""
config
"""
And STDOUT should contain:
"""
core
"""
And STDOUT should not contain:
"""
eval
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp core " --point=100`
Then STDOUT should contain:
"""
install
"""
And STDOUT should contain:
"""
update
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp help " --point=100`
Then STDOUT should contain:
"""
config
"""
And STDOUT should contain:
"""
core
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp help core " --point=100`
Then STDOUT should contain:
"""
install
"""
And STDOUT should contain:
"""
update
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp core" --point=100`
Then STDOUT should contain:
"""
core
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp core " --point=100`
Then STDOUT should contain:
"""
download
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line='wp bogus-comand ' --point=100`
Then STDOUT should be empty
When I run `wp cli completions --line='wp eva' --point=100`
Then STDOUT should contain:
"""
eval
"""
And STDOUT should contain:
"""
eval-file
"""
When I run `wp cli completions --line='wp config create --dbname=' --point=100`
Then STDOUT should not contain:
"""
--dbname=
"""
When I run `wp cli completions --line='wp config create --dbname' --point=100`
Then STDOUT should contain:
"""
--dbname=
"""
When I run `wp cli completions --line='wp config create --dbname=foo ' --point=100`
Then STDOUT should not contain:
"""
--dbname=
"""
And STDOUT should contain:
"""
--extra-php
"""
When I run `wp cli completions --line='wp eval-file ' --point=100`
Then STDOUT should contain:
"""
<file>
"""
Scenario: Bash Completion with SSH aliases
Given an empty directory
And a wp-cli.yml file:
"""
@example:
ssh: example.com
"""
When I run `wp cli completions --line="wp " --point=100`
Then STDOUT should contain:
"""
@example
"""
And STDOUT should contain:
"""
config
"""
And STDOUT should contain:
"""
core
"""
And STDOUT should contain:
"""
eval
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp @e" --point=100`
Then STDOUT should contain:
"""
@example
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp @example " --point=100`
Then STDOUT should not contain:
"""
@example
"""
And STDOUT should contain:
"""
config
"""
And STDOUT should contain:
"""
core
"""
And STDOUT should contain:
"""
eval
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp @example core " --point=100`
Then STDOUT should contain:
"""
install
"""
And STDOUT should contain:
"""
update
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp help core " --point=100`
Then STDOUT should contain:
"""
install
"""
And STDOUT should contain:
"""
update
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp help " --point=100`
Then STDOUT should not contain:
"""
@example
"""
And STDOUT should contain:
"""
config
"""
And STDOUT should contain:
"""
core
"""
And STDOUT should contain:
"""
eval
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp help core" --point=100`
Then STDOUT should contain:
"""
core
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp help core " --point=100`
Then STDOUT should contain:
"""
download
"""
And STDERR should be empty
And the return code should be 0
Scenario: Bash Completion for global parameters
Given an empty directory
When I run `wp cli completions --line="wp core download " --point=100`
Then STDOUT should contain:
"""
--path=
"""
And STDOUT should contain:
"""
--ssh=
"""
And STDOUT should contain:
"""
--http=
"""
And STDOUT should contain:
"""
--url=
"""
And STDOUT should contain:
"""
--user=
"""
And STDOUT should contain:
"""
--skip-plugins=
"""
And STDOUT should contain:
"""
--skip-themes=
"""
And STDOUT should contain:
"""
--skip-packages
"""
And STDOUT should contain:
"""
--require=
"""
And STDOUT should contain:
"""
--color
"""
And STDOUT should contain:
"""
--no-color
"""
And STDOUT should contain:
"""
--debug=
"""
And STDOUT should contain:
"""
--prompt=
"""
And STDOUT should contain:
"""
--quiet
"""
And STDOUT should not contain:
"""
--skip-packages=
"""
And STDOUT should not contain:
"""
--color=
"""
And STDOUT should not contain:
"""
--quiet=
"""
And STDERR should be empty
And the return code should be 0
When I run `wp cli completions --line="wp core download --path --p" --point=100`
Then STDOUT should contain:
"""
--prompt=
"""
And STDOUT should not contain:
"""
--path
"""
When I run `wp cli completions --line="wp core download --no-color" --point=100`
Then STDOUT should contain:
"""
--no-color
"""
When I run `wp cli completions --line="wp core download --no-color --no-color" --point=100`
Then STDOUT should be empty