class TrackerTestBase
Same name in this branch
- 8.9.x core/modules/tracker/src/Tests/Views/TrackerTestBase.php \Drupal\tracker\Tests\Views\TrackerTestBase
Base class for all tracker tests.
Hierarchy
- class \Drupal\Tests\BrowserTestBase uses \Drupal\Core\Test\FunctionalTestSetupTrait, \Drupal\Tests\UiHelperTrait, \Drupal\Core\Test\TestSetupTrait, \Drupal\Tests\block\Traits\BlockCreationTrait, \Drupal\FunctionalTests\AssertLegacyTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\node\Traits\NodeCreationTrait, \Drupal\Tests\node\Traits\ContentTypeCreationTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\user\Traits\UserCreationTrait, \Drupal\Tests\XdebugRequestTrait, \Drupal\Tests\PhpunitCompatibilityTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\views\Functional\ViewTestBase uses \Drupal\views\Tests\ViewResultAssertionTrait extends \Drupal\Tests\BrowserTestBase
- class \Drupal\Tests\tracker\Functional\Views\TrackerTestBase uses \Drupal\comment\Tests\CommentTestTrait extends \Drupal\Tests\views\Functional\ViewTestBase
- class \Drupal\Tests\views\Functional\ViewTestBase uses \Drupal\views\Tests\ViewResultAssertionTrait extends \Drupal\Tests\BrowserTestBase
Expanded class hierarchy of TrackerTestBase
Deprecated
in drupal:8.8.0 and is removed from drupal:9.0.0. Instead, use Kernel tests to test tracker module views plugins integration.
See also
https://www.drupal.org/node/3046938
File
-
core/
modules/ tracker/ tests/ src/ Functional/ Views/ TrackerTestBase.php, line 21
Namespace
Drupal\Tests\tracker\Functional\ViewsView source
abstract class TrackerTestBase extends ViewTestBase {
use CommentTestTrait;
/**
* Modules to enable.
*
* @var array
*/
public static $modules = [
'comment',
'tracker',
'tracker_test_views',
];
/**
* The node used for testing.
*
* @var \Drupal\node\NodeInterface
*/
protected $node;
/**
* The comment used for testing.
*
* @var \Drupal\comment\CommentInterface
*/
protected $comment;
protected function setUp($import_test_views = TRUE) {
parent::setUp($import_test_views);
ViewTestData::createTestViews(get_class($this), [
'tracker_test_views',
]);
$this->drupalCreateContentType([
'type' => 'page',
'name' => 'Basic page',
]);
// Add a comment field.
$this->addDefaultCommentField('node', 'page');
$permissions = [
'access comments',
'create page content',
'post comments',
'skip comment approval',
];
$account = $this->drupalCreateUser($permissions);
$this->drupalLogin($account);
$this->node = $this->drupalCreateNode([
'title' => $this->randomMachineName(8),
'uid' => $account->id(),
'status' => 1,
]);
$this->comment = Comment::create([
'entity_id' => $this->node
->id(),
'entity_type' => 'node',
'field_name' => 'comment',
'subject' => $this->randomMachineName(),
'comment_body[' . LanguageInterface::LANGCODE_NOT_SPECIFIED . '][0][value]' => $this->randomMachineName(20),
]);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
TrackerTestBase::$comment | protected | property | The comment used for testing. |
TrackerTestBase::$modules | public static | property | Modules to enable. |
TrackerTestBase::$node | protected | property | The node used for testing. |
TrackerTestBase::setUp | protected | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.