wiki.techinc.nl/tests/phpunit/includes/utils/FileContentsHasherTest.php
Thiemo Kreuz 20b2c5000d Make use of array deconstruction directly in foreach, if possible
Deconstructing non-sparse, numerically indexed arrays directly in
foreach (a.k.a. using the list() syntax in foreach) is possible since
PHP 5.5.

The possibility to use string array keys as well as non-sequential
numeric keys in array deconstruction was added in PHP 7.1.

Change-Id: I56a48552a45f61cedc291b306cad8548fc70d485
2020-11-12 18:38:06 +00:00

56 lines
1.7 KiB
PHP

<?php
/**
* @covers FileContentsHasherTest
*/
class FileContentsHasherTest extends PHPUnit\Framework\TestCase {
use MediaWikiCoversValidator;
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 [ $fileName, $contents ] ) {
$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 );
}
}