mirror of
https://gh.wpcy.net/https://github.com/wp-cli/entity-command.git
synced 2026-05-01 15:57:53 +08:00
305 lines
8.4 KiB
Gherkin
305 lines
8.4 KiB
Gherkin
Feature: Manage sites in a multisite installation
|
|
|
|
Scenario: Create a site
|
|
Given a WP multisite install
|
|
|
|
When I try `wp site create --slug=first --network_id=1000`
|
|
Then STDERR should contain:
|
|
"""
|
|
Network with id 1000 does not exist.
|
|
"""
|
|
|
|
Scenario: Create a subdomain site
|
|
Given a WP multisite subdomain install
|
|
|
|
When I run `wp site create --slug=first`
|
|
Then STDOUT should not be empty
|
|
|
|
When I run `wp site list --fields=blog_id,url`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | url |
|
|
| 1 | http://example.com/ |
|
|
| 2 | http://first.example.com/ |
|
|
|
|
When I run `wp site list --format=ids`
|
|
Then STDOUT should be:
|
|
"""
|
|
1 2
|
|
"""
|
|
|
|
When I run `wp site list --site_id=2 --format=ids`
|
|
Then STDOUT should be empty
|
|
|
|
When I run `wp --url=first.example.com option get home`
|
|
Then STDOUT should be:
|
|
"""
|
|
http://first.example.com
|
|
"""
|
|
|
|
Scenario: Delete a site by id
|
|
Given a WP multisite subdirectory install
|
|
|
|
When I run `wp site create --slug=first --porcelain`
|
|
Then STDOUT should be a number
|
|
And save STDOUT as {SITE_ID}
|
|
|
|
When I run `wp site list --fields=blog_id,url`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | url |
|
|
| 1 | http://example.com/ |
|
|
| 2 | http://example.com/first/ |
|
|
|
|
When I run `wp site list --field=url`
|
|
Then STDOUT should be:
|
|
"""
|
|
http://example.com/
|
|
http://example.com/first/
|
|
"""
|
|
|
|
When I run `wp site delete {SITE_ID} --yes`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: The site at 'http://example.com/first/' was deleted.
|
|
"""
|
|
|
|
When I try the previous command again
|
|
Then the return code should be 1
|
|
|
|
Scenario: Filter site list
|
|
Given a WP multisite install
|
|
|
|
When I run `wp site create --slug=first --porcelain`
|
|
Then STDOUT should be a number
|
|
And save STDOUT as {SITE_ID}
|
|
|
|
When I run `wp site list --fields=blog_id,url`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | url |
|
|
| 1 | http://example.com/ |
|
|
| 2 | http://example.com/first/ |
|
|
|
|
When I run `wp site list --field=url --blog_id=2`
|
|
Then STDOUT should be:
|
|
"""
|
|
http://example.com/first/
|
|
"""
|
|
|
|
Scenario: Delete a site by slug
|
|
Given a WP multisite install
|
|
|
|
When I run `wp site create --slug=first`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: Site 2 created: http://example.com/first/
|
|
"""
|
|
|
|
When I run `wp site delete --slug=first --yes`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: The site at 'http://example.com/first/' was deleted.
|
|
"""
|
|
|
|
When I try the previous command again
|
|
Then the return code should be 1
|
|
|
|
Scenario: Get site info
|
|
Given a WP multisite install
|
|
|
|
When I run `wp site create --slug=first --porcelain`
|
|
Then STDOUT should be a number
|
|
And save STDOUT as {SITE_ID}
|
|
|
|
When I run `wp site url {SITE_ID}`
|
|
Then STDOUT should be:
|
|
"""
|
|
http://example.com/first/
|
|
"""
|
|
|
|
When I run `wp site create --slug=second --porcelain`
|
|
Then STDOUT should be a number
|
|
And save STDOUT as {SECOND_ID}
|
|
|
|
When I run `wp site url {SECOND_ID} {SITE_ID}`
|
|
Then STDOUT should be:
|
|
"""
|
|
http://example.com/second/
|
|
http://example.com/first/
|
|
"""
|
|
|
|
Scenario: Archive/unarchive a site
|
|
Given a WP multisite install
|
|
And I run `wp site create --slug=first --porcelain`
|
|
And save STDOUT as {FIRST_SITE}
|
|
And I run `wp site create --slug=second --porcelain`
|
|
And save STDOUT as {SECOND_SITE}
|
|
|
|
When I run `wp site archive {FIRST_SITE}`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: Site {FIRST_SITE} archived.
|
|
"""
|
|
|
|
When I run `wp site list --fields=blog_id,archived`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | archived |
|
|
| {FIRST_SITE} | 1 |
|
|
|
|
When I run `wp site archive {FIRST_SITE} {SECOND_SITE}`
|
|
Then STDERR should be:
|
|
"""
|
|
Warning: Site {FIRST_SITE} already archived.
|
|
"""
|
|
And STDOUT should be:
|
|
"""
|
|
Success: Site {SECOND_SITE} archived.
|
|
"""
|
|
|
|
When I run `wp site list --fields=blog_id,archived`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | archived |
|
|
| {FIRST_SITE} | 1 |
|
|
|
|
When I run `wp site unarchive {FIRST_SITE}`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: Site {FIRST_SITE} unarchived.
|
|
"""
|
|
|
|
When I run `wp site list --fields=blog_id,archived`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | archived |
|
|
| {FIRST_SITE} | 0 |
|
|
|
|
When I try `wp site archive 1`
|
|
Then STDERR should be:
|
|
"""
|
|
Warning: You are not allowed to change the main site.
|
|
"""
|
|
|
|
Scenario: Activate/deactivate a site
|
|
Given a WP multisite install
|
|
And I run `wp site create --slug=first --porcelain`
|
|
And save STDOUT as {FIRST_SITE}
|
|
And I run `wp site create --slug=second --porcelain`
|
|
And save STDOUT as {SECOND_SITE}
|
|
|
|
When I run `wp site deactivate {FIRST_SITE}`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: Site {FIRST_SITE} deactivated.
|
|
"""
|
|
|
|
When I run `wp site list --fields=blog_id,deleted`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | deleted |
|
|
| {FIRST_SITE} | 1 |
|
|
|
|
When I run `wp site deactivate {FIRST_SITE} {SECOND_SITE}`
|
|
Then STDERR should be:
|
|
"""
|
|
Warning: Site {FIRST_SITE} already deactivated.
|
|
"""
|
|
And STDOUT should be:
|
|
"""
|
|
Success: Site {SECOND_SITE} deactivated.
|
|
"""
|
|
|
|
When I run `wp site list --fields=blog_id,deleted`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | deleted |
|
|
| {FIRST_SITE} | 1 |
|
|
|
|
When I run `wp site activate {FIRST_SITE}`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: Site {FIRST_SITE} activated.
|
|
"""
|
|
|
|
When I run `wp site list --fields=blog_id,deleted`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | deleted |
|
|
| {FIRST_SITE} | 0 |
|
|
|
|
When I run `wp site deactivate 1`
|
|
Then STDERR should be:
|
|
"""
|
|
Warning: You are not allowed to change the main site.
|
|
"""
|
|
|
|
Scenario: Mark/remove a site from spam
|
|
Given a WP multisite install
|
|
And I run `wp site create --slug=first --porcelain`
|
|
And save STDOUT as {FIRST_SITE}
|
|
And I run `wp site create --slug=second --porcelain`
|
|
And save STDOUT as {SECOND_SITE}
|
|
|
|
When I run `wp site spam {FIRST_SITE}`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: Site {FIRST_SITE} marked as spam.
|
|
"""
|
|
|
|
When I run `wp site list --fields=blog_id,spam`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | spam |
|
|
| {FIRST_SITE} | 1 |
|
|
|
|
When I run `wp site spam {FIRST_SITE} {SECOND_SITE}`
|
|
Then STDERR should be:
|
|
"""
|
|
Warning: Site {FIRST_SITE} already marked as spam.
|
|
"""
|
|
And STDOUT should be:
|
|
"""
|
|
Success: Site {SECOND_SITE} marked as spam.
|
|
"""
|
|
|
|
When I run `wp site list --fields=blog_id,spam`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | spam |
|
|
| {FIRST_SITE} | 1 |
|
|
|
|
When I run `wp site unspam {FIRST_SITE}`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: Site {FIRST_SITE} removed from spam.
|
|
"""
|
|
|
|
When I run `wp site list --fields=blog_id,spam`
|
|
Then STDOUT should be a table containing rows:
|
|
| blog_id | spam |
|
|
| {FIRST_SITE} | 0 |
|
|
|
|
When I run `wp site spam 1`
|
|
Then STDERR should be:
|
|
"""
|
|
Warning: You are not allowed to change the main site.
|
|
"""
|
|
|
|
Scenario: Permit CLI operations against archived and suspended sites
|
|
Given a WP multisite install
|
|
And I run `wp site create --slug=first --porcelain`
|
|
And save STDOUT as {FIRST_SITE}
|
|
|
|
When I run `wp site archive {FIRST_SITE}`
|
|
Then STDOUT should be:
|
|
"""
|
|
Success: Site {FIRST_SITE} archived.
|
|
"""
|
|
|
|
When I run `wp --url=example.com/first option get home`
|
|
Then STDOUT should be:
|
|
"""
|
|
http://example.com/first
|
|
"""
|
|
|
|
Scenario: Create site with title containing slash
|
|
Given a WP multisite install
|
|
And I run `wp site create --slug=mysite --title="My\Site"`
|
|
Then STDOUT should not be empty
|
|
|
|
When I run `wp option get blogname --url=example.com/mysite`
|
|
Then STDOUT should be:
|
|
"""
|
|
My\Site
|
|
"""
|