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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
<?php
namespace MediaWiki\Tests\Storage;
use BagOStuff;
use FormatJson;
use IDatabase;
use MediaWiki\Config\ServiceOptions;
use MediaWiki\Storage\EditResult;
use MediaWiki\Storage\EditResultCache;
use MediaWikiUnitTestCase;
use Wikimedia\Rdbms\ILoadBalancer;
/**
* @covers \MediaWiki\Storage\EditResultCache
*/
class EditResultCacheTest extends MediaWikiUnitTestCase {
private const DUMMY_KEY = 'wiki:dummy:key';
/**
* Returns an EditResult for testing.
*
* @return EditResult
*/
private function getEditResult() : EditResult {
return new EditResult(
false,
100,
EditResult::REVERT_ROLLBACK,
123,
125,
true,
false,
[ 'mw-rollback' ]
);
}
/**
* @covers \MediaWiki\Storage\EditResultCache::set
*/
public function testSet() {
$editResult = $this->getEditResult();
$mainStash = $this->createMock( BagOStuff::class );
$mainStash->expects( $this->once() )
->method( 'set' )
->with(
self::DUMMY_KEY,
FormatJson::encode( $editResult )
)
->willReturn( true );
$mainStash->expects( $this->once() )
->method( 'makeKey' )
->willReturn( self::DUMMY_KEY );
$erCache = new EditResultCache(
$mainStash,
$this->createNoOpMock( ILoadBalancer::class ),
new ServiceOptions(
EditResultCache::CONSTRUCTOR_OPTIONS,
[ 'RCMaxAge' => BagOStuff::TTL_MONTH ]
)
);
$result = $erCache->set( 123, $editResult );
$this->assertTrue( $result, 'EditResultCache::set()' );
}
/**
* @covers \MediaWiki\Storage\EditResultCache::get
*/
public function testGetFromStash() {
$editResult = $this->getEditResult();
$mainStash = $this->createMock( BagOStuff::class );
$mainStash->expects( $this->once() )
->method( 'get' )
->with( self::DUMMY_KEY )
->willReturn( FormatJson::encode( $editResult ) );
$mainStash->expects( $this->once() )
->method( 'makeKey' )
->willReturn( self::DUMMY_KEY );
$erCache = new EditResultCache(
$mainStash,
$this->createNoOpMock( ILoadBalancer::class ),
new ServiceOptions(
EditResultCache::CONSTRUCTOR_OPTIONS,
[ 'RCMaxAge' => BagOStuff::TTL_MONTH ]
)
);
$res = $erCache->get( 126 );
$this->assertEquals( $editResult, $res, 'Correct EditResult is returned' );
}
/**
* @covers \MediaWiki\Storage\EditResultCache::get
*/
public function testGetFromRevertTag() {
$editResult = $this->getEditResult();
$mainStash = $this->createMock( BagOStuff::class );
$mainStash->expects( $this->once() )
->method( 'get' )
->with( self::DUMMY_KEY )
->willReturn( false );
$mainStash->expects( $this->once() )
->method( 'makeKey' )
->willReturn( self::DUMMY_KEY );
$dbr = $this->createMock( IDatabase::class );
$dbr->expects( $this->once() )
->method( 'selectField' )
->willReturn( FormatJson::encode( $editResult ) );
$loadBalancer = $this->createMock( ILoadBalancer::class );
$loadBalancer->expects( $this->once() )
->method( 'getConnection' )
->willReturn( $dbr );
$erCache = new EditResultCache(
$mainStash,
$loadBalancer,
new ServiceOptions(
EditResultCache::CONSTRUCTOR_OPTIONS,
[ 'RCMaxAge' => BagOStuff::TTL_MONTH ]
)
);
$res = $erCache->get( 126 );
$this->assertEquals( $editResult, $res, 'Correct EditResult is returned' );
}
/**
* @covers \MediaWiki\Storage\EditResultCache::get
*/
public function testGetMissingEntry() {
$mainStash = $this->createMock( BagOStuff::class );
$mainStash->expects( $this->once() )
->method( 'get' )
->with( self::DUMMY_KEY )
->willReturn( false );
$mainStash->expects( $this->once() )
->method( 'makeKey' )
->willReturn( self::DUMMY_KEY );
$dbr = $this->createMock( IDatabase::class );
$dbr->expects( $this->once() )
->method( 'selectField' )
->willReturn( false );
$loadBalancer = $this->createMock( ILoadBalancer::class );
$loadBalancer->expects( $this->once() )
->method( 'getConnection' )
->willReturn( $dbr );
$erCache = new EditResultCache(
$mainStash,
$loadBalancer,
new ServiceOptions(
EditResultCache::CONSTRUCTOR_OPTIONS,
[ 'RCMaxAge' => BagOStuff::TTL_MONTH ]
)
);
$res = $erCache->get( 126 );
$this->assertNull( $res, 'Null is returned' );
}
}
|