|
13 | 13 | namespace MoodlePluginCI\Tests\Bridge;
|
14 | 14 |
|
15 | 15 | use MoodlePluginCI\Bridge\Moodle;
|
| 16 | +use MoodlePluginCI\Tests\FilesystemTestCase; |
16 | 17 |
|
17 |
| -class MoodleTest extends \PHPUnit\Framework\TestCase |
| 18 | +/** |
| 19 | + * Test the \MoodlePluginCI\Bridge\Moodle class. |
| 20 | + * |
| 21 | + * Note that various unit tests are run in a separate process to avoid |
| 22 | + * conflicts with global state when including Moodle's config.php or |
| 23 | + * core_component (mocked) class. |
| 24 | + * |
| 25 | + * @covers \MoodlePluginCI\Bridge\Moodle |
| 26 | + */ |
| 27 | +class MoodleTest extends FilesystemTestCase |
18 | 28 | {
|
19 |
| - public function testGetBranch(): void |
| 29 | + /** |
| 30 | + * @runInSeparateProcess |
| 31 | + */ |
| 32 | + public function testGetConfigExists(): void |
| 33 | + { |
| 34 | + $this->fs->mirror(__DIR__ . '/../Fixture/moodle', $this->tempDir); |
| 35 | + $this->fs->copy(__DIR__ . '/../Fixture/tiny-config.php', $this->tempDir . '/config.php'); |
| 36 | + $moodle = new Moodle($this->tempDir); |
| 37 | + |
| 38 | + $this->assertSame('exists', $moodle->getConfig('exists')); |
| 39 | + } |
| 40 | + |
| 41 | + /** |
| 42 | + * @runInSeparateProcess |
| 43 | + */ |
| 44 | + public function testGetConfigNotExists(): void |
| 45 | + { |
| 46 | + $this->fs->mirror(__DIR__ . '/../Fixture/moodle', $this->tempDir); |
| 47 | + $this->fs->copy(__DIR__ . '/../Fixture/tiny-config.php', $this->tempDir . '/config.php'); |
| 48 | + $moodle = new Moodle($this->tempDir); |
| 49 | + |
| 50 | + $this->expectException(\RuntimeException::class); |
| 51 | + $this->expectExceptionMessage('Failed to find $CFG->notexists in Moodle config file'); |
| 52 | + $moodle->getConfig('notexists'); |
| 53 | + } |
| 54 | + |
| 55 | + /** |
| 56 | + * @runInSeparateProcess |
| 57 | + */ |
| 58 | + public function testGetConfigNoConfigFile(): void |
| 59 | + { |
| 60 | + $this->fs->mirror(__DIR__ . '/../Fixture/moodle', $this->tempDir); |
| 61 | + $moodle = new Moodle($this->tempDir); |
| 62 | + |
| 63 | + $this->expectException(\RuntimeException::class); |
| 64 | + $this->expectExceptionMessage('Failed to find Moodle config file'); |
| 65 | + $moodle->getConfig('wwwroot'); |
| 66 | + } |
| 67 | + |
| 68 | + /** |
| 69 | + * @runInSeparateProcess |
| 70 | + */ |
| 71 | + public function testComponentInstallDirectoryExists(): void |
20 | 72 | {
|
21 |
| - $moodle = new Moodle(__DIR__ . '/../Fixture/moodle'); |
| 73 | + $this->fs->mirror(__DIR__ . '/../Fixture/moodle', $this->tempDir); |
| 74 | + $this->fs->copy(__DIR__ . '/../Fixture/tiny-config.php', $this->tempDir . '/config.php'); |
| 75 | + $moodle = new Moodle($this->tempDir); |
| 76 | + |
| 77 | + // Initially we tried to mock the core_component class with Mockery, and everything |
| 78 | + // worked fine, but the use of Reflection that we have in the code to be tested. |
| 79 | + // Hence, we have changed to load a minimal core_component (Fixture/moodle/lib/classes/component.php) |
| 80 | + // class that will be used instead of the (core) original. |
| 81 | + require_once $this->tempDir . '/lib/classes/component.php'; |
| 82 | + |
| 83 | + $this->assertSame('/path/to/mod/test', $moodle->getComponentInstallDirectory('mod_test')); |
| 84 | + } |
| 85 | + |
| 86 | + /** |
| 87 | + * @runInSeparateProcess |
| 88 | + */ |
| 89 | + public function testComponentInstallDirectoryNotExists(): void |
| 90 | + { |
| 91 | + $this->fs->mirror(__DIR__ . '/../Fixture/moodle', $this->tempDir); |
| 92 | + $this->fs->copy(__DIR__ . '/../Fixture/tiny-config.php', $this->tempDir . '/config.php'); |
| 93 | + $moodle = new Moodle($this->tempDir); |
| 94 | + |
| 95 | + // Initially we tried to mock the core_component class with Mockery, and everything |
| 96 | + // worked fine, but the use of Reflection that we have in the code to be tested. |
| 97 | + // Hence, we have changed to load a minimal core_component (Fixture/moodle/lib/classes/component.php) |
| 98 | + // class that will be used instead of the (core) original. |
| 99 | + require_once $this->tempDir . '/lib/classes/component.php'; |
| 100 | + |
| 101 | + $this->expectException(\InvalidArgumentException::class); |
| 102 | + $this->expectExceptionMessage('The component unknown_test has an unknown plugin type of unknown'); |
| 103 | + $moodle->getComponentInstallDirectory('unknown_test'); |
| 104 | + } |
| 105 | + |
| 106 | + public function testGetBranchCorrect(): void |
| 107 | + { |
| 108 | + $this->fs->mirror(__DIR__ . '/../Fixture/moodle', $this->tempDir); |
| 109 | + $moodle = new Moodle($this->tempDir); |
| 110 | + |
22 | 111 | $this->assertSame(39, $moodle->getBranch());
|
23 | 112 | }
|
| 113 | + |
| 114 | + public function testGetBranchIncorrect(): void |
| 115 | + { |
| 116 | + $this->fs->mirror(__DIR__ . '/../Fixture/moodle', $this->tempDir); |
| 117 | + |
| 118 | + // Let's edit the version.php file to convert the correct (string) branch into incorrect (integer) branch. |
| 119 | + $contents = file_get_contents($this->tempDir . '/version.php'); |
| 120 | + $contents = preg_replace("/'39'/", '39', $contents); |
| 121 | + file_put_contents($this->tempDir . '/version.php', $contents); |
| 122 | + |
| 123 | + $moodle = new Moodle($this->tempDir); |
| 124 | + $this->expectException(\RuntimeException::class); |
| 125 | + $this->expectExceptionMessage('Failed to find Moodle branch version'); |
| 126 | + $moodle->getBranch(); |
| 127 | + } |
24 | 128 | }
|
0 commit comments