Skip to content
Snippets Groups Projects
Verified Commit 93978522 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3387172 by Mingsong, smustgrave, mlncn, Kanchan Bhogade, larowlan:...

Issue #3387172 by Mingsong, smustgrave, mlncn, Kanchan Bhogade, larowlan: Unpublished forum accessible to public

(cherry picked from commit f660bb4c)
parent 5d5a43b8
No related branches found
No related tags found
9 merge requests!8376Drupal views: adding more granularity to the ‘use ajax’ functionality,!8300Issue #3443586 View area displays even when parent view has no results.,!7567Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7565Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7509Change label "Block description" to "Block type",!7344Issue #3292350 by O'Briat, KlemenDEV, hswong3i, smustgrave, quietone: Update...,!6922Issue #3412959 by quietone, smustgrave, longwave: Fix 12 'un' words,!6848Issue #3417553 by longwave: Remove withConsecutive() in CacheCollectorTest,!6720Revert "Issue #3358581 by pfrenssen, _tarik_, a.dmitriiev, smustgrave:...
Pipeline #97836 passed with warnings
Pipeline: drupal

#97850

    Pipeline: drupal

    #97844

      Pipeline: drupal

      #97842

        +1
        ...@@ -29,6 +29,7 @@ forum.page: ...@@ -29,6 +29,7 @@ forum.page:
        _title_callback: '\Drupal\taxonomy\Controller\TaxonomyController::termTitle' _title_callback: '\Drupal\taxonomy\Controller\TaxonomyController::termTitle'
        requirements: requirements:
        _permission: 'access content' _permission: 'access content'
        _entity_access: 'taxonomy_term.view'
        forum.add_container: forum.add_container:
        path: '/admin/structure/forum/add/container' path: '/admin/structure/forum/add/container'
        ......
        ...@@ -415,6 +415,9 @@ public function getChildren($vid, $tid) { ...@@ -415,6 +415,9 @@ public function getChildren($vid, $tid) {
        $forums = []; $forums = [];
        $_forums = $this->entityTypeManager->getStorage('taxonomy_term')->loadTree($vid, $tid, NULL, TRUE); $_forums = $this->entityTypeManager->getStorage('taxonomy_term')->loadTree($vid, $tid, NULL, TRUE);
        foreach ($_forums as $forum) { foreach ($_forums as $forum) {
        if (!$forum->access('view')) {
        continue;
        }
        // Merge in the topic and post counters. // Merge in the topic and post counters.
        if (($count = $this->getForumStatistics($forum->id()))) { if (($count = $this->getForumStatistics($forum->id()))) {
        $forum->num_topics = $count->topic_count; $forum->num_topics = $count->topic_count;
        ......
        <?php
        namespace Drupal\Tests\forum\Functional;
        use Drupal\Tests\BrowserTestBase;
        use Drupal\taxonomy\Entity\Term;
        /**
        * Tests forum taxonomy terms for access.
        *
        * @group forum
        */
        class ForumTermAccessTest extends BrowserTestBase {
        /**
        * Modules to enable.
        *
        * @var array
        */
        protected static $modules = [
        'forum',
        'taxonomy',
        ];
        /**
        * {@inheritdoc}
        */
        protected $defaultTheme = 'stark';
        /**
        * Creates some users and creates a public forum and an unpublished forum.
        *
        * Adds both published and unpublished forums.
        * Tests to ensure publish/unpublished forums access is respected.
        */
        public function testForumTermAccess(): void {
        $assert_session = $this->assertSession();
        // Create some users.
        $public_user = $this->drupalCreateUser(['access content']);
        $admin_user = $this->drupalCreateUser([
        'access administration pages',
        'administer forums',
        'administer taxonomy',
        'access taxonomy overview',
        ]);
        $this->drupalLogin($admin_user);
        // The vocabulary for forums.
        $vid = $this->config('forum.settings')->get('vocabulary');
        // Create an unpublished forum.
        $unpublished_forum_name = $this->randomMachineName(8);
        $unpublished_forum = Term::create([
        'vid' => $vid,
        'name' => $unpublished_forum_name,
        'status' => 0,
        ]);
        $unpublished_forum->save();
        // Create a new published forum.
        $published_forum_name = $this->randomMachineName(8);
        $published_forum = Term::create([
        'vid' => $vid,
        'name' => $published_forum_name,
        'status' => 1,
        ]);
        $published_forum->save();
        // Test for admin user.
        // Go to the Forum index page.
        $this->drupalGet('forum');
        // The unpublished forum should be in this page for an admin user.
        $assert_session->pageTextContains($unpublished_forum_name);
        // Go to the unpublished forum page.
        $this->drupalGet('forum/' . $unpublished_forum->id());
        $assert_session->statusCodeEquals(200);
        $assert_session->pageTextContains($unpublished_forum_name);
        // Test for public user.
        $this->drupalLogin($public_user);
        // Go to the Forum index page.
        $this->drupalGet('forum');
        // The published forum should be in this page.
        $assert_session->pageTextContains($published_forum_name);
        // The unpublished forum should not be in this page.
        $assert_session->pageTextNotContains($unpublished_forum_name);
        // Go to the unpublished forum page.
        $this->drupalGet('forum/' . $unpublished_forum->id());
        // Public should not be able to access the unpublished forum.
        $assert_session->statusCodeEquals(403);
        $assert_session->pageTextNotContains($unpublished_forum_name);
        }
        }
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment