forked from wp-cli/wp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunner.feature
More file actions
81 lines (70 loc) · 2.01 KB
/
runner.feature
File metadata and controls
81 lines (70 loc) · 2.01 KB
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
Feature: Runner WP-CLI
Scenario: Path argument should be slashed correctly
When I try `wp no-such-command --path=/foo --debug`
Then STDERR should contain:
"""
ABSPATH defined: /foo/
"""
When I try `wp no-such-command --path=/foo/ --debug`
Then STDERR should contain:
"""
ABSPATH defined: /foo/
"""
When I try `wp no-such-command --path=/foo\\ --debug`
Then STDERR should contain:
"""
ABSPATH defined: /foo/
"""
Scenario: ABSPATH can be defined outside of WP-CLI
Given an empty directory
And a wp-cli.yml file:
"""
require:
- abspath.php
"""
And a abspath.php file:
"""
<?php
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', '/some_path/' );
}
"""
When I try `wp no-such-command --debug`
Then STDERR should not contain:
"""
Constant ABSPATH already defined in
"""
And STDERR should contain:
"""
ABSPATH defined: /some_path/
"""
When I try `wp no-such-command --path=/foo --debug`
Then STDERR should contain:
"""
The --path parameter cannot be used when ABSPATH is already defined elsewhere
"""
Scenario: Empty path argument should be handled correctly
When I try `wp no-such-command --path`
Then STDERR should contain:
"""
The --path parameter cannot be empty when provided
"""
When I try `wp no-such-command --path=`
Then STDERR should contain:
"""
The --path parameter cannot be empty when provided
"""
When I try `wp no-such-command --path= some_path`
Then STDERR should contain:
"""
The --path parameter cannot be empty when provided
"""
Scenario: Suggest 'meta' when 'option' subcommand is run
Given a WP install
When I try `wp network option`
Then STDERR should contain:
"""
Error: 'option' is not a registered subcommand of 'network'. See 'wp help network' for available subcommands.
Did you mean 'meta'?
"""
And the return code should be 1