Issue #2120877 by quietone, BryanGullan, duellj, jibran, miro_dietiker, dags: Add tests for tracker module's Tools menu link

(cherry picked from commit 1ea2763329)
merge-requests/64/head
Alex Pott 2020-06-28 14:08:54 +01:00
parent 9e9e25b770
commit d63ddf191e
No known key found for this signature in database
GPG Key ID: 31905460D4A69276
1 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,47 @@
<?php
namespace Drupal\Tests\tracker\Functional;
use Drupal\Tests\BrowserTestBase;
/**
* Tests recent content link.
*
* @group tracker
*/
class TrackerRecentContentLinkTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['block', 'tracker'];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Tests the recent content link in menu block.
*/
public function testRecentContentLink() {
$this->drupalGet('<front>');
$this->assertSession()->linkNotExists('Recent content');
$this->drupalPlaceBlock('system_menu_block:tools');
// Create a regular user.
$user = $this->drupalCreateUser();
// Log in and get the homepage.
$this->drupalLogin($user);
$this->drupalGet('<front>');
$link = $this->xpath('//ul/li/a[contains(@href, :href) and text()=:text]', [
':menu_class' => 'menu-item',
':href' => '/activity',
':text' => 'Recent content',
]);
$this->assertCount(1, $link);
}
}