function CommentNonNodeTest::performCommentOperation in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/comment/src/Tests/CommentNonNodeTest.php \Drupal\comment\Tests\CommentNonNodeTest::performCommentOperation()
Performs the specified operation on the specified comment.
Parameters
object $comment: Comment to perform operation on.
string $operation: Operation to perform.
bool $approval: Operation is found on approval page.
1 call to CommentNonNodeTest::performCommentOperation()
- CommentNonNodeTest::testCommentFunctionality in core/
modules/ comment/ src/ Tests/ CommentNonNodeTest.php - Tests anonymous comment functionality.
File
- core/
modules/ comment/ src/ Tests/ CommentNonNodeTest.php, line 222 - Contains \Drupal\comment\Tests\CommentNonNodeTest.
Class
- CommentNonNodeTest
- Tests commenting on a test entity.
Namespace
Drupal\comment\TestsCode
function performCommentOperation($comment, $operation, $approval = FALSE) {
$edit = array();
$edit['operation'] = $operation;
$edit['comments[' . $comment
->id() . ']'] = TRUE;
$this
->drupalPostForm('admin/content/comment' . ($approval ? '/approval' : ''), $edit, t('Update'));
if ($operation == 'delete') {
$this
->drupalPostForm(NULL, array(), t('Delete comments'));
$this
->assertRaw(\Drupal::translation()
->formatPlural(1, 'Deleted 1 comment.', 'Deleted @count comments.'), format_string('Operation "@operation" was performed on comment.', array(
'@operation' => $operation,
)));
}
else {
$this
->assertText(t('The update has been performed.'), format_string('Operation "@operation" was performed on comment.', array(
'@operation' => $operation,
)));
}
}