CommentTestBase.php in Zircon Profile 8.0
File
core/modules/comment/src/Tests/Views/CommentTestBase.php
View source
<?php
namespace Drupal\comment\Tests\Views;
use Drupal\comment\Tests\CommentTestTrait;
use Drupal\views\Tests\ViewTestBase;
use Drupal\views\Tests\ViewTestData;
abstract class CommentTestBase extends ViewTestBase {
use CommentTestTrait;
public static $modules = array(
'node',
'comment',
'comment_test_views',
);
protected $account;
protected $account2;
protected $nodeUserPosted;
protected $nodeUserCommented;
protected $comment;
protected function setUp() {
parent::setUp();
ViewTestData::createTestViews(get_class($this), array(
'comment_test_views',
));
$this->account = $this
->drupalCreateUser(array(
'skip comment approval',
));
$this->account2 = $this
->drupalCreateUser();
$this
->drupalLogin($this->account);
$this
->drupalCreateContentType(array(
'type' => 'page',
'name' => t('Basic page'),
));
$this
->addDefaultCommentField('node', 'page');
$this->nodeUserPosted = $this
->drupalCreateNode();
$this->nodeUserCommented = $this
->drupalCreateNode(array(
'uid' => $this->account2
->id(),
));
$comment = array(
'uid' => $this->loggedInUser
->id(),
'entity_id' => $this->nodeUserCommented
->id(),
'entity_type' => 'node',
'field_name' => 'comment',
'subject' => 'How much wood would a woodchuck chuck',
'cid' => '',
'pid' => '',
'mail' => 'someone@example.com',
);
$this->comment = entity_create('comment', $comment);
$this->comment
->save();
}
}