wiki.techinc.nl/tests/phpunit/maintenance/ResetUserEmailTest.php
Dreamy Jazz bfe4598d7f Test resetUserEmail.php
Why:
* The maintenance scripts in core are mostly untested and testing
  the less complex scripts will improve the test coverage in core.

What:
* Add integration tests for resetUserEmail.php that partly cover
  the script.

Bug: T371167
Change-Id: Ie5f0934654d8228cebb5953a5fefa3343631999c
2024-07-27 21:54:37 +00:00

62 lines
2.2 KiB
PHP

<?php
use MediaWiki\Tests\Maintenance\MaintenanceBaseTestCase;
use Wikimedia\Timestamp\ConvertibleTimestamp;
/**
* @covers \ResetUserEmail
* @group Database
* @author Dreamy Jazz
*/
class ResetUserEmailTest extends MaintenanceBaseTestCase {
public function getMaintenanceClass() {
return ResetUserEmail::class;
}
private function commonTestEmailReset( $userArg, $options, $userName, $oldEmail ) {
ConvertibleTimestamp::setFakeTime( '20240506070809' );
// Execute the maintenance script
$this->maintenance->loadWithArgv( [ $userArg, 'new@mediawiki.test' ] );
foreach ( $options as $name => $value ) {
$this->maintenance->setOption( $name, $value );
}
$this->maintenance->execute();
// Check that the email address was changed and invalidated
$userFactory = $this->getServiceContainer()->getUserFactory();
$testUserAfterExecution = $userFactory->newFromName( $userName );
$this->assertNotEquals( $oldEmail, $testUserAfterExecution->getEmail() );
$this->assertSame( 'new@mediawiki.test', $testUserAfterExecution->getEmail() );
$this->assertSame(
'20240506070809',
$testUserAfterExecution->getEmailAuthenticationTimestamp()
);
// Check that the script returns the right output
$this->expectOutputRegex( '/Done!/' );
}
public function testEmailResetWithNoPasswordResetWhenProvidingName() {
// Target an existing user with an email attached
$testUserBeforeExecution = $this->getTestSysop()->getUser();
$oldEmail = $testUserBeforeExecution->getEmail();
$this->assertNotNull( $oldEmail );
// Test providing the maintenance script with a username.
$this->commonTestEmailReset(
$testUserBeforeExecution->getName(), [ 'no-reset-password' => 1 ], $testUserBeforeExecution->getName(),
$oldEmail
);
}
public function testEmailDeletionWithNoPasswordResetWhenProvidingId() {
// Target an existing user with an email attached
$testUserBeforeExecution = $this->getTestSysop()->getUser();
$oldEmail = $testUserBeforeExecution->getEmail();
$this->assertNotNull( $oldEmail );
// Test providing the maintenance script with a user ID.
$this->commonTestEmailReset(
"#" . $testUserBeforeExecution->getId(), [ 'no-reset-password' => 1 ],
$testUserBeforeExecution->getName(), $oldEmail
);
}
}