2009-12-16 06:36:35 +01:00
|
|
|
<?php
|
2016-08-19 00:51:35 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\Core\Tests;
|
|
|
|
|
2017-06-22 12:50:45 +02:00
|
|
|
use SilverStripe\Core\TempFolder;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
|
|
use SilverStripe\Control\Director;
|
|
|
|
|
2009-12-16 06:36:35 +01:00
|
|
|
/**
|
2012-03-24 04:38:57 +01:00
|
|
|
* Tests for the core of SilverStripe, such as how the temporary
|
2009-12-16 06:36:35 +01:00
|
|
|
* directory is determined throughout the framework.
|
|
|
|
*/
|
2016-12-16 05:34:21 +01:00
|
|
|
class CoreTest extends SapphireTest
|
|
|
|
{
|
2009-12-16 06:36:35 +01:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
protected $tempPath;
|
2009-12-16 06:36:35 +01:00
|
|
|
|
2017-03-24 04:00:54 +01:00
|
|
|
protected function setUp()
|
2016-12-16 05:34:21 +01:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
$this->tempPath = Director::baseFolder() . DIRECTORY_SEPARATOR . 'silverstripe-cache';
|
|
|
|
}
|
2009-12-16 06:36:35 +01:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testGetTempPathInProject()
|
|
|
|
{
|
2017-06-22 12:50:45 +02:00
|
|
|
$user = TempFolder::getTempFolderUsername();
|
2013-10-03 03:49:18 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
if (file_exists($this->tempPath)) {
|
2017-06-22 12:50:45 +02:00
|
|
|
$this->assertEquals(TempFolder::getTempFolder(BASE_PATH), $this->tempPath . DIRECTORY_SEPARATOR . $user);
|
2016-12-16 05:34:21 +01:00
|
|
|
} else {
|
2017-06-22 12:50:45 +02:00
|
|
|
$user = TempFolder::getTempFolderUsername();
|
2016-12-16 05:34:21 +01:00
|
|
|
$base = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'silverstripe-cache-php' .
|
|
|
|
preg_replace('/[^\w-\.+]+/', '-', PHP_VERSION);
|
2013-03-18 03:30:09 +01:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
// A typical Windows location for where sites are stored on IIS
|
|
|
|
$this->assertEquals(
|
|
|
|
$base . 'C--inetpub-wwwroot-silverstripe-test-project' . DIRECTORY_SEPARATOR . $user,
|
2017-06-22 12:50:45 +02:00
|
|
|
TempFolder::getTempFolder('C:\\inetpub\\wwwroot\\silverstripe-test-project')
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
2010-10-19 06:52:46 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
// A typical Mac OS X location for where sites are stored
|
|
|
|
$this->assertEquals(
|
|
|
|
$base . '-Users-joebloggs-Sites-silverstripe-test-project' . DIRECTORY_SEPARATOR . $user,
|
2017-06-22 12:50:45 +02:00
|
|
|
TempFolder::getTempFolder('/Users/joebloggs/Sites/silverstripe-test-project')
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
2011-01-26 23:51:08 +01:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
// A typical Linux location for where sites are stored
|
|
|
|
$this->assertEquals(
|
|
|
|
$base . '-var-www-silverstripe-test-project' . DIRECTORY_SEPARATOR . $user,
|
2017-06-22 12:50:45 +02:00
|
|
|
TempFolder::getTempFolder('/var/www/silverstripe-test-project')
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2010-10-19 06:52:46 +02:00
|
|
|
|
2017-03-24 04:00:54 +01:00
|
|
|
protected function tearDown()
|
2016-12-16 05:34:21 +01:00
|
|
|
{
|
|
|
|
parent::tearDown();
|
2017-06-22 12:50:45 +02:00
|
|
|
$user = TempFolder::getTempFolderUsername();
|
2016-12-16 05:34:21 +01:00
|
|
|
$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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-24 04:38:57 +01:00
|
|
|
}
|