public function FileNormalizeTest::testNormalize in Drupal 8
Same name and namespace in other branches
- 9 core/modules/hal/tests/src/Kernel/FileNormalizeTest.php \Drupal\Tests\hal\Kernel\FileNormalizeTest::testNormalize()
Tests the normalize function.
File
- core/modules/ hal/ tests/ src/ Kernel/ FileNormalizeTest.php, line 32 
Class
- FileNormalizeTest
- Tests that file entities can be normalized in HAL.
Namespace
Drupal\Tests\hal\KernelCode
public function testNormalize() {
  $file_params = [
    'filename' => 'test_1.txt',
    'uri' => 'public://test_1.txt',
    'filemime' => 'text/plain',
    'status' => FILE_STATUS_PERMANENT,
  ];
  // Create a new file entity.
  $file = File::create($file_params);
  file_put_contents($file
    ->getFileUri(), 'hello world');
  $file
    ->save();
  $expected_array = [
    'uri' => [
      [
        'value' => $file
          ->getFileUri(),
        'url' => $file
          ->createFileUrl(),
      ],
    ],
  ];
  $normalized = $this->serializer
    ->normalize($file, $this->format);
  $this
    ->assertEqual($normalized['uri'], $expected_array['uri'], 'URI is normalized.');
}