FileNormalizeTest.php

Same filename and directory in other branches
  1. 9 core/modules/hal/tests/src/Kernel/FileNormalizeTest.php

Namespace

Drupal\Tests\hal\Kernel

File

core/modules/hal/tests/src/Kernel/FileNormalizeTest.php

View source
<?php

namespace Drupal\Tests\hal\Kernel;

use Drupal\file\Entity\File;

/**
 * Tests that file entities can be normalized in HAL.
 *
 * @group hal
 */
class FileNormalizeTest extends NormalizerTestBase {
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    public static $modules = [
        'file',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() {
        parent::setUp();
        $this->installEntitySchema('file');
    }
    
    /**
     * Tests the normalize function.
     */
    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.');
    }

}

Classes

Title Deprecated Summary
FileNormalizeTest Tests that file entities can be normalized in HAL.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.