Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4105700
ResetUserEmailTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
ResetUserEmailTest.php
View Options
<?php
use
MediaWiki\MainConfigNames
;
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
testEmailResetWithNoPasswordResetWhenProvidingId
()
{
// Target an existing user with an email attached
$testUserBeforeExecution
=
$this
->
getTestSysop
()->
getUser
();
$oldEmail
=
$testUserBeforeExecution
->
getEmail
();
$this
->
assertNotNull
(
$oldEmail
);
$passwordHashBeforeExecution
=
$this
->
newSelectQueryBuilder
()
->
select
(
'user_password'
)
->
from
(
'user'
)
->
where
(
[
'user_id'
=>
$testUserBeforeExecution
->
getId
()
]
)
->
fetchField
();
// Test providing the maintenance script with a user ID.
$this
->
commonTestEmailReset
(
"#"
.
$testUserBeforeExecution
->
getId
(),
[
'no-reset-password'
=>
1
],
$testUserBeforeExecution
->
getName
(),
$oldEmail
);
// Check that the password hash for the user has not changed
$passwordAfterExecution
=
$this
->
newSelectQueryBuilder
()
->
select
(
'user_password'
)
->
from
(
'user'
)
->
where
(
[
'user_id'
=>
$testUserBeforeExecution
->
getId
()
]
)
->
fetchField
();
$this
->
assertSame
(
$passwordHashBeforeExecution
,
$passwordAfterExecution
);
}
public
function
testEmailReset
()
{
// Target an existing user with an email attached
$testUserBeforeExecution
=
$this
->
getTestSysop
()->
getUser
();
$oldEmail
=
$testUserBeforeExecution
->
getEmail
();
$this
->
assertNotNull
(
$oldEmail
);
$passwordHashBeforeExecution
=
$this
->
newSelectQueryBuilder
()
->
select
(
'user_password'
)
->
from
(
'user'
)
->
where
(
[
'user_id'
=>
$testUserBeforeExecution
->
getId
()
]
)
->
fetchField
();
// Test providing the maintenance script with a user ID.
$this
->
commonTestEmailReset
(
"#"
.
$testUserBeforeExecution
->
getId
(),
[],
$testUserBeforeExecution
->
getName
(),
$oldEmail
);
// Check that the password hash for the user has changed
$passwordAfterExecution
=
$this
->
newSelectQueryBuilder
()
->
select
(
'user_password'
)
->
from
(
'user'
)
->
where
(
[
'user_id'
=>
$testUserBeforeExecution
->
getId
()
]
)
->
fetchField
();
$this
->
assertNotSame
(
$passwordHashBeforeExecution
,
$passwordAfterExecution
);
}
public
function
testEmailResetWithNoPasswordResetAndEmailPasswordOnFailure
()
{
$this
->
overrideConfigValue
(
MainConfigNames
::
EnableEmail
,
true
);
// Abort all password reset submissions for the test
$this
->
setTemporaryHook
(
'SpecialPasswordResetOnSubmit'
,
static
function
(
$users
,
$data
,
&
$error
)
{
$error
=
'test'
;
return
false
;
}
);
// 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
,
'email-password'
=>
1
],
$testUserBeforeExecution
->
getName
(),
$oldEmail
);
$this
->
expectOutputRegex
(
"/Email couldn't be sent because[
\s\S
]*Done/"
);
}
public
function
testEmailResetOnInvalidNewEmail
()
{
$this
->
expectCallToFatalError
();
$this
->
expectOutputRegex
(
"/testemail.*is not valid/"
);
// Execute the maintenance script
$this
->
maintenance
->
setArg
(
0
,
$this
->
getTestUser
()->
getUserIdentity
()->
getName
()
);
$this
->
maintenance
->
setArg
(
1
,
'testemail'
);
$this
->
maintenance
->
execute
();
}
public
function
testEmailResetOnInvalidUsername
()
{
$this
->
expectCallToFatalError
();
$this
->
expectOutputRegex
(
"/Non-existent-test-user.*does not exist/"
);
// Execute the maintenance script
$this
->
maintenance
->
setArg
(
0
,
'Non-existent-test-user'
);
$this
->
maintenance
->
setArg
(
1
,
'new@mediawiki.test'
);
$this
->
maintenance
->
execute
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 19:06 (2 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
12/39/abd36a15e19f0eec7e75451e6aae
Default Alt Text
ResetUserEmailTest.php (5 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment