You are here

function FileManagedUnitTestBase::assertFileHooksCalled in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/file/src/Tests/FileManagedUnitTestBase.php \Drupal\file\Tests\FileManagedUnitTestBase::assertFileHooksCalled()

Assert that all of the specified hook_file_* hooks were called once, other values result in failure.

Parameters

array $expected: Array with string containing with the hook name, e.g. 'load', 'save', 'insert', etc.

22 calls to FileManagedUnitTestBase::assertFileHooksCalled()
CopyTest::testExistingError in core/modules/file/src/Tests/CopyTest.php
Test that copying over an existing file fails when FILE_EXISTS_ERROR is specified.
CopyTest::testExistingRename in core/modules/file/src/Tests/CopyTest.php
Test renaming when copying over a file that already exists.
CopyTest::testExistingReplace in core/modules/file/src/Tests/CopyTest.php
Test replacement when copying over a file that already exists.
CopyTest::testNormal in core/modules/file/src/Tests/CopyTest.php
Test file copying in the normal, base case.
DeleteTest::testInUse in core/modules/file/src/Tests/DeleteTest.php
Tries deleting a file that is in use.

... See full list

File

core/modules/file/src/Tests/FileManagedUnitTestBase.php, line 52
Contains \Drupal\file\Tests\FileManagedUnitTestBase.

Class

FileManagedUnitTestBase
Base class for file unit tests that use the file_test module to test uploads and hooks.

Namespace

Drupal\file\Tests

Code

function assertFileHooksCalled($expected) {
  \Drupal::state()
    ->resetCache();

  // Determine which hooks were called.
  $actual = array_keys(array_filter(file_test_get_all_calls()));

  // Determine if there were any expected that were not called.
  $uncalled = array_diff($expected, $actual);
  if (count($uncalled)) {
    $this
      ->assertTrue(FALSE, format_string('Expected hooks %expected to be called but %uncalled was not called.', array(
      '%expected' => implode(', ', $expected),
      '%uncalled' => implode(', ', $uncalled),
    )));
  }
  else {
    $this
      ->assertTrue(TRUE, format_string('All the expected hooks were called: %expected', array(
      '%expected' => empty($expected) ? '(none)' : implode(', ', $expected),
    )));
  }

  // Determine if there were any unexpected calls.
  $unexpected = array_diff($actual, $expected);
  if (count($unexpected)) {
    $this
      ->assertTrue(FALSE, format_string('Unexpected hooks were called: %unexpected.', array(
      '%unexpected' => empty($unexpected) ? '(none)' : implode(', ', $unexpected),
    )));
  }
  else {
    $this
      ->assertTrue(TRUE, 'No unexpected hooks were called.');
  }
}