PHP_CodeCoverage_Exception: > Trying to @cover not existing method "SwiftFileBackend::sanitzeHdrs". > Trying to @cover not existing method "LineFormatter::normalizeException". > Trying to @cover not existing method "MonologSpi::mergeConfig". > Trying to @cover not existing method "ProcessCacheLRU::het". > Trying to @cover not existing method "BitmapHandler::swapICCProfile". > Trying to @cover not existing class or interface "checkParseSafety". > Trying to @cover not existing method "Article::__call". (was removed). > Trying to @cover not existing method "ExtensionProcessor::extracttExtensionMessagesFiles". > Trying to @cover not existing method "FileContentsHasher::getFileContentHash". Makes code coverage run fail at the moment. These used to be warnings in PHPUnit 3.x, but are now hard exceptions in PHPUnit 4.x when requesting a coverage report. Change-Id: If7f45ca57fd7d480d35b1414a889398837c0c472
55 lines
1.7 KiB
PHP
55 lines
1.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @covers FileContentsHasherTest
|
|
*/
|
|
class FileContentsHasherTest extends MediaWikiTestCase {
|
|
|
|
public function provideSingleFile() {
|
|
return array_map( function ( $file ) {
|
|
return [ $file, file_get_contents( $file ) ];
|
|
}, glob( __DIR__ . '/../../data/filecontentshasher/*.*' ) );
|
|
}
|
|
|
|
public function provideMultipleFiles() {
|
|
return [
|
|
[ $this->provideSingleFile() ]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers FileContentsHasher::getFileContentsHash
|
|
* @covers FileContentsHasher::getFileContentsHashInternal
|
|
* @dataProvider provideSingleFile
|
|
*/
|
|
public function testSingleFileHash( $fileName, $contents ) {
|
|
foreach ( [ 'md4', 'md5' ] as $algo ) {
|
|
$expectedHash = hash( $algo, $contents );
|
|
$actualHash = FileContentsHasher::getFileContentsHash( $fileName, $algo );
|
|
$this->assertEquals( $expectedHash, $actualHash );
|
|
$actualHashRepeat = FileContentsHasher::getFileContentsHash( $fileName, $algo );
|
|
$this->assertEquals( $expectedHash, $actualHashRepeat );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @covers FileContentsHasher::getFileContentsHash
|
|
* @covers FileContentsHasher::getFileContentsHashInternal
|
|
* @dataProvider provideMultipleFiles
|
|
*/
|
|
public function testMultipleFileHash( $files ) {
|
|
$fileNames = [];
|
|
$hashes = [];
|
|
foreach ( $files as $fileInfo ) {
|
|
list( $fileName, $contents ) = $fileInfo;
|
|
$fileNames[] = $fileName;
|
|
$hashes[] = md5( $contents );
|
|
}
|
|
|
|
$expectedHash = md5( implode( '', $hashes ) );
|
|
$actualHash = FileContentsHasher::getFileContentsHash( $fileNames, 'md5' );
|
|
$this->assertEquals( $expectedHash, $actualHash );
|
|
$actualHashRepeat = FileContentsHasher::getFileContentsHash( $fileNames, 'md5' );
|
|
$this->assertEquals( $expectedHash, $actualHashRepeat );
|
|
}
|
|
}
|