123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861 |
- <?php
- /**
- * @group comment
- */
- class Tests_Comment_Submission extends WP_UnitTestCase {
- protected static $post;
- protected static $author_id;
- protected static $editor_id;
- protected $preprocess_comment_data = array();
- public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
- self::$post = $factory->post->create_and_get();
- self::$author_id = $factory->user->create(
- array(
- 'role' => 'author',
- )
- );
- self::$editor_id = $factory->user->create(
- array(
- 'role' => 'editor',
- )
- );
- }
- public static function wpTearDownAfterClass() {
- wp_delete_post( self::$post->ID, true );
- self::delete_user( self::$author_id );
- self::delete_user( self::$editor_id );
- }
- function setUp() {
- parent::setUp();
- require_once ABSPATH . WPINC . '/class-phpass.php';
- }
- public function test_submitting_comment_to_invalid_post_returns_error() {
- $error = 'comment_id_not_found';
- $this->assertSame( 0, did_action( $error ) );
- $data = array(
- 'comment_post_ID' => 0,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertSame( 1, did_action( $error ) );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_to_post_with_closed_comments_returns_error() {
- $error = 'comment_closed';
- $this->assertSame( 0, did_action( $error ) );
- $post = self::factory()->post->create_and_get(
- array(
- 'comment_status' => 'closed',
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertSame( 1, did_action( $error ) );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_to_trashed_post_returns_error() {
- $error = 'comment_on_trash';
- $this->assertSame( 0, did_action( $error ) );
- wp_trash_post( self::$post->ID );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- wp_untrash_post( self::$post->ID );
- $this->assertSame( 1, did_action( $error ) );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_to_draft_post_returns_error() {
- $error = 'comment_on_draft';
- $this->assertSame( 0, did_action( $error ) );
- $post = self::factory()->post->create_and_get(
- array(
- 'post_status' => 'draft',
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertSame( 1, did_action( $error ) );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- $this->assertEmpty( $comment->get_error_message() );
- }
- /**
- * @ticket 39650
- */
- public function test_submitting_comment_to_draft_post_returns_error_message_for_user_with_correct_caps() {
- $error = 'comment_on_draft';
- wp_set_current_user( self::$author_id );
- $this->assertSame( 0, did_action( $error ) );
- $post = self::factory()->post->create_and_get(
- array(
- 'post_status' => 'draft',
- 'post_author' => self::$author_id,
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertSame( 1, did_action( $error ) );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- $this->assertNotEmpty( $comment->get_error_message() );
- }
- public function test_submitting_comment_to_scheduled_post_returns_error() {
- // Same error as commenting on a draft.
- $error = 'comment_on_draft';
- $this->assertSame( 0, did_action( $error ) );
- $post = self::factory()->post->create_and_get(
- array(
- 'post_date' => gmdate( 'Y-m-d H:i:s', strtotime( '+1 day' ) ),
- )
- );
- $this->assertSame( 'future', $post->post_status );
- $data = array(
- 'comment_post_ID' => $post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertSame( 1, did_action( $error ) );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_to_password_required_post_returns_error() {
- $error = 'comment_on_password_protected';
- $this->assertSame( 0, did_action( $error ) );
- $post = self::factory()->post->create_and_get(
- array(
- 'post_password' => 'password',
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertSame( 1, did_action( $error ) );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_to_password_protected_post_succeeds() {
- $password = 'password';
- $hasher = new PasswordHash( 8, true );
- $_COOKIE[ 'wp-postpass_' . COOKIEHASH ] = $hasher->HashPassword( $password );
- $post = self::factory()->post->create_and_get(
- array(
- 'post_password' => $password,
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- 'comment' => 'Comment',
- 'author' => 'Comment Author',
- 'email' => 'comment@example.org',
- );
- $comment = wp_handle_comment_submission( $data );
- unset( $_COOKIE[ 'wp-postpass_' . COOKIEHASH ] );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- }
- public function test_submitting_valid_comment_as_logged_in_user_succeeds() {
- $user = self::factory()->user->create_and_get(
- array(
- 'user_url' => 'http://user.example.org',
- )
- );
- wp_set_current_user( $user->ID );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertSame( 'Comment', $comment->comment_content );
- $this->assertSame( $user->display_name, $comment->comment_author );
- $this->assertSame( $user->user_email, $comment->comment_author_email );
- $this->assertSame( $user->user_url, $comment->comment_author_url );
- $this->assertSame( $user->ID, (int) $comment->user_id );
- }
- public function test_submitting_valid_comment_anonymously_succeeds() {
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- 'author' => 'Comment Author',
- 'email' => 'comment@example.org',
- 'url' => 'user.example.org',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertSame( 'Comment', $comment->comment_content );
- $this->assertSame( 'Comment Author', $comment->comment_author );
- $this->assertSame( 'comment@example.org', $comment->comment_author_email );
- $this->assertSame( 'http://user.example.org', $comment->comment_author_url );
- $this->assertSame( '0', $comment->user_id );
- }
- /**
- * wp_handle_comment_submission() expects un-slashed data.
- *
- * @group slashes
- */
- public function test_submitting_comment_handles_slashes_correctly_handles_slashes() {
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment with 1 slash: \\',
- 'author' => 'Comment Author with 1 slash: \\',
- 'email' => 'comment@example.org',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertSame( 'Comment with 1 slash: \\', $comment->comment_content );
- $this->assertSame( 'Comment Author with 1 slash: \\', $comment->comment_author );
- $this->assertSame( 'comment@example.org', $comment->comment_author_email );
- }
- public function test_submitting_comment_anonymously_to_private_post_returns_error() {
- $error = 'comment_id_not_found';
- $post = self::factory()->post->create_and_get(
- array(
- 'post_status' => 'private',
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertFalse( is_user_logged_in() );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_as_logged_in_user_to_inaccessible_private_post_returns_error() {
- $error = 'comment_id_not_found';
- $user = self::factory()->user->create_and_get(
- array(
- 'role' => 'author',
- )
- );
- wp_set_current_user( $user->ID );
- $post = self::factory()->post->create_and_get(
- array(
- 'post_status' => 'private',
- 'post_author' => self::$author_id,
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertFalse( current_user_can( 'read_post', $post->ID ) );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_to_private_post_with_closed_comments_returns_correct_error() {
- $error = 'comment_id_not_found';
- $user = self::factory()->user->create_and_get(
- array(
- 'role' => 'author',
- )
- );
- wp_set_current_user( $user->ID );
- $post = self::factory()->post->create_and_get(
- array(
- 'post_status' => 'private',
- 'post_author' => self::$author_id,
- 'comment_status' => 'closed',
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertFalse( current_user_can( 'read_post', $post->ID ) );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_to_own_private_post_succeeds() {
- wp_set_current_user( self::$author_id );
- $post = self::factory()->post->create_and_get(
- array(
- 'post_status' => 'private',
- 'post_author' => self::$author_id,
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- 'comment' => 'Comment',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertTrue( current_user_can( 'read_post', $post->ID ) );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- }
- public function test_submitting_comment_to_accessible_private_post_succeeds() {
- wp_set_current_user( self::$editor_id );
- $post = self::factory()->post->create_and_get(
- array(
- 'post_status' => 'private',
- 'post_author' => self::$author_id,
- )
- );
- $data = array(
- 'comment_post_ID' => $post->ID,
- 'comment' => 'Comment',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertTrue( current_user_can( 'read_post', $post->ID ) );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- }
- public function test_anonymous_user_cannot_comment_unfiltered_html() {
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment <script>alert(document.cookie);</script>',
- 'author' => 'Comment Author',
- 'email' => 'comment@example.org',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertNotContains( '<script', $comment->comment_content );
- }
- public function test_unprivileged_user_cannot_comment_unfiltered_html() {
- wp_set_current_user( self::$author_id );
- $this->assertFalse( current_user_can( 'unfiltered_html' ) );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment <script>alert(document.cookie);</script>',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertNotContains( '<script', $comment->comment_content );
- }
- public function test_unprivileged_user_cannot_comment_unfiltered_html_even_with_valid_nonce() {
- wp_set_current_user( self::$author_id );
- $this->assertFalse( current_user_can( 'unfiltered_html' ) );
- $action = 'unfiltered-html-comment_' . self::$post->ID;
- $nonce = wp_create_nonce( $action );
- $this->assertNotEmpty( wp_verify_nonce( $nonce, $action ) );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment <script>alert(document.cookie);</script>',
- '_wp_unfiltered_html_comment' => $nonce,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertNotContains( '<script', $comment->comment_content );
- }
- public function test_privileged_user_can_comment_unfiltered_html_with_valid_nonce() {
- $this->assertFalse( defined( 'DISALLOW_UNFILTERED_HTML' ) );
- if ( is_multisite() ) {
- // In multisite, only Super Admins can post unfiltered HTML.
- $this->assertFalse( user_can( self::$editor_id, 'unfiltered_html' ) );
- grant_super_admin( self::$editor_id );
- }
- wp_set_current_user( self::$editor_id );
- $this->assertTrue( current_user_can( 'unfiltered_html' ) );
- $action = 'unfiltered-html-comment_' . self::$post->ID;
- $nonce = wp_create_nonce( $action );
- $this->assertNotEmpty( wp_verify_nonce( $nonce, $action ) );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment <script>alert(document.cookie);</script>',
- '_wp_unfiltered_html_comment' => $nonce,
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertContains( '<script', $comment->comment_content );
- }
- public function test_privileged_user_cannot_comment_unfiltered_html_without_valid_nonce() {
- if ( is_multisite() ) {
- // In multisite, only Super Admins can post unfiltered HTML.
- $this->assertFalse( user_can( self::$editor_id, 'unfiltered_html' ) );
- grant_super_admin( self::$editor_id );
- }
- wp_set_current_user( self::$editor_id );
- $this->assertTrue( current_user_can( 'unfiltered_html' ) );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment <script>alert(document.cookie);</script>',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertNotContains( '<script', $comment->comment_content );
- }
- public function test_submitting_comment_as_anonymous_user_when_registration_required_returns_error() {
- $error = 'not_logged_in';
- $_comment_registration = get_option( 'comment_registration' );
- update_option( 'comment_registration', '1' );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- );
- $comment = wp_handle_comment_submission( $data );
- update_option( 'comment_registration', $_comment_registration );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_with_no_name_when_name_email_required_returns_error() {
- $error = 'require_name_email';
- $_require_name_email = get_option( 'require_name_email' );
- update_option( 'require_name_email', '1' );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- 'email' => 'comment@example.org',
- );
- $comment = wp_handle_comment_submission( $data );
- update_option( 'require_name_email', $_require_name_email );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_with_no_email_when_name_email_required_returns_error() {
- $error = 'require_name_email';
- $_require_name_email = get_option( 'require_name_email' );
- update_option( 'require_name_email', '1' );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- 'author' => 'Comment Author',
- );
- $comment = wp_handle_comment_submission( $data );
- update_option( 'require_name_email', $_require_name_email );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_with_invalid_email_when_name_email_required_returns_error() {
- $error = 'require_valid_email';
- $_require_name_email = get_option( 'require_name_email' );
- update_option( 'require_name_email', '1' );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- 'author' => 'Comment Author',
- 'email' => 'not_an_email',
- );
- $comment = wp_handle_comment_submission( $data );
- update_option( 'require_name_email', $_require_name_email );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- public function test_submitting_comment_with_no_comment_content_returns_error() {
- $error = 'require_valid_comment';
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => '',
- 'author' => 'Comment Author',
- 'email' => 'comment@example.org',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- /**
- * @ticket 10377
- */
- public function test_submitting_comment_with_content_too_long_returns_error() {
- $error = 'comment_content_column_length';
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => rand_long_str( 65536 ),
- 'author' => 'Comment Author',
- 'email' => 'comment@example.org',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- /**
- * @ticket 10377
- */
- public function test_submitting_comment_with_author_too_long_returns_error() {
- $error = 'comment_author_column_length';
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- 'author' => rand_long_str( 255 ),
- 'email' => 'comment@example.org',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- /**
- * @ticket 10377
- */
- public function test_submitting_comment_with_email_too_long_returns_error() {
- $error = 'comment_author_email_column_length';
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- 'author' => 'Comment Author',
- 'email' => rand_long_str( 90 ) . '@example.com',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- /**
- * @ticket 10377
- */
- public function test_submitting_comment_with_url_too_long_returns_error() {
- $error = 'comment_author_url_column_length';
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- 'author' => 'Comment Author',
- 'email' => 'comment@example.org',
- 'url' => rand_long_str( 201 ),
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertWPError( $comment );
- $this->assertSame( $error, $comment->get_error_code() );
- }
- /**
- * @ticket 49236
- */
- public function test_submitting_comment_with_empty_type_results_in_correct_type() {
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- 'author' => 'Comment Author',
- 'email' => 'comment@example.org',
- 'comment_type' => '',
- );
- $comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertSame( 'comment', $comment->comment_type );
- }
- /**
- * @ticket 49236
- */
- public function test_inserting_comment_with_empty_type_results_in_correct_type() {
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- 'author' => 'Comment Author',
- 'email' => 'comment@example.org',
- 'comment_type' => '',
- );
- $comment_id = wp_insert_comment( $data );
- $comment = get_comment( $comment_id );
- $this->assertNotWPError( $comment );
- $this->assertInstanceOf( 'WP_Comment', $comment );
- $this->assertSame( 'comment', $comment->comment_type );
- }
- /**
- * @ticket 34997
- */
- public function test_comment_submission_sends_all_expected_parameters_to_preprocess_comment_filter() {
- $user = get_userdata( self::$author_id );
- wp_set_current_user( $user->ID );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Comment',
- );
- add_filter( 'preprocess_comment', array( $this, 'filter_preprocess_comment' ) );
- $comment = wp_handle_comment_submission( $data );
- remove_filter( 'preprocess_comment', array( $this, 'filter_preprocess_comment' ) );
- $this->assertNotWPError( $comment );
- $this->assertSame(
- array(
- 'comment_post_ID' => self::$post->ID,
- 'comment_author' => $user->display_name,
- 'comment_author_email' => $user->user_email,
- 'comment_author_url' => $user->user_url,
- 'comment_content' => $data['comment'],
- 'comment_type' => 'comment',
- 'comment_parent' => 0,
- 'user_ID' => $user->ID,
- 'user_id' => $user->ID,
- 'comment_author_IP' => '127.0.0.1',
- 'comment_agent' => '',
- ),
- $this->preprocess_comment_data
- );
- }
- public function filter_preprocess_comment( $commentdata ) {
- $this->preprocess_comment_data = $commentdata;
- return $commentdata;
- }
- /**
- * @ticket 36901
- */
- public function test_submitting_duplicate_comments() {
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Did I say that?',
- 'author' => 'Repeat myself',
- 'email' => 'mail@example.com',
- );
- $first_comment = wp_handle_comment_submission( $data );
- $second_comment = wp_handle_comment_submission( $data );
- $this->assertWPError( $second_comment );
- $this->assertSame( 'comment_duplicate', $second_comment->get_error_code() );
- }
- /**
- * @ticket 36901
- */
- public function test_comments_flood() {
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Did I say that?',
- 'author' => 'Repeat myself',
- 'email' => 'mail@example.com',
- );
- $first_comment = wp_handle_comment_submission( $data );
- $data['comment'] = 'Wow! I am quick!';
- $second_comment = wp_handle_comment_submission( $data );
- $this->assertWPError( $second_comment );
- $this->assertSame( 'comment_flood', $second_comment->get_error_code() );
- }
- /**
- * @ticket 36901
- */
- public function test_comments_flood_user_is_admin() {
- $user = self::factory()->user->create_and_get(
- array(
- 'role' => 'administrator',
- )
- );
- wp_set_current_user( $user->ID );
- $data = array(
- 'comment_post_ID' => self::$post->ID,
- 'comment' => 'Did I say that?',
- 'author' => 'Repeat myself',
- 'email' => 'mail@example.com',
- );
- $first_comment = wp_handle_comment_submission( $data );
- $data['comment'] = 'Wow! I am quick!';
- $second_comment = wp_handle_comment_submission( $data );
- $this->assertNotWPError( $second_comment );
- $this->assertEquals( self::$post->ID, $second_comment->comment_post_ID );
- }
- }
|