blob: 41196aef13f6d258a537a2138355735c5b353edf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
namespace MediaWiki\Extensions\OAuth\Tests\Repository;
use MediaWiki\Extensions\OAuth\Entity\ScopeEntity;
use MediaWiki\Extensions\OAuth\Repository\ScopeRepository;
use MediaWikiTestCase;
/**
* @covers \MediaWiki\Extensions\OAuth\Repository\ScopeRepository
*/
class ScopeRepositoryTest extends MediaWikiTestCase {
public function testScopes() {
$repo = new ScopeRepository();
$this->assertInstanceOf(
ScopeEntity::class, $repo->getScopeEntityByIdentifier( 'editpage' ),
'Scope \"editpage\" should be a valid scope'
);
$this->assertInstanceOf(
ScopeEntity::class, $repo->getScopeEntityByIdentifier( 'mwoauth-authonlyprivate' ),
'Scope \"mwoauth-authonlyprivate\" should be a valid scope'
);
$this->assertNotInstanceOf(
ScopeEntity::class, $repo->getScopeEntityByIdentifier( 'dummynonexistent' ),
'Scope \"dummynonexistent\" should not be a valid scope'
);
}
}
|