protected function FileTest::makeCurrentUserFileOwner in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/FileTest.php \Drupal\Tests\jsonapi\Functional\FileTest::makeCurrentUserFileOwner()
Makes the current user the file owner.
1 call to FileTest::makeCurrentUserFileOwner()
- FileTest::setUpAuthorization in tests/src/ Functional/ FileTest.php 
- Sets up the necessary authorization.
File
- tests/src/ Functional/ FileTest.php, line 87 
Class
- FileTest
- JSON API integration test for the "File" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function makeCurrentUserFileOwner() {
  $account = User::load(2);
  $this->entity
    ->setOwnerId($account
    ->id());
  $this->entity
    ->setOwner($account);
  $this->entity
    ->save();
}