34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
|
|
<?php
|
||
|
|
use MediaWiki\Tests\Maintenance\MaintenanceBaseTestCase;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @covers DeleteUserEmail
|
||
|
|
*/
|
||
|
|
class DeleteUserEmailTest extends MaintenanceBaseTestCase {
|
||
|
|
public function getMaintenanceClass() {
|
||
|
|
return DeleteUserEmail::class;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function testEmailDeletion() {
|
||
|
|
// Target test user 'UTSysop', make sure it has an email attached
|
||
|
|
$userName = 'UTSysop';
|
||
|
|
$userFactory = $this->getServiceContainer()->getUserFactory();
|
||
|
|
$testUserBeforeExecution = $userFactory->newFromName( $userName );
|
||
|
|
$oldEmail = $testUserBeforeExecution->getEmail();
|
||
|
|
$this->assertNotNull( $oldEmail );
|
||
|
|
|
||
|
|
// Execute the maintance script
|
||
|
|
$this->maintenance->loadWithArgv( [ $userName ] );
|
||
|
|
$this->maintenance->execute();
|
||
|
|
|
||
|
|
// Check that the email address was changed and invalidated
|
||
|
|
$testUserAfterExecution = $userFactory->newFromName( $userName );
|
||
|
|
$this->assertNotEquals( $oldEmail, $testUserAfterExecution->getEmail() );
|
||
|
|
$this->assertSame( '', $testUserAfterExecution->getEmail() );
|
||
|
|
$this->assertNull( $testUserAfterExecution->getEmailAuthenticationTimestamp() );
|
||
|
|
|
||
|
|
// Check that the script returns the right output
|
||
|
|
$this->expectOutputRegex( '/Done!/' );
|
||
|
|
}
|
||
|
|
}
|