Merge "Drop zh-tw message "saveprefs""
[lhc/web/wiklou.git] / tests / phpunit / includes / objectcache / BagOStuffTest.php
1 <?php
2 /**
3 * @author Matthias Mullie <mmullie@wikimedia.org>
4 * @group BagOStuff
5 */
6 class BagOStuffTest extends MediaWikiTestCase {
7 /** @var BagOStuff */
8 private $cache;
9
10 protected function setUp() {
11 parent::setUp();
12
13 // type defined through parameter
14 if ( $this->getCliArg( 'use-bagostuff' ) ) {
15 $name = $this->getCliArg( 'use-bagostuff' );
16
17 $this->cache = ObjectCache::newFromId( $name );
18 } else {
19 // no type defined - use simple hash
20 $this->cache = new HashBagOStuff;
21 }
22
23 $this->cache->delete( wfMemcKey( 'test' ) );
24 }
25
26 /**
27 * @covers BagOStuff::merge
28 * @covers BagOStuff::mergeViaLock
29 */
30 public function testMerge() {
31 $key = wfMemcKey( 'test' );
32
33 $usleep = 0;
34
35 /**
36 * Callback method: append "merged" to whatever is in cache.
37 *
38 * @param BagOStuff $cache
39 * @param string $key
40 * @param int $existingValue
41 * @use int $usleep
42 * @return int
43 */
44 $callback = function ( BagOStuff $cache, $key, $existingValue ) use ( &$usleep ) {
45 // let's pretend this is an expensive callback to test concurrent merge attempts
46 usleep( $usleep );
47
48 if ( $existingValue === false ) {
49 return 'merged';
50 }
51
52 return $existingValue . 'merged';
53 };
54
55 // merge on non-existing value
56 $merged = $this->cache->merge( $key, $callback, 0 );
57 $this->assertTrue( $merged );
58 $this->assertEquals( $this->cache->get( $key ), 'merged' );
59
60 // merge on existing value
61 $merged = $this->cache->merge( $key, $callback, 0 );
62 $this->assertTrue( $merged );
63 $this->assertEquals( $this->cache->get( $key ), 'mergedmerged' );
64
65 /*
66 * Test concurrent merges by forking this process, if:
67 * - not manually called with --use-bagostuff
68 * - pcntl_fork is supported by the system
69 * - cache type will correctly support calls over forks
70 */
71 $fork = (bool)$this->getCliArg( 'use-bagostuff' );
72 $fork &= function_exists( 'pcntl_fork' );
73 $fork &= !$this->cache instanceof HashBagOStuff;
74 $fork &= !$this->cache instanceof EmptyBagOStuff;
75 $fork &= !$this->cache instanceof MultiWriteBagOStuff;
76 if ( $fork ) {
77 // callback should take awhile now so that we can test concurrent merge attempts
78 $pid = pcntl_fork();
79 if ( $pid == -1 ) {
80 // can't fork, ignore this test...
81 } elseif ( $pid ) {
82 // wait a little, making sure that the child process is calling merge
83 usleep( 3000 );
84
85 // attempt a merge - this should fail
86 $merged = $this->cache->merge( $key, $callback, 0, 1 );
87
88 // merge has failed because child process was merging (and we only attempted once)
89 $this->assertFalse( $merged );
90
91 // make sure the child's merge is completed and verify
92 usleep( 3000 );
93 $this->assertEquals( $this->cache->get( $key ), 'mergedmergedmerged' );
94 } else {
95 $this->cache->merge( $key, $callback, 0, 1 );
96
97 // Note: I'm not even going to check if the merge worked, I'll
98 // compare values in the parent process to test if this merge worked.
99 // I'm just going to exit this child process, since I don't want the
100 // child to output any test results (would be rather confusing to
101 // have test output twice)
102 exit;
103 }
104 }
105 }
106
107 /**
108 * @covers BagOStuff::add
109 */
110 public function testAdd() {
111 $key = wfMemcKey( 'test' );
112 $this->assertTrue( $this->cache->add( $key, 'test' ) );
113 }
114
115 public function testGet() {
116 $value = array( 'this' => 'is', 'a' => 'test' );
117
118 $key = wfMemcKey( 'test' );
119 $this->cache->add( $key, $value );
120 $this->assertEquals( $this->cache->get( $key ), $value );
121 }
122
123 /**
124 * @covers BagOStuff::incr
125 */
126 public function testIncr() {
127 $key = wfMemcKey( 'test' );
128 $this->cache->add( $key, 0 );
129 $this->cache->incr( $key );
130 $expectedValue = 1;
131 $actualValue = $this->cache->get( $key );
132 $this->assertEquals( $expectedValue, $actualValue, 'Value should be 1 after incrementing' );
133 }
134
135 /**
136 * @covers BagOStuff::getMulti
137 */
138 public function testGetMulti() {
139 $value1 = array( 'this' => 'is', 'a' => 'test' );
140 $value2 = array( 'this' => 'is', 'another' => 'test' );
141 $value3 = array( 'testing a key that may be encoded when sent to cache backend' );
142
143 $key1 = wfMemcKey( 'test1' );
144 $key2 = wfMemcKey( 'test2' );
145 $key3 = wfMemcKey( 'will-%-encode' ); // internally, MemcachedBagOStuffs will encode to will-%25-encode
146
147 $this->cache->add( $key1, $value1 );
148 $this->cache->add( $key2, $value2 );
149 $this->cache->add( $key3, $value3 );
150
151 $this->assertEquals(
152 array( $key1 => $value1, $key2 => $value2, $key3 => $value3 ),
153 $this->cache->getMulti( array( $key1, $key2, $key3 ) )
154 );
155
156 // cleanup
157 $this->cache->delete( $key1 );
158 $this->cache->delete( $key2 );
159 $this->cache->delete( $key3 );
160 }
161
162 /**
163 * @covers BagOStuff::getScopedLock
164 */
165 public function testGetScopedLock() {
166 $key = wfMemcKey( 'test' );
167 $value1 = $this->cache->getScopedLock( $key, 0 );
168 $value2 = $this->cache->getScopedLock( $key, 0 );
169
170 $this->assertType( 'ScopedCallback', $value1, 'First call returned lock' );
171 $this->assertNull( $value2, 'Duplicate call returned no lock' );
172
173 unset( $value1 );
174
175 $value3 = $this->cache->getScopedLock( $key, 0 );
176 $this->assertType( 'ScopedCallback', $value3, 'Lock returned callback after release' );
177 unset( $value3 );
178
179 $value1 = $this->cache->getScopedLock( $key, 0, 5, 'reentry' );
180 $value2 = $this->cache->getScopedLock( $key, 0, 5, 'reentry' );
181
182 $this->assertType( 'ScopedCallback', $value1, 'First reentrant call returned lock' );
183 $this->assertType( 'ScopedCallback', $value1, 'Second reentrant call returned lock' );
184 }
185 }