wiki.techinc.nl/tests/phpunit/unit/documentation/ReleaseNotesTest.php
thiemowmde 6208f68751 Relax ReleaseNotesTest to accept long URLs
Needed-For: I1f085532ab720265acb1213f33869f759a987d92
Change-Id: Icb09fed4cd6d0306ce081b0ea1ca63ef55c4ad25
2022-11-07 13:53:49 +01:00

92 lines
2.1 KiB
PHP

<?php
/**
* James doesn't like having to manually fix these things.
* @group ReleaseNotes
*/
class ReleaseNotesTest extends MediaWikiUnitTestCase {
/**
* Verify that at least one Release Notes file exists, have content, and
* aren't overly long.
*
* @group documentation
* @coversNothing
*/
public function testReleaseNotesFilesExistAndAreNotMalformed() {
global $IP;
$notesFiles = glob( "$IP/RELEASE-NOTES-*" );
$this->assertGreaterThanOrEqual(
1,
count( $notesFiles ),
'Repo has at least one Release Notes file.'
);
$versionParts = explode( '.', explode( '-', MW_VERSION )[0] );
$this->assertContains(
"$IP/RELEASE-NOTES-$versionParts[0].$versionParts[1]",
$notesFiles,
'Repo has a Release Notes file for the current MW_VERSION.'
);
foreach ( $notesFiles as $fileName ) {
$this->assertFileLength( "Release Notes", $fileName );
}
}
public static function provideFilesAtRoot() {
global $IP;
$rootFiles = [
"COPYING",
"FAQ",
"HISTORY",
"INSTALL",
"SECURITY",
];
foreach ( $rootFiles as $rootFile ) {
yield "$rootFile file" => [ "$IP/$rootFile" ];
}
}
/**
* @dataProvider provideFilesAtRoot
* @coversNothing
*/
public function testRootFilesHaveProperLineLength( $fileName ) {
$this->assertFileLength( "Help", $fileName );
}
private function assertFileLength( $type, $fileName ) {
$lines = file( $fileName, FILE_IGNORE_NEW_LINES );
$this->assertNotFalse(
$lines,
"$type file '$fileName' is inaccessible."
);
// FILE_IGNORE_NEW_LINES drops the \n at the EOL, so max length is 80 not 81.
$maxLength = 80;
$errors = [];
foreach ( $lines as $i => $line ) {
$length = mb_strlen( $line );
if ( $length <= $maxLength ||
// Lines with nothing but a long URL cannot be split further
preg_match( '/^\W*https?:\/\/\S*$/', $line )
) {
continue;
}
$num = $i + 1;
$errors[] = "line $num: length $length > $maxLength:\n$line";
}
// Use assertSame() instead of assertEqual(), to show the full line in the diff
$this->assertSame(
[],
$errors,
"$type file '$fileName' lines have at most $maxLength characters"
);
}
}