2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
// Test that a user without the 'access comments' permission can not see the block.
$this->drupalLogout();
$this->drupalGet('');
$this->assertNoText($block['title'],t('Block was not found.'));
$this->drupalLogin($this->web_user);
$this->drupalGet('');
$this->assertText($block['title'],t('Block was found.'));
// Test the only the 2 latest comments are shown and in the proper order.
$this->assertNoText($comment1->subject,t('Comment not found in block.'));
$this->assertText($comment2->subject,t('Comment found in block.'));
$this->assertText($comment3->comment,t('Comment found in block.'));
$this->assertTrue(strpos($this->drupalGetContent(),$comment3->comment)<strpos($this->drupalGetContent(),$comment2->subject),t('Comments were ordered correctly in block.'));
}
}
functiontestRecentCommentBlock(){
// Set block title to confirm that the interface is availble.