mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
b9af2d0734
Remove PHP 5.5 from Travis configuration. Dotenv used for environment management now, examples and tests updated to use putenv instead of define. Logger alias update to LoggerInterface. Update mutable config API calls. Replace array declaration with short version: []. Update license year.
39 lines
854 B
PHP
39 lines
854 B
PHP
<?php
|
|
|
|
namespace SilverStripe\EnvironmentCheck\Tests\Checks;
|
|
|
|
use SilverStripe\EnvironmentCheck\Checks\FileWriteableCheck;
|
|
use SilverStripe\EnvironmentCheck\EnvironmentCheck;
|
|
use SilverStripe\Dev\SapphireTest;
|
|
|
|
/**
|
|
* Class FileWritableCheckTest
|
|
*
|
|
* @mixin PHPUnit_Framework_TestCase
|
|
*
|
|
* @package environmentcheck
|
|
*/
|
|
class FileWritableCheckTest extends SapphireTest
|
|
{
|
|
public function testCheckReportsWritablePaths()
|
|
{
|
|
$check = new FileWriteableCheck(TEMP_FOLDER);
|
|
|
|
$expected = [
|
|
EnvironmentCheck::OK,
|
|
''
|
|
];
|
|
|
|
$this->assertEquals($expected, $check->check());
|
|
}
|
|
|
|
public function testCheckReportsNonWritablePaths()
|
|
{
|
|
$check = new FileWriteableCheck('/var');
|
|
|
|
$result = $check->check();
|
|
|
|
$this->assertEquals(EnvironmentCheck::ERROR, $result[0]);
|
|
}
|
|
}
|