-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test case scenarios for --autoload flag
- Loading branch information
Showing
1 changed file
with
170 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,150 +1,198 @@ | ||
Feature: List WordPress options | ||
|
||
Scenario: Using the `--transients` flag | ||
# Scenario: Using the `--transients` flag | ||
# Given a WP install | ||
# And I run `wp transient set wp_transient_flag wp_transient_flag` | ||
|
||
# When I run `wp option list --no-transients` | ||
# Then STDOUT should not contain: | ||
# """ | ||
# wp_transient_flag | ||
# """ | ||
# And STDOUT should not contain: | ||
# """ | ||
# _transient | ||
# """ | ||
# And STDOUT should contain: | ||
# """ | ||
# siteurl | ||
# """ | ||
|
||
# When I run `wp option list --transients` | ||
# Then STDOUT should contain: | ||
# """ | ||
# wp_transient_flag | ||
# """ | ||
# And STDOUT should contain: | ||
# """ | ||
# _transient | ||
# """ | ||
# And STDOUT should not contain: | ||
# """ | ||
# siteurl | ||
# """ | ||
|
||
# Scenario: List option with exclude pattern | ||
# Given a WP install | ||
|
||
# When I run `wp option add sample_test_field_one sample_test_field_value_one` | ||
# And I run `wp option add sample_test_field_two sample_test_field_value_two` | ||
# And I run `wp option list --search="sample_test_field_*" --format=csv` | ||
# Then STDOUT should be: | ||
# """ | ||
# option_name,option_value | ||
# sample_test_field_one,sample_test_field_value_one | ||
# sample_test_field_two,sample_test_field_value_two | ||
# """ | ||
|
||
# When I run `wp option list --search="sample_test_field_*" --exclude="*field_one" --format=csv` | ||
# Then STDOUT should be: | ||
# """ | ||
# option_name,option_value | ||
# sample_test_field_two,sample_test_field_value_two | ||
# """ | ||
|
||
# When I run `wp option list` | ||
# Then STDOUT should contain: | ||
# """ | ||
# sample_test_field_one | ||
# """ | ||
|
||
# When I run `wp option list --exclude="sample_test_field_one"` | ||
# Then STDOUT should not contain: | ||
# """ | ||
# sample_test_field_one | ||
# """ | ||
|
||
# Scenario: List option with sorting option | ||
# Given a WP install | ||
# And I run `wp option add sample_test_field_one sample_test_field_value_one` | ||
# And I run `wp option add sample_test_field_two sample_test_field_value_two` | ||
|
||
# When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_id --order=asc` | ||
# Then STDOUT should be: | ||
# """ | ||
# option_name,option_value | ||
# sample_test_field_one,sample_test_field_value_one | ||
# sample_test_field_two,sample_test_field_value_two | ||
# """ | ||
|
||
# When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_id --order=desc` | ||
# Then STDOUT should be: | ||
# """ | ||
# option_name,option_value | ||
# sample_test_field_two,sample_test_field_value_two | ||
# sample_test_field_one,sample_test_field_value_one | ||
# """ | ||
|
||
# When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_name --order=asc` | ||
# Then STDOUT should be: | ||
# """ | ||
# option_name,option_value | ||
# sample_test_field_one,sample_test_field_value_one | ||
# sample_test_field_two,sample_test_field_value_two | ||
# """ | ||
|
||
# When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_name --order=desc` | ||
# Then STDOUT should be: | ||
# """ | ||
# option_name,option_value | ||
# sample_test_field_two,sample_test_field_value_two | ||
# sample_test_field_one,sample_test_field_value_one | ||
# """ | ||
|
||
# When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_value --order=asc` | ||
# Then STDOUT should be: | ||
# """ | ||
# option_name,option_value | ||
# sample_test_field_one,sample_test_field_value_one | ||
# sample_test_field_two,sample_test_field_value_two | ||
# """ | ||
|
||
# When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_value --order=desc` | ||
# Then STDOUT should be: | ||
# """ | ||
# option_name,option_value | ||
# sample_test_field_two,sample_test_field_value_two | ||
# sample_test_field_one,sample_test_field_value_one | ||
# """ | ||
|
||
# Scenario: Default list option without transient | ||
# Given a WP install | ||
# And I run `wp transient set wp_transient_flag wp_transient_flag` | ||
|
||
# When I run `wp option list` | ||
# Then STDOUT should not contain: | ||
# """ | ||
# wp_transient_flag | ||
# """ | ||
# And STDOUT should not contain: | ||
# """ | ||
# _transient | ||
# """ | ||
# And STDOUT should contain: | ||
# """ | ||
# siteurl | ||
# """ | ||
|
||
# Scenario: Using the `--unserialize` flag | ||
# Given a WP install | ||
|
||
# When I run `wp option add --format=json sample_test_field_one '{"value": 1}'` | ||
# And I run `wp option list --search="sample_test_field_*" --format=yaml --unserialize` | ||
# Then STDOUT should be: | ||
# """ | ||
# --- | ||
# - | ||
# option_name: sample_test_field_one | ||
# option_value: | ||
# value: 1 | ||
# """ | ||
Scenario: Using the `--autoload=on` flag | ||
Given a WP install | ||
And I run `wp transient set wp_transient_flag wp_transient_flag` | ||
And I run `wp option add sample_autoload_one 'sample_value_one' --autoload=yes` | ||
And I run `wp option add sample_autoload_two 'sample_value_two' --autoload=no` | ||
And I run `wp option add sample_autoload_three 'sample_value_three' --autoload=on` | ||
And I run `wp option add sample_autoload_four 'sample_value_four' --autoload=off` | ||
|
||
When I run `wp option list --no-transients` | ||
When I run `wp option list --autoload=on` | ||
Then STDOUT should not contain: | ||
""" | ||
wp_transient_flag | ||
sample_value_two | ||
""" | ||
And STDOUT should not contain: | ||
""" | ||
_transient | ||
sample_value_four | ||
""" | ||
And STDOUT should contain: | ||
""" | ||
siteurl | ||
""" | ||
|
||
When I run `wp option list --transients` | ||
Then STDOUT should contain: | ||
""" | ||
wp_transient_flag | ||
sample_value_one | ||
""" | ||
And STDOUT should contain: | ||
""" | ||
_transient | ||
""" | ||
And STDOUT should not contain: | ||
""" | ||
siteurl | ||
sample_value_three | ||
""" | ||
|
||
Scenario: List option with exclude pattern | ||
Scenario: Using the `--autoload=off` flag | ||
Given a WP install | ||
And I run `wp option add sample_autoload_one 'sample_value_one' --autoload=yes` | ||
And I run `wp option add sample_autoload_two 'sample_value_two' --autoload=no` | ||
And I run `wp option add sample_autoload_three 'sample_value_three' --autoload=on` | ||
And I run `wp option add sample_autoload_four 'sample_value_four' --autoload=off` | ||
|
||
When I run `wp option add sample_test_field_one sample_test_field_value_one` | ||
And I run `wp option add sample_test_field_two sample_test_field_value_two` | ||
And I run `wp option list --search="sample_test_field_*" --format=csv` | ||
Then STDOUT should be: | ||
""" | ||
option_name,option_value | ||
sample_test_field_one,sample_test_field_value_one | ||
sample_test_field_two,sample_test_field_value_two | ||
""" | ||
|
||
When I run `wp option list --search="sample_test_field_*" --exclude="*field_one" --format=csv` | ||
Then STDOUT should be: | ||
""" | ||
option_name,option_value | ||
sample_test_field_two,sample_test_field_value_two | ||
""" | ||
|
||
When I run `wp option list` | ||
Then STDOUT should contain: | ||
""" | ||
sample_test_field_one | ||
""" | ||
|
||
When I run `wp option list --exclude="sample_test_field_one"` | ||
When I run `wp option list --autoload=off` | ||
Then STDOUT should not contain: | ||
""" | ||
sample_test_field_one | ||
""" | ||
|
||
Scenario: List option with sorting option | ||
Given a WP install | ||
And I run `wp option add sample_test_field_one sample_test_field_value_one` | ||
And I run `wp option add sample_test_field_two sample_test_field_value_two` | ||
|
||
When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_id --order=asc` | ||
Then STDOUT should be: | ||
""" | ||
option_name,option_value | ||
sample_test_field_one,sample_test_field_value_one | ||
sample_test_field_two,sample_test_field_value_two | ||
""" | ||
|
||
When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_id --order=desc` | ||
Then STDOUT should be: | ||
""" | ||
option_name,option_value | ||
sample_test_field_two,sample_test_field_value_two | ||
sample_test_field_one,sample_test_field_value_one | ||
""" | ||
|
||
When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_name --order=asc` | ||
Then STDOUT should be: | ||
""" | ||
option_name,option_value | ||
sample_test_field_one,sample_test_field_value_one | ||
sample_test_field_two,sample_test_field_value_two | ||
""" | ||
|
||
When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_name --order=desc` | ||
Then STDOUT should be: | ||
""" | ||
option_name,option_value | ||
sample_test_field_two,sample_test_field_value_two | ||
sample_test_field_one,sample_test_field_value_one | ||
""" | ||
|
||
When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_value --order=asc` | ||
Then STDOUT should be: | ||
""" | ||
option_name,option_value | ||
sample_test_field_one,sample_test_field_value_one | ||
sample_test_field_two,sample_test_field_value_two | ||
""" | ||
|
||
When I run `wp option list --search="sample_test_field_*" --format=csv --orderby=option_value --order=desc` | ||
Then STDOUT should be: | ||
""" | ||
option_name,option_value | ||
sample_test_field_two,sample_test_field_value_two | ||
sample_test_field_one,sample_test_field_value_one | ||
""" | ||
|
||
Scenario: Default list option without transient | ||
Given a WP install | ||
And I run `wp transient set wp_transient_flag wp_transient_flag` | ||
|
||
When I run `wp option list` | ||
Then STDOUT should not contain: | ||
""" | ||
wp_transient_flag | ||
sample_value_one | ||
""" | ||
And STDOUT should not contain: | ||
""" | ||
_transient | ||
sample_value_three | ||
""" | ||
And STDOUT should contain: | ||
""" | ||
siteurl | ||
sample_value_two | ||
""" | ||
|
||
Scenario: Using the `--unserialize` flag | ||
Given a WP install | ||
|
||
When I run `wp option add --format=json sample_test_field_one '{"value": 1}'` | ||
And I run `wp option list --search="sample_test_field_*" --format=yaml --unserialize` | ||
Then STDOUT should be: | ||
""" | ||
--- | ||
- | ||
option_name: sample_test_field_one | ||
option_value: | ||
value: 1 | ||
And STDOUT should contain: | ||
""" | ||
sample_value_four | ||
""" |