ROOTPLOIT
Server: LiteSpeed
System: Linux in-mum-web1878.main-hosting.eu 5.14.0-570.21.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 11 07:22:35 EDT 2025 x86_64
User: u435929562 (435929562)
PHP: 7.4.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
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:
      """