FileViewsFieldAccessTest.php

Same filename and directory in other branches
  1. 9 core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php
  2. 10 core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php
  3. 11.x core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php

Namespace

Drupal\Tests\file\Kernel\Views

File

core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php

View source
<?php

namespace Drupal\Tests\file\Kernel\Views;

use Drupal\file\Entity\File;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\user\Entity\User;
use Drupal\Tests\views\Kernel\Handler\FieldFieldAccessTestBase;

/**
 * Tests base field access in Views for the file entity.
 *
 * @group File
 */
class FileViewsFieldAccessTest extends FieldFieldAccessTestBase {
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'file',
        'entity_test',
        'language',
        'user',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp($import_test_views = TRUE) {
        parent::setUp($import_test_views);
        $this->installEntitySchema('file');
    }
    
    /**
     * Check access for file fields.
     */
    public function testFileFields() {
        ConfigurableLanguage::create([
            'id' => 'fr',
            'name' => 'French',
        ])->save();
        $user = User::create([
            'name' => 'test user',
        ]);
        $user->save();
        file_put_contents('public://test.txt', 'test');
        $file = File::create([
            'filename' => 'test.txt',
            'uri' => 'public://test.txt',
            'status' => TRUE,
            'langcode' => 'fr',
            'uid' => $user->id(),
        ]);
        $file->save();
        // @todo Expand the test coverage in https://www.drupal.org/node/2464635
        $this->assertFieldAccess('file', 'fid', $file->id());
        $this->assertFieldAccess('file', 'uuid', $file->uuid());
        $this->assertFieldAccess('file', 'langcode', $file->language()
            ->getName());
        $this->assertFieldAccess('file', 'uid', 'test user');
        $this->assertFieldAccess('file', 'filename', $file->getFilename());
        $this->assertFieldAccess('file', 'uri', $file->getFileUri());
        $this->assertFieldAccess('file', 'filemime', $file->filemime->value);
        $this->assertFieldAccess('file', 'filesize', '4 bytes');
        $this->assertFieldAccess('file', 'status', t('Permanent'));
        // $this->assertFieldAccess('file', 'created', \Drupal::service('date.formatter')->format(123456));
        // $this->assertFieldAccess('file', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
    }

}

Classes

Title Deprecated Summary
FileViewsFieldAccessTest Tests base field access in Views for the file entity.

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