blob: 4337f6e080b7b2e211d9716d0340ad7e88692ef6 (
plain) (
blame)
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
|
<?php
declare(strict_types=1);
namespace Drupal\KernelTests;
/**
* @coversDefaultClass \Drupal\KernelTests\KernelTestBase
*
* @group PHPUnit
* @group Test
* @group KernelTests
*/
class KernelTestBaseShutdownTest extends KernelTestBase {
/**
* Indicates which shutdown functions are expected to be called.
*
* @var array
*/
protected $expectedShutdownCalled;
/**
* Indicates which shutdown functions have been called.
*
* @var array
*/
protected static $shutdownCalled;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
// Initialize static variable prior to testing.
self::$shutdownCalled = [];
parent::setUp();
}
/**
* @covers ::assertPostConditions
*/
public function testShutdownFunction(): void {
$this->expectedShutdownCalled = ['shutdownFunction', 'shutdownFunction2'];
drupal_register_shutdown_function([$this, 'shutdownFunction']);
}
/**
* @covers ::assertPostConditions
*/
public function testNoShutdownFunction(): void {
$this->expectedShutdownCalled = [];
}
/**
* Registers that this shutdown function has been called.
*/
public function shutdownFunction(): void {
self::$shutdownCalled[] = 'shutdownFunction';
drupal_register_shutdown_function([$this, 'shutdownFunction2']);
}
/**
* Registers that this shutdown function has been called.
*/
public function shutdownFunction2(): void {
self::$shutdownCalled[] = 'shutdownFunction2';
}
/**
* {@inheritdoc}
*/
protected function assertPostConditions(): void {
parent::assertPostConditions();
$this->assertSame($this->expectedShutdownCalled, self::$shutdownCalled);
}
}
|