9 # Prevent updates from running
12 $pre = DeferredUpdates::PRESEND;
13 $post = DeferredUpdates::POSTSEND;
14 $all = DeferredUpdates::ALL;
16 $update = $this->getMock( DeferrableUpdate::class );
17 $update->expects( $this->never() )
18 ->method(
'doUpdate' );
20 DeferredUpdates::addUpdate( $update,
$pre );
21 $this->assertCount( 1, DeferredUpdates::getPendingUpdates(
$pre ) );
22 $this->assertCount( 0, DeferredUpdates::getPendingUpdates( $post ) );
23 $this->assertCount( 1, DeferredUpdates::getPendingUpdates( $all ) );
24 $this->assertCount( 1, DeferredUpdates::getPendingUpdates() );
25 DeferredUpdates::clearPendingUpdates();
26 $this->assertCount( 0, DeferredUpdates::getPendingUpdates() );
28 DeferredUpdates::addUpdate( $update, $post );
29 $this->assertCount( 0, DeferredUpdates::getPendingUpdates(
$pre ) );
30 $this->assertCount( 1, DeferredUpdates::getPendingUpdates( $post ) );
31 $this->assertCount( 1, DeferredUpdates::getPendingUpdates( $all ) );
32 $this->assertCount( 1, DeferredUpdates::getPendingUpdates() );
33 DeferredUpdates::clearPendingUpdates();
34 $this->assertCount( 0, DeferredUpdates::getPendingUpdates() );
41 '1' =>
"deferred update 1;\n",
42 '2' =>
"deferred update 2;\n",
43 '2-1' =>
"deferred update 1 within deferred update 2;\n",
44 '2-2' =>
"deferred update 2 within deferred update 2;\n",
45 '3' =>
"deferred update 3;\n",
46 '3-1' =>
"deferred update 1 within deferred update 3;\n",
47 '3-2' =>
"deferred update 2 within deferred update 3;\n",
48 '3-1-1' =>
"deferred update 1 within deferred update 1 within deferred update 3;\n",
49 '3-2-1' =>
"deferred update 1 within deferred update 2 with deferred update 3;\n",
51 DeferredUpdates::addCallableUpdate(
52 function () use ( $updates ) {
56 DeferredUpdates::addCallableUpdate(
57 function () use ( $updates ) {
59 DeferredUpdates::addCallableUpdate(
60 function () use ( $updates ) {
64 DeferredUpdates::addCallableUpdate(
65 function () use ( $updates ) {
71 DeferredUpdates::addCallableUpdate(
72 function () use ( $updates ) {
74 DeferredUpdates::addCallableUpdate(
75 function () use ( $updates ) {
77 DeferredUpdates::addCallableUpdate(
78 function () use ( $updates ) {
79 echo $updates[
'3-1-1'];
84 DeferredUpdates::addCallableUpdate(
85 function () use ( $updates ) {
87 DeferredUpdates::addCallableUpdate(
88 function () use ( $updates ) {
89 echo $updates[
'3-2-1'];
97 $this->assertEquals( 3, DeferredUpdates::pendingUpdatesCount() );
99 $this->expectOutputString( implode(
'', $updates ) );
101 DeferredUpdates::doUpdates();
105 DeferredUpdates::addCallableUpdate(
106 function () use ( &$x ) {
109 DeferredUpdates::PRESEND
111 DeferredUpdates::addCallableUpdate(
112 function () use ( &$y ) {
115 DeferredUpdates::POSTSEND
118 $this->assertNull( $x,
"Update not run yet" );
119 $this->assertNull( $y,
"Update not run yet" );
121 DeferredUpdates::doUpdates(
'run', DeferredUpdates::PRESEND );
122 $this->assertEquals(
"Sherity", $x,
"PRESEND update ran" );
123 $this->assertNull( $y,
"POSTSEND update not run yet" );
125 DeferredUpdates::doUpdates(
'run', DeferredUpdates::POSTSEND );
126 $this->assertEquals(
"Marychu", $y,
"POSTSEND update ran" );
132 '1' =>
"deferred update 1;\n",
133 '2' =>
"deferred update 2;\n",
134 '2-1' =>
"deferred update 1 within deferred update 2;\n",
135 '2-2' =>
"deferred update 2 within deferred update 2;\n",
136 '3' =>
"deferred update 3;\n",
137 '3-1' =>
"deferred update 1 within deferred update 3;\n",
138 '3-2' =>
"deferred update 2 within deferred update 3;\n",
139 '3-1-1' =>
"deferred update 1 within deferred update 1 within deferred update 3;\n",
140 '3-2-1' =>
"deferred update 1 within deferred update 2 with deferred update 3;\n",
145 DeferredUpdates::addCallableUpdate(
146 function () use ( $updates ) {
150 DeferredUpdates::addCallableUpdate(
151 function () use ( $updates ) {
153 DeferredUpdates::addCallableUpdate(
154 function () use ( $updates ) {
155 echo $updates[
'2-1'];
158 DeferredUpdates::addCallableUpdate(
159 function () use ( $updates ) {
160 echo $updates[
'2-2'];
165 DeferredUpdates::addCallableUpdate(
166 function () use ( $updates ) {
168 DeferredUpdates::addCallableUpdate(
169 function () use ( $updates ) {
170 echo $updates[
'3-1'];
171 DeferredUpdates::addCallableUpdate(
172 function () use ( $updates ) {
173 echo $updates[
'3-1-1'];
178 DeferredUpdates::addCallableUpdate(
179 function () use ( $updates ) {
180 echo $updates[
'3-2'];
181 DeferredUpdates::addCallableUpdate(
182 function () use ( $updates ) {
183 echo $updates[
'3-2-1'];
191 $this->expectOutputString( implode(
'', $updates ) );
193 DeferredUpdates::doUpdates();