diff --git a/core/modules/tracker/tests/src/Functional/TrackerRecentContentLinkTest.php b/core/modules/tracker/tests/src/Functional/TrackerRecentContentLinkTest.php new file mode 100644 index 0000000000000000000000000000000000000000..f0b85b34decff3d4747d238892690a2e9d3d2fdd --- /dev/null +++ b/core/modules/tracker/tests/src/Functional/TrackerRecentContentLinkTest.php @@ -0,0 +1,47 @@ +drupalGet(''); + $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(''); + + $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); + } + +}