Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4109729
OATHUserRepositoryTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
OATHUserRepositoryTest.php
View Options
<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
namespace
MediaWiki\Extension\OATHAuth\Tests\Integration
;
use
MediaWiki\Extension\OATHAuth\Key\TOTPKey
;
use
MediaWiki\Extension\OATHAuth\OATHAuthServices
;
use
MediaWiki\Extension\OATHAuth\OATHUserRepository
;
use
MediaWiki\User\CentralId\CentralIdLookup
;
use
MediaWiki\User\CentralId\CentralIdLookupFactory
;
use
MediaWikiIntegrationTestCase
;
use
Psr\Log\LoggerInterface
;
use
Wikimedia\ObjectCache\EmptyBagOStuff
;
use
Wikimedia\Rdbms\IConnectionProvider
;
use
Wikimedia\TestingAccessWrapper
;
/**
* @author Taavi Väänänen <hi@taavi.wtf>
* @group Database
* @coversDefaultClass \MediaWiki\Extension\OATHAuth\OATHUserRepository
*/
class
OATHUserRepositoryTest
extends
MediaWikiIntegrationTestCase
{
/**
* @covers ::findByUser
* @covers ::loadKeysFromDatabase
* @covers ::createKey
* @covers ::updateKey
* @covers ::remove
*/
public
function
testLookupCreateRemoveKey
():
void
{
$user
=
$this
->
getTestUser
()->
getUser
();
$dbProvider
=
$this
->
createMock
(
IConnectionProvider
::
class
);
$dbProvider
->
method
(
'getPrimaryDatabase'
)->
with
(
'virtual-oathauth'
)->
willReturn
(
$this
->
getDb
()
);
$dbProvider
->
method
(
'getReplicaDatabase'
)->
with
(
'virtual-oathauth'
)->
willReturn
(
$this
->
getDb
()
);
$moduleRegistry
=
OATHAuthServices
::
getInstance
(
$this
->
getServiceContainer
()
)->
getModuleRegistry
();
$module
=
$moduleRegistry
->
getModuleByKey
(
'totp'
);
$lookup
=
$this
->
createMock
(
CentralIdLookup
::
class
);
$lookup
->
method
(
'centralIdFromLocalUser'
)
->
with
(
$user
)
->
willReturn
(
12345
);
$lookupFactory
=
$this
->
createMock
(
CentralIdLookupFactory
::
class
);
$lookupFactory
->
method
(
'getLookup'
)->
willReturn
(
$lookup
);
$logger
=
$this
->
createMock
(
LoggerInterface
::
class
);
$repository
=
new
OATHUserRepository
(
$dbProvider
,
new
EmptyBagOStuff
(),
$moduleRegistry
,
$lookupFactory
,
$logger
);
$oathUser
=
$repository
->
findByUser
(
$user
);
$this
->
assertEquals
(
12345
,
$oathUser
->
getCentralId
()
);
$this
->
assertEquals
(
[],
$oathUser
->
getKeys
()
);
$this
->
expectDeprecationAndContinue
(
'/OATHUser::getModule/'
);
$this
->
assertNull
(
$oathUser
->
getModule
()
);
/** @var TOTPKey $key */
$key
=
$repository
->
createKey
(
$oathUser
,
$module
,
TOTPKey
::
newFromRandom
()->
jsonSerialize
(),
'127.0.0.1'
);
$this
->
assertNotEmpty
(
$this
->
getDb
()->
newSelectQueryBuilder
()
->
select
(
'1'
)
->
from
(
'oathauth_devices'
)
->
where
(
[
'oad_user'
=>
$oathUser
->
getCentralId
()
]
)
);
$this
->
assertArrayEquals
(
[
$key
],
$oathUser
->
getKeys
()
);
$this
->
expectDeprecationAndContinue
(
'/OATHUser::getModule/'
);
$this
->
assertEquals
(
$module
,
$oathUser
->
getModule
()
);
// Test looking it up again from the database
$this
->
assertArrayEquals
(
[
$key
],
$repository
->
findByUser
(
$user
)->
getKeys
()
);
// Use a scratch code, which causes the key to be updated.
TestingAccessWrapper
::
newFromObject
(
$key
)->
recoveryCodes
=
[
'new scratch tokens'
];
$repository
->
updateKey
(
$oathUser
,
$key
);
$this
->
assertEquals
(
[
'new scratch tokens'
],
$repository
->
findByUser
(
$user
)->
getKeys
()[
0
]->
getScratchTokens
()
);
$repository
->
removeKey
(
$oathUser
,
$key
,
'127.0.0.1'
,
true
);
$this
->
assertEquals
(
[],
$oathUser
->
getKeys
()
);
$this
->
expectDeprecationAndContinue
(
'/OATHUser::getModule/'
);
$this
->
assertNull
(
$oathUser
->
getModule
()
);
$this
->
assertEquals
(
[],
$repository
->
findByUser
(
$user
)->
getKeys
()
);
}
/**
* @covers ::findByUser
* @covers ::loadKeysFromDatabase
*/
public
function
testUserWithNoCentralId
()
{
$user
=
$this
->
getTestUser
()->
getUser
();
$lookup
=
$this
->
createMock
(
CentralIdLookup
::
class
);
$lookup
->
method
(
'centralIdFromLocalUser'
)
->
with
(
$user
)
->
willReturn
(
0
);
$lookupFactory
=
$this
->
createMock
(
CentralIdLookupFactory
::
class
);
$lookupFactory
->
method
(
'getLookup'
)->
willReturn
(
$lookup
);
$repository
=
new
OATHUserRepository
(
$this
->
createNoOpMock
(
IConnectionProvider
::
class
),
new
EmptyBagOStuff
(),
OATHAuthServices
::
getInstance
(
$this
->
getServiceContainer
()
)->
getModuleRegistry
(),
$lookupFactory
,
$this
->
createMock
(
LoggerInterface
::
class
),
);
$oathUser
=
$repository
->
findByUser
(
$user
);
$this
->
assertSame
(
0
,
$oathUser
->
getCentralId
()
);
$this
->
assertEquals
(
[],
$oathUser
->
getKeys
()
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 21:13 (5 d, 20 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
5b/b0/20533c3fa3dc2c1e7ccc720860fd
Default Alt Text
OATHUserRepositoryTest.php (4 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment