wiki.techinc.nl/tests/phpunit/includes/utils/FileContentsHasherTest.php
Kunal Mehta 6e9b4f0e9c Convert all array() syntax to []
Per wikitech-l consensus:
 https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html

Notes:
* Disabled CallTimePassByReference due to false positives (T127163)

Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
2016-02-17 01:33:00 -08:00

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::getFileContentHash
* @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::getFileContentHash
* @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 );
}
}