function FileHookTestCase::assertFileHooksCalled in SimpleTest 7
Assert that all of the specified hook_file_* hooks were called once, other values result in failure.
Parameters
$expected: Array with string containing with the hook name, e.g. 'load', 'save', 'insert', etc.
25 calls to FileHookTestCase::assertFileHooksCalled()
- FileCopyTest::testExistingError in tests/
file.test - Test that copying over an existing file fails when FILE_EXISTS_ERROR is specified.
- FileCopyTest::testExistingRename in tests/
file.test - Test renaming when copying over a file that already exists.
- FileCopyTest::testExistingReplace in tests/
file.test - Test replacement when copying over a file that already exists.
- FileCopyTest::testNormal in tests/
file.test - Test file copying in the normal, base case.
- FileDeleteTest::testNormal in tests/
file.test - Try deleting a normal file (as opposed to a directory, symlink, etc).
File
- tests/
file.test, line 222 - This provides SimpleTests for the core file handling functionality. These include FileValidateTest and FileSaveTest.
Class
- FileHookTestCase
- Base class for file tests that use the file_test module to test uploads and hooks.
Code
function assertFileHooksCalled($expected) {
// 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, t('Expected hooks %expected to be called but %uncalled was not called.', array(
'%expected' => implode(', ', $expected),
'%uncalled' => implode(', ', $uncalled),
)));
}
else {
$this
->assertTrue(TRUE, t('All the expected hooks were called: %expected', array(
'%expected' => implode(', ', $expected),
)));
}
// Determine if there were any unexpected calls.
$unexpected = array_diff($actual, $expected);
if (count($unexpected)) {
$this
->assertTrue(FALSE, t('Unexpected hooks were called: %unexpected.', array(
'%unexpected' => implode(', ', $unexpected),
)));
}
else {
$this
->assertTrue(TRUE, t('No unexpected hooks were called.'));
}
}