3 * This class will test BagOStuff.
5 * @author Matthias Mullie <mmullie@wikimedia.org>
7 class BagOStuffTest
extends MediaWikiTestCase
{
10 protected function setUp() {
13 // type defined through parameter
14 if ( $this->getCliArg( 'use-bagostuff=' ) ) {
15 $name = $this->getCliArg( 'use-bagostuff=' );
17 $this->cache
= ObjectCache
::newFromId( $name );
19 // no type defined - use simple hash
20 $this->cache
= new HashBagOStuff
;
23 $this->cache
->delete( wfMemcKey( 'test' ) );
26 protected function tearDown() {
29 public function testMerge() {
30 $key = wfMemcKey( 'test' );
35 * Callback method: append "merged" to whatever is in cache.
37 * @param BagOStuff $cache
39 * @param int $existingValue
43 $callback = function ( BagOStuff
$cache, $key, $existingValue ) use ( &$usleep ) {
44 // let's pretend this is an expensive callback to test concurrent merge attempts
47 if ( $existingValue === false ) {
51 return $existingValue . 'merged';
54 // merge on non-existing value
55 $merged = $this->cache
->merge( $key, $callback, 0 );
56 $this->assertTrue( $merged );
57 $this->assertEquals( $this->cache
->get( $key ), 'merged' );
59 // merge on existing value
60 $merged = $this->cache
->merge( $key, $callback, 0 );
61 $this->assertTrue( $merged );
62 $this->assertEquals( $this->cache
->get( $key ), 'mergedmerged' );
65 * Test concurrent merges by forking this process, if:
66 * - not manually called with --use-bagostuff
67 * - pcntl_fork is supported by the system
68 * - cache type will correctly support calls over forks
70 $fork = (bool)$this->getCliArg( 'use-bagostuff=' );
71 $fork &= function_exists( 'pcntl_fork' );
72 $fork &= !$this->cache
instanceof HashBagOStuff
;
73 $fork &= !$this->cache
instanceof EmptyBagOStuff
;
74 $fork &= !$this->cache
instanceof MultiWriteBagOStuff
;
76 // callback should take awhile now so that we can test concurrent merge attempts
81 // can't fork, ignore this test...
83 // wait a little, making sure that the child process is calling merge
86 // attempt a merge - this should fail
87 $merged = $this->cache
->merge( $key, $callback, 0, 1 );
89 // merge has failed because child process was merging (and we only attempted once)
90 $this->assertFalse( $merged );
92 // make sure the child's merge is completed and verify
94 $this->assertEquals( $this->cache
->get( $key ), 'mergedmergedmerged' );
96 $this->cache
->merge( $key, $callback, 0, 1 );
98 // Note: I'm not even going to check if the merge worked, I'll
99 // compare values in the parent process to test if this merge worked.
100 // I'm just going to exit this child process, since I don't want the
101 // child to output any test results (would be rather confusing to
102 // have test output twice)
108 public function testAdd() {
109 $key = wfMemcKey( 'test' );
110 $this->assertTrue( $this->cache
->add( $key, 'test' ) );
113 public function testGet() {
114 $value = array( 'this' => 'is', 'a' => 'test' );
116 $key = wfMemcKey( 'test' );
117 $this->cache
->add( $key, $value );
118 $this->assertEquals( $this->cache
->get( $key ), $value );
121 public function testGetMulti() {
122 $value1 = array( 'this' => 'is', 'a' => 'test' );
123 $value2 = array( 'this' => 'is', 'another' => 'test' );
125 $key1 = wfMemcKey( 'test1' );
126 $key2 = wfMemcKey( 'test2' );
128 $this->cache
->add( $key1, $value1 );
129 $this->cache
->add( $key2, $value2 );
131 $this->assertEquals( $this->cache
->getMulti( array( $key1, $key2 ) ), array( $key1 => $value1, $key2 => $value2 ) );
134 $this->cache
->delete( $key1 );
135 $this->cache
->delete( $key2 );