HEX
Server: LiteSpeed
System: Linux us-phx-web629.main-hosting.eu 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64
User: u756937133 (756937133)
PHP: 8.2.30
Disabled: passthru,chgrp
Upload Files
File: //opt/.wp-cli/packages/vendor/wp-cli/entity-command/features/comment-generate.feature
Feature: Generate comments

  Background:
    Given a WP install

  Scenario: Generate a specific number of comments
    When I run `wp comment generate --count=20`
    And I run `wp comment list --format=count`
    Then STDOUT should be:
      """
      21
      """

  Scenario: Generate comments assigned to a specific post
    When I run `wp comment generate --count=4 --post_id=2`
    And I run `wp comment list --post_id=2 --format=count`
    Then STDOUT should be:
      """
      4
      """

    When I run `wp comment list --post_id=1 --format=count`
    Then STDOUT should be:
      """
      1
      """

  Scenario: Generating comments and outputting ids
    When I run `wp comment generate --count=1 --format=ids`
    Then save STDOUT as {COMMENT_ID}

    When I run `wp comment update {COMMENT_ID} --comment_content="foo"`
    Then STDOUT should contain:
      """
      Success:
      """