CoreTest.php
2 KB
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
<?php
/**
 * Tests for the core of SilverStripe, such as how the temporary
 * directory is determined throughout the framework.
 * 
 * @package framework
 * @subpackage tests
 */
class CoreTest extends SapphireTest {
	protected $tempPath;
	public function setUp() {
		parent::setUp();
		$this->tempPath = Director::baseFolder() . DIRECTORY_SEPARATOR . 'silverstripe-cache';
	}
	public function testGetTempPathInProject() {
		$user = getTempFolderUsername();
		if(file_exists($this->tempPath)) {
			$this->assertEquals(getTempFolder(BASE_PATH), $this->tempPath . DIRECTORY_SEPARATOR . $user);
		} else {
			$user = getTempFolderUsername();
			$base = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'silverstripe-cache-php' . 
				preg_replace('/[^\w-\.+]+/', '-', PHP_VERSION);
			// A typical Windows location for where sites are stored on IIS
			$this->assertEquals(
				$base . 'C--inetpub-wwwroot-silverstripe-test-project' . DIRECTORY_SEPARATOR . $user,
				getTempFolder('C:\\inetpub\\wwwroot\\silverstripe-test-project'));
			// A typical Mac OS X location for where sites are stored
			$this->assertEquals(
				$base . '-Users-joebloggs-Sites-silverstripe-test-project' . DIRECTORY_SEPARATOR . $user,
				getTempFolder('/Users/joebloggs/Sites/silverstripe-test-project'));
			// A typical Linux location for where sites are stored
			$this->assertEquals(
				$base . '-var-www-silverstripe-test-project' . DIRECTORY_SEPARATOR . $user,
				getTempFolder('/var/www/silverstripe-test-project'));
		}
	}
	public function tearDown() {
		parent::tearDown();
		$user = getTempFolderUsername();
		$base = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'silverstripe-cache-php' . 
			preg_replace('/[^\w-\.+]+/', '-', PHP_VERSION);
		foreach(array(
			'C--inetpub-wwwroot-silverstripe-test-project',
			'-Users-joebloggs-Sites-silverstripe-test-project',
			'-cache-var-www-silverstripe-test-project'
		) as $dir) {
			$path = $base . $dir;
			if(file_exists($path)) {
				rmdir($path . DIRECTORY_SEPARATOR . $user);
				rmdir($path);
			}
		}
	}
}