entity-command/features/post.feature
Alain Schlesser 9ce537f67d
Fix broken tests by removing platform-specific indentation from wc output.
Pipe `wc` output through `tr` to delete the indentation, so that the output is consistent across all platforms and the tests all behave in the same way.

Fixes #3925
2017-03-23 19:15:31 +01:00

233 lines
6.8 KiB
Gherkin

Feature: Manage WordPress posts
Background:
Given a WP install
Scenario: Creating/updating/deleting posts
When I run `wp post create --post_title='Test post' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post update {POST_ID} --post_title='Updated post'`
Then STDOUT should be:
"""
Success: Updated post {POST_ID}.
"""
When I run `wp post delete {POST_ID}`
Then STDOUT should be:
"""
Success: Trashed post {POST_ID}.
"""
When I run the previous command again
Then STDOUT should be:
"""
Success: Deleted post {POST_ID}.
"""
When I try the previous command again
Then the return code should be 1
Scenario: Creating/getting/editing posts
Given a content.html file:
"""
This is some content.
<script>
alert('This should not be stripped.');
</script>
"""
And a create-post.sh file:
"""
cat content.html | wp post create --post_title='Test post' --post_excerpt="A multiline
excerpt" --porcelain -
"""
When I run `bash create-post.sh`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post get --field=excerpt {POST_ID}`
Then STDOUT should be:
"""
A multiline
excerpt
"""
When I run `wp post get --field=content {POST_ID} | diff -Bu content.html -`
Then STDOUT should be empty
When I run `wp post get --format=table {POST_ID}`
Then STDOUT should be a table containing rows:
| Field | Value |
| ID | {POST_ID} |
| post_title | Test post |
| post_name | |
| post_type | post |
When I run `wp post get {POST_ID} --format=csv --fields=post_title,type | wc -l | tr -d ' '`
Then STDOUT should be:
"""
3
"""
When I run `wp post get --format=json {POST_ID}`
Then STDOUT should be JSON containing:
"""
{
"ID": {POST_ID},
"post_title": "Test post"
}
"""
When I try `EDITOR='ex -i NONE -c q!' wp post edit {POST_ID}`
Then STDERR should contain:
"""
No change made to post content.
"""
And the return code should be 0
When I try `EDITOR='ex -i NONE -c %s/content/bunkum -c wq' wp post edit {POST_ID}`
Then STDERR should be empty
Then STDOUT should contain:
"""
Updated post {POST_ID}.
"""
When I run `wp post get --field=content {POST_ID}`
Then STDOUT should contain:
"""
This is some bunkum.
"""
When I run `wp post url 1 {POST_ID}`
Then STDOUT should be:
"""
http://example.com/?p=1
http://example.com/?p=3
"""
Scenario: Update a post from file or STDIN
Given a content.html file:
"""
Oh glorious CLI
"""
And a content-2.html file:
"""
Let it be the weekend
"""
When I run `wp post create --post_title="Testing update via STDIN" --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `cat content.html | wp post update {POST_ID} -`
Then STDOUT should contain:
"""
Success: Updated post {POST_ID}
"""
When I run `wp post get --field=post_content {POST_ID}`
Then STDOUT should be:
"""
Oh glorious CLI
"""
When I run `wp post create --post_title="Testing update via STDIN. Again!" --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID_TWO}
When I run `wp post update {POST_ID} {POST_ID_TWO} content-2.html`
Then STDOUT should contain:
"""
Success: Updated post {POST_ID_TWO}
"""
When I run `wp post get --field=post_content {POST_ID_TWO}`
Then STDOUT should be:
"""
Let it be the weekend
"""
When I try `wp post update {POST_ID} invalid-file.html`
Then STDERR should be:
"""
Error: Unable to read content from 'invalid-file.html'.
"""
Scenario: Creating/listing posts
When I run `wp post create --post_title='Publish post' --post_content='Publish post content' --post_status='publish' --porcelain`
Then STDOUT should be a number
And save STDOUT as {POST_ID}
When I run `wp post create --post_title='Draft post' --post_content='Draft post content' --post_status='draft' --porcelain`
Then STDOUT should be a number
When I run `wp post list --post_type='post' --fields=post_title,post_name,post_status --format=csv`
Then STDOUT should be CSV containing:
| post_title | post_name | post_status |
| Publish post | publish-post | publish |
| Draft post | | draft |
When I run `wp post list --post_type='post' --fields=title,name,status --format=csv`
Then STDOUT should be CSV containing:
| post_title | post_name | post_status |
| Publish post | publish-post | publish |
| Draft post | | draft |
When I run `wp post list --post_type='post' --fields="title, name, status" --format=csv`
Then STDOUT should be CSV containing:
| post_title | post_name | post_status |
| Publish post | publish-post | publish |
| Draft post | | draft |
When I run `wp post list --post__in={POST_ID} --format=count`
Then STDOUT should be:
"""
1
"""
When I run `wp post list --post_type='page' --field=title`
Then STDOUT should be:
"""
Sample Page
"""
When I run `wp post list --post_type=any --fields=post_title,post_name,post_status --format=csv --orderby=post_title --order=ASC`
Then STDOUT should be CSV containing:
| post_title | post_name | post_status |
| Draft post | | draft |
| Hello world! | hello-world | publish |
| Publish post | publish-post | publish |
| Sample Page | sample-page | publish |
Scenario: Update categories on a post
When I run `wp term create category "Test Category" --porcelain`
Then save STDOUT as {TERM_ID}
When I run `wp post update 1 --post_category={TERM_ID}`
And I run `wp post term list 1 category --format=json --fields=name`
Then STDOUT should be:
"""
[{"name":"Test Category"}]
"""
Scenario: Make sure WordPress receives the slashed data it expects
When I run `wp post create --post_title='My\Post' --porcelain`
Then save STDOUT as {POST_ID}
When I run `wp post get {POST_ID} --field=title`
Then STDOUT should be:
"""
My\Post
"""
When I run `wp post update {POST_ID} --post_content='var isEmailValid = /^\S+@\S+.\S+$/.test(email);'`
Then STDOUT should not be empty
When I run `wp post get {POST_ID} --field=content`
Then STDOUT should be:
"""
var isEmailValid = /^\S+@\S+.\S+$/.test(email);
"""