Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / system / src / Tests / Update / UpdatePathTestJavaScriptTest.php
diff --git a/web/core/modules/system/src/Tests/Update/UpdatePathTestJavaScriptTest.php b/web/core/modules/system/src/Tests/Update/UpdatePathTestJavaScriptTest.php
deleted file mode 100644 (file)
index 90f3387..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Update;
-
-/**
- * Tests the presence of JavaScript at update.php.
- *
- * @group Update
- */
-class UpdatePathTestJavaScriptTest extends UpdatePathTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setDatabaseDumpFiles() {
-    $this->databaseDumpFiles = [
-      __DIR__ . '/../../../tests/fixtures/update/drupal-8.bare.standard.php.gz',
-    ];
-  }
-
-  /**
-   * Test JavaScript loading at update.php.
-   *
-   * @see ::doPreUpdateTests
-   */
-  public function testJavaScriptLoading() {
-    $this->runUpdates();
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function doSelectionTest() {
-    // Ensure that at least one JS script has drupalSettings in there.
-    $scripts = $this->xpath('//script');
-    $found = FALSE;
-    foreach ($scripts as $script) {
-      if (!isset($script['src'])) {
-        continue;
-      }
-      // Source is a root-relative URL. Transform it to an absolute URL to allow
-      // file_get_contents() to access the file.
-      $src = preg_replace('#^' . $GLOBALS['base_path'] . '(.*)#i', $GLOBALS['base_url'] . '/' . '${1}', (string) $script['src']);
-      $file_content = file_get_contents($src);
-
-      if (strpos($file_content, 'window.drupalSettings =') !== FALSE) {
-        $found = TRUE;
-        break;
-      }
-    }
-
-    $this->assertTrue($found, 'Ensure that the drupalSettingsLoader.js was included in the JS files');
-  }
-
-}