Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / page_cache / tests / src / Functional / PageCacheTagsIntegrationTest.php
diff --git a/web/core/modules/page_cache/tests/src/Functional/PageCacheTagsIntegrationTest.php b/web/core/modules/page_cache/tests/src/Functional/PageCacheTagsIntegrationTest.php
new file mode 100644 (file)
index 0000000..5f84a34
--- /dev/null
@@ -0,0 +1,164 @@
+<?php
+
+namespace Drupal\Tests\page_cache\Functional;
+
+use Drupal\Core\EventSubscriber\MainContentViewSubscriber;
+use Drupal\Core\Language\LanguageInterface;
+use Drupal\node\NodeInterface;
+use Drupal\Tests\system\Functional\Cache\AssertPageCacheContextsAndTagsTrait;
+use Drupal\Tests\BrowserTestBase;
+
+/**
+ * Enables the page cache and tests its cache tags in various scenarios.
+ *
+ * @group Cache
+ * @see \Drupal\Tests\page_cache\Functional\PageCacheTest
+ * @see \Drupal\node\Tests\NodePageCacheTest
+ * @see \Drupal\menu_ui\Tests\MenuTest::testMenuBlockPageCacheTags()
+ */
+class PageCacheTagsIntegrationTest extends BrowserTestBase {
+
+  use AssertPageCacheContextsAndTagsTrait;
+
+  protected $profile = 'standard';
+
+  protected $dumpHeaders = TRUE;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+
+    $this->enablePageCaching();
+  }
+
+  /**
+   * Test that cache tags are properly bubbled up to the page level.
+   */
+  public function testPageCacheTags() {
+    // Create two nodes.
+    $author_1 = $this->drupalCreateUser();
+    $node_1 = $this->drupalCreateNode([
+      'uid' => $author_1->id(),
+      'title' => 'Node 1',
+      'body' => [
+        0 => ['value' => 'Body 1', 'format' => 'basic_html'],
+      ],
+      'promote' => NodeInterface::PROMOTED,
+    ]);
+    $author_2 = $this->drupalCreateUser();
+    $node_2 = $this->drupalCreateNode([
+      'uid' => $author_2->id(),
+      'title' => 'Node 2',
+      'body' => [
+        0 => ['value' => 'Body 2', 'format' => 'full_html'],
+      ],
+      'promote' => NodeInterface::PROMOTED,
+    ]);
+
+    // Place a block, but only make it visible on full node page 2.
+    $block = $this->drupalPlaceBlock('views_block:comments_recent-block_1', [
+      'visibility' => [
+        'request_path' => [
+          'pages' => '/node/' . $node_2->id(),
+        ],
+      ],
+    ]);
+
+    $cache_contexts = [
+      'languages:' . LanguageInterface::TYPE_INTERFACE,
+      'route',
+      'theme',
+      'timezone',
+      'user',
+      // The placed block is only visible on certain URLs through a visibility
+      // condition.
+      'url.path',
+      'url.query_args:' . MainContentViewSubscriber::WRAPPER_FORMAT,
+    ];
+
+    // Full node page 1.
+    $this->assertPageCacheContextsAndTags($node_1->urlInfo(), $cache_contexts, [
+      'http_response',
+      'rendered',
+      'block_view',
+      'config:block_list',
+      'config:block.block.bartik_branding',
+      'config:block.block.bartik_breadcrumbs',
+      'config:block.block.bartik_content',
+      'config:block.block.bartik_tools',
+      'config:block.block.bartik_footer',
+      'config:block.block.bartik_help',
+      'config:block.block.bartik_search',
+      'config:block.block.' . $block->id(),
+      'config:block.block.bartik_powered',
+      'config:block.block.bartik_main_menu',
+      'config:block.block.bartik_account_menu',
+      'config:block.block.bartik_messages',
+      'config:block.block.bartik_local_actions',
+      'config:block.block.bartik_local_tasks',
+      'config:block.block.bartik_page_title',
+      'node_view',
+      'node:' . $node_1->id(),
+      'user:0',
+      'user:' . $author_1->id(),
+      'config:filter.format.basic_html',
+      'config:color.theme.bartik',
+      'config:search.settings',
+      'config:system.menu.account',
+      'config:system.menu.tools',
+      'config:system.menu.footer',
+      'config:system.menu.main',
+      'config:system.site',
+      // FinishResponseSubscriber adds this cache tag to responses that have the
+      // 'user.permissions' cache context for anonymous users.
+      'config:user.role.anonymous',
+    ]);
+
+    // Render the view block adds the languages cache context.
+    $cache_contexts[] = 'languages:' . LanguageInterface::TYPE_CONTENT;
+
+    // Full node page 2.
+    $this->assertPageCacheContextsAndTags($node_2->urlInfo(), $cache_contexts, [
+      'http_response',
+      'rendered',
+      'block_view',
+      'config:block_list',
+      'config:block.block.bartik_branding',
+      'config:block.block.bartik_breadcrumbs',
+      'config:block.block.bartik_content',
+      'config:block.block.bartik_tools',
+      'config:block.block.bartik_help',
+      'config:block.block.bartik_search',
+      'config:block.block.' . $block->id(),
+      'config:block.block.bartik_footer',
+      'config:block.block.bartik_powered',
+      'config:block.block.bartik_main_menu',
+      'config:block.block.bartik_account_menu',
+      'config:block.block.bartik_messages',
+      'config:block.block.bartik_local_actions',
+      'config:block.block.bartik_local_tasks',
+      'config:block.block.bartik_page_title',
+      'node_view',
+      'node:' . $node_2->id(),
+      'user:' . $author_2->id(),
+      'config:color.theme.bartik',
+      'config:filter.format.full_html',
+      'config:search.settings',
+      'config:system.menu.account',
+      'config:system.menu.tools',
+      'config:system.menu.footer',
+      'config:system.menu.main',
+      'config:system.site',
+      'comment_list',
+      'node_list',
+      'config:views.view.comments_recent',
+      // FinishResponseSubscriber adds this cache tag to responses that have the
+      // 'user.permissions' cache context for anonymous users.
+      'config:user.role.anonymous',
+      'user:0',
+    ]);
+  }
+
+}