%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/ceaa/wp-content/plugins/buddypress/cli/features/
Upload File :
Create Path :
Current File : /var/www/html/ceaa/wp-content/plugins/buddypress/cli/features/group.feature

Feature: Manage BuddyPress Groups

  Scenario: Group CRUD Operations
    Given a BP install

    When I run `wp bp group create --name="Totally Cool Group" --slug=totally-cool-group --porcelain`
    Then STDOUT should be a number
    And save STDOUT as {GROUP_ID}

    When I run `wp bp group get {GROUP_ID}`
    Then STDOUT should be a table containing rows:
      | Field   | Value              |
      | id      | {GROUP_ID}         |
      | name    | Totally Cool Group |

    When I run `wp bp group get totally-cool-group`
    Then STDOUT should be a table containing rows:
      | Field   | Value              |
      | id      | {GROUP_ID}         |
      | name    | Totally Cool Group |

    When I try `wp bp group get i-do-not-exist`
    Then the return code should be 1

    When I run `wp bp group update {GROUP_ID} --description=foo`
    Then STDOUT should not be empty

    When I run `wp bp group get {GROUP_ID}`
    Then STDOUT should be a table containing rows:
      | Field       | Value                                         |
      | id          | {GROUP_ID}                                    |
      | name        | Totally Cool Group                            |
      | description | foo                                           |
      | url         | http://example.com/groups/totally-cool-group/ |

    When I run `wp bp group delete {GROUP_ID} --yes`
    Then STDOUT should contain:
      """
      Success: Group successfully deleted.
      """

    When I try `wp bp group get {GROUP_ID}`
    Then the return code should be 1

  Scenario: Group list
    Given a BP install

    When I run `wp bp group create --name="ZZZ Group 1" --slug=group1 --porcelain`
    Then STDOUT should be a number
    And save STDOUT as {GROUP_ONE_ID}

    When I run `wp bp group create --name="AAA Group 2" --slug=group2 --porcelain`
    Then STDOUT should be a number
    And save STDOUT as {GROUP_TWO_ID}

    When I run `wp bp group list --fields=id,name,slug`
    Then STDOUT should be a table containing rows:
      | id             | name        | slug   |
      | {GROUP_ONE_ID} | ZZZ Group 1 | group1 |
      | {GROUP_TWO_ID} | AAA Group 2 | group2 |

    When I run `wp bp group list --fields=id,name,slug --orderby=name`
    Then STDOUT should be a table containing rows:
      | id             | name        | slug   |
      | {GROUP_TWO_ID} | AAA Group 2 | group2 |
      | {GROUP_ONE_ID} | ZZZ Group 1 | group1 |

    When I run `wp bp group list --fields=id,name,slug --orderby=name --order=DESC`
    Then STDOUT should be a table containing rows:
      | id             | name        | slug   |
      | {GROUP_ONE_ID} | ZZZ Group 1 | group1 |
      | {GROUP_TWO_ID} | AAA Group 2 | group2 |

    When I run `wp user create testuser1 testuser1@example.com --porcelain`
    Then STDOUT should be a number
    And save STDOUT as {MEMBER_ID}

    When I try `wp bp group list --fields=id --user-id={MEMBER_ID}`
    Then the return code should be 1

    When I run `wp bp group member create --group-id={GROUP_ONE_ID} --user-id={MEMBER_ID}`
    Then the return code should be 0

    When I run `wp bp group list --fields=id --user-id={MEMBER_ID}`
    Then STDOUT should be a table containing rows:
      | id             |
      | {GROUP_ONE_ID} |

Zerion Mini Shell 1.0