Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4138398
SimpleAuthorityTest.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
SimpleAuthorityTest.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\Tests\Unit\Permissions
;
use
InvalidArgumentException
;
use
MediaWiki\Page\PageIdentity
;
use
MediaWiki\Page\PageIdentityValue
;
use
MediaWiki\Permissions\PermissionStatus
;
use
MediaWiki\Permissions\SimpleAuthority
;
use
MediaWiki\User\UserIdentityValue
;
use
MediaWikiUnitTestCase
;
/**
* @covers \MediaWiki\Permissions\SimpleAuthority
*/
class
SimpleAuthorityTest
extends
MediaWikiUnitTestCase
{
public
function
testGetAuthor
()
{
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[]
);
$this
->
assertSame
(
$actor
,
$authority
->
getUser
()
);
}
public
function
testPermissions
()
{
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[
'foo'
,
'bar'
]
);
$this
->
assertTrue
(
$authority
->
isAllowed
(
'foo'
)
);
$this
->
assertTrue
(
$authority
->
isAllowed
(
'bar'
)
);
$this
->
assertFalse
(
$authority
->
isAllowed
(
'quux'
)
);
$this
->
assertTrue
(
$authority
->
isAllowedAll
(
'foo'
,
'bar'
)
);
$this
->
assertTrue
(
$authority
->
isAllowedAny
(
'bar'
,
'quux'
)
);
$this
->
assertFalse
(
$authority
->
isAllowedAll
(
'foo'
,
'quux'
)
);
$this
->
assertFalse
(
$authority
->
isAllowedAny
(
'xyzzy'
,
'quux'
)
);
}
public
function
testProbablyCan
()
{
$target
=
new
PageIdentityValue
(
321
,
NS_MAIN
,
__METHOD__
,
PageIdentity
::
LOCAL
);
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[
'foo'
,
'bar'
]
);
$this
->
assertTrue
(
$authority
->
probablyCan
(
'foo'
,
$target
)
);
$this
->
assertTrue
(
$authority
->
probablyCan
(
'bar'
,
$target
)
);
$this
->
assertFalse
(
$authority
->
probablyCan
(
'quux'
,
$target
)
);
$status
=
new
PermissionStatus
();
$authority
->
probablyCan
(
'foo'
,
$target
,
$status
);
$this
->
assertStatusOK
(
$status
);
$authority
->
probablyCan
(
'quux'
,
$target
,
$status
);
$this
->
assertStatusNotOK
(
$status
);
}
public
function
testDefinitelyCan
()
{
$target
=
new
PageIdentityValue
(
321
,
NS_MAIN
,
__METHOD__
,
PageIdentity
::
LOCAL
);
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[
'foo'
,
'bar'
]
);
$this
->
assertTrue
(
$authority
->
definitelyCan
(
'foo'
,
$target
)
);
$this
->
assertTrue
(
$authority
->
definitelyCan
(
'bar'
,
$target
)
);
$this
->
assertFalse
(
$authority
->
definitelyCan
(
'quux'
,
$target
)
);
$status
=
new
PermissionStatus
();
$authority
->
definitelyCan
(
'foo'
,
$target
,
$status
);
$this
->
assertStatusOK
(
$status
);
$authority
->
definitelyCan
(
'quux'
,
$target
,
$status
);
$this
->
assertStatusNotOK
(
$status
);
}
public
function
testAuthorize
()
{
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[
'foo'
,
'bar'
]
);
$this
->
assertTrue
(
$authority
->
authorizeAction
(
'foo'
)
);
$this
->
assertTrue
(
$authority
->
authorizeAction
(
'bar'
)
);
$this
->
assertFalse
(
$authority
->
authorizeAction
(
'quux'
)
);
$status
=
new
PermissionStatus
();
$authority
->
authorizeAction
(
'foo'
,
$status
);
$this
->
assertStatusOK
(
$status
);
$authority
->
authorizeAction
(
'quux'
,
$status
);
$this
->
assertStatusNotOK
(
$status
);
}
public
function
testAuthorizeRead
()
{
$target
=
new
PageIdentityValue
(
321
,
NS_MAIN
,
__METHOD__
,
PageIdentity
::
LOCAL
);
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[
'foo'
,
'bar'
]
);
$this
->
assertTrue
(
$authority
->
authorizeRead
(
'foo'
,
$target
)
);
$this
->
assertTrue
(
$authority
->
authorizeRead
(
'bar'
,
$target
)
);
$this
->
assertFalse
(
$authority
->
authorizeRead
(
'quux'
,
$target
)
);
$status
=
new
PermissionStatus
();
$authority
->
authorizeRead
(
'foo'
,
$target
,
$status
);
$this
->
assertStatusOK
(
$status
);
$authority
->
authorizeRead
(
'quux'
,
$target
,
$status
);
$this
->
assertStatusNotOK
(
$status
);
}
public
function
testAuthorizeWrite
()
{
$target
=
new
PageIdentityValue
(
321
,
NS_MAIN
,
__METHOD__
,
PageIdentity
::
LOCAL
);
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[
'foo'
,
'bar'
]
);
$this
->
assertTrue
(
$authority
->
authorizeWrite
(
'foo'
,
$target
)
);
$this
->
assertTrue
(
$authority
->
authorizeWrite
(
'bar'
,
$target
)
);
$this
->
assertFalse
(
$authority
->
authorizeWrite
(
'quux'
,
$target
)
);
$status
=
new
PermissionStatus
();
$authority
->
authorizeWrite
(
'foo'
,
$target
,
$status
);
$this
->
assertStatusOK
(
$status
);
$authority
->
authorizeWrite
(
'quux'
,
$target
,
$status
);
$this
->
assertStatusNotOK
(
$status
);
}
public
function
testIsAllowedAnyThrowsOnEmptySet
()
{
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[
'foo'
,
'bar'
]
);
$this
->
expectException
(
InvalidArgumentException
::
class
);
$authority
->
isAllowedAny
();
}
public
function
testIsAllowedAllThrowsOnEmptySet
()
{
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[
'foo'
,
'bar'
]
);
$this
->
expectException
(
InvalidArgumentException
::
class
);
$authority
->
isAllowedAll
();
}
public
function
testGetBlock
()
{
$actor
=
new
UserIdentityValue
(
12
,
'Test'
);
$authority
=
new
SimpleAuthority
(
$actor
,
[]
);
$this
->
assertNull
(
$authority
->
getBlock
()
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 14:39 (3 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a4/29/48d71b87554324d6692c00f6c89f
Default Alt Text
SimpleAuthorityTest.php (5 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment