Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / file / src / Tests / FileTokenReplaceTest.php
diff --git a/web/core/modules/file/src/Tests/FileTokenReplaceTest.php b/web/core/modules/file/src/Tests/FileTokenReplaceTest.php
deleted file mode 100644 (file)
index 5bfa07b..0000000
+++ /dev/null
@@ -1,97 +0,0 @@
-<?php
-
-namespace Drupal\file\Tests;
-
-use Drupal\Component\Utility\Html;
-use Drupal\Core\Render\BubbleableMetadata;
-use Drupal\file\Entity\File;
-
-/**
- * Generates text using placeholders for dummy content to check file token
- * replacement.
- *
- * @group file
- */
-class FileTokenReplaceTest extends FileFieldTestBase {
-  /**
-   * Creates a file, then tests the tokens generated from it.
-   */
-  public function testFileTokenReplacement() {
-    $node_storage = $this->container->get('entity.manager')->getStorage('node');
-    $token_service = \Drupal::token();
-    $language_interface = \Drupal::languageManager()->getCurrentLanguage();
-
-    // Create file field.
-    $type_name = 'article';
-    $field_name = 'field_' . strtolower($this->randomMachineName());
-    $this->createFileField($field_name, 'node', $type_name);
-
-    $test_file = $this->getTestFile('text');
-    // Coping a file to test uploads with non-latin filenames.
-    $filename = drupal_dirname($test_file->getFileUri()) . '/текстовый файл.txt';
-    $test_file = file_copy($test_file, $filename);
-
-    // Create a new node with the uploaded file.
-    $nid = $this->uploadNodeFile($test_file, $field_name, $type_name);
-
-    // Load the node and the file.
-    $node_storage->resetCache([$nid]);
-    $node = $node_storage->load($nid);
-    $file = File::load($node->{$field_name}->target_id);
-
-    // Generate and test sanitized tokens.
-    $tests = [];
-    $tests['[file:fid]'] = $file->id();
-    $tests['[file:name]'] = Html::escape($file->getFilename());
-    $tests['[file:path]'] = Html::escape($file->getFileUri());
-    $tests['[file:mime]'] = Html::escape($file->getMimeType());
-    $tests['[file:size]'] = format_size($file->getSize());
-    $tests['[file:url]'] = Html::escape(file_create_url($file->getFileUri()));
-    $tests['[file:created]'] = format_date($file->getCreatedTime(), 'medium', '', NULL, $language_interface->getId());
-    $tests['[file:created:short]'] = format_date($file->getCreatedTime(), 'short', '', NULL, $language_interface->getId());
-    $tests['[file:changed]'] = format_date($file->getChangedTime(), 'medium', '', NULL, $language_interface->getId());
-    $tests['[file:changed:short]'] = format_date($file->getChangedTime(), 'short', '', NULL, $language_interface->getId());
-    $tests['[file:owner]'] = Html::escape($this->adminUser->getDisplayName());
-    $tests['[file:owner:uid]'] = $file->getOwnerId();
-
-    $base_bubbleable_metadata = BubbleableMetadata::createFromObject($file);
-    $metadata_tests = [];
-    $metadata_tests['[file:fid]'] = $base_bubbleable_metadata;
-    $metadata_tests['[file:name]'] = $base_bubbleable_metadata;
-    $metadata_tests['[file:path]'] = $base_bubbleable_metadata;
-    $metadata_tests['[file:mime]'] = $base_bubbleable_metadata;
-    $metadata_tests['[file:size]'] = $base_bubbleable_metadata;
-    $bubbleable_metadata = clone $base_bubbleable_metadata;
-    $metadata_tests['[file:url]'] = $bubbleable_metadata->addCacheContexts(['url.site']);
-    $bubbleable_metadata = clone $base_bubbleable_metadata;
-    $metadata_tests['[file:created]'] = $bubbleable_metadata->addCacheTags(['rendered']);
-    $metadata_tests['[file:created:short]'] = $bubbleable_metadata;
-    $metadata_tests['[file:changed]'] = $bubbleable_metadata;
-    $metadata_tests['[file:changed:short]'] = $bubbleable_metadata;
-    $bubbleable_metadata = clone $base_bubbleable_metadata;
-    $metadata_tests['[file:owner]'] = $bubbleable_metadata->addCacheTags(['user:2']);
-    $metadata_tests['[file:owner:uid]'] = $bubbleable_metadata;
-
-    // Test to make sure that we generated something for each token.
-    $this->assertFalse(in_array(0, array_map('strlen', $tests)), 'No empty tokens generated.');
-
-    foreach ($tests as $input => $expected) {
-      $bubbleable_metadata = new BubbleableMetadata();
-      $output = $token_service->replace($input, ['file' => $file], ['langcode' => $language_interface->getId()], $bubbleable_metadata);
-      $this->assertEqual($output, $expected, format_string('Sanitized file token %token replaced.', ['%token' => $input]));
-      $this->assertEqual($bubbleable_metadata, $metadata_tests[$input]);
-    }
-
-    // Generate and test unsanitized tokens.
-    $tests['[file:name]'] = $file->getFilename();
-    $tests['[file:path]'] = $file->getFileUri();
-    $tests['[file:mime]'] = $file->getMimeType();
-    $tests['[file:size]'] = format_size($file->getSize());
-
-    foreach ($tests as $input => $expected) {
-      $output = $token_service->replace($input, ['file' => $file], ['langcode' => $language_interface->getId(), 'sanitize' => FALSE]);
-      $this->assertEqual($output, $expected, format_string('Unsanitized file token %token replaced.', ['%token' => $input]));
-    }
-  }
-
-}