forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommandUnitTest.php
41 lines (37 loc) · 1.55 KB
/
commandUnitTest.php
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
<?php
namespace Unish;
use Webmozart\PathUtil\Path;
class commandUnitCase extends UnitUnishTestCase {
/**
* Assure that matching version-specific command files are loaded and others are ignored.
*/
function testCommandVersionSpecific() {
$path = Path::join(self::getSandbox(), 'commandUnitCase');
$major = $this->drush_major_version();
$major_plus1 = $major + 1;
// Write matched and unmatched files to the system search path.
$files = array(
Path::join($path, "$major.drush$major.inc"),
Path::join($path, "drush$major/drush$major.drush.inc"),
Path::join($path, "$major_plus1.drush$major_plus1.inc"),
Path::join($path, "drush$major_plus1/drush$major_plus1.drush.inc"),
);
$this->mkdir(Path::join($path, 'drush'. $major));
$this->mkdir(Path::join($path, 'drush'. $major_plus1));
foreach ($files as $file) {
$contents = <<<EOD
<?php
// Written by Unish. This file is safe to delete.
\$GLOBALS['unish_foo'][] = '$file';
EOD;
$return = file_put_contents($file, $contents);
}
drush_set_context('DRUSH_INCLUDE', array($path));
drush_preflight();
$loaded = drush_commandfile_list();
$this->assertContains($files[0], $loaded); //Loaded a version-specific command file.
$this->assertContains($files[1], $loaded); //Loaded a version-specific command directory.
$this->assertNotContains($files[2], $loaded); //Did not load a mismatched version-specific command file.
$this->assertNotContains($files[3], $loaded); //Did not load a a mismatched version-specific command directory.
}
}