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.
32 lines
776 B
PHP
32 lines
776 B
PHP
<?php
|
|
|
|
namespace SilverStripe\EnvironmentCheck\Tests\Checks;
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
use SilverStripe\EnvironmentCheck\Checks\ExternalURLCheck;
|
|
use SilverStripe\EnvironmentCheck\EnvironmentCheck;
|
|
|
|
/**
|
|
* Class ExternalURLCheckTest
|
|
*
|
|
* @mixin PHPUnit_Framework_TestCase
|
|
*
|
|
* @package environmentcheck
|
|
*/
|
|
class ExternalURLCheckTest extends SapphireTest
|
|
{
|
|
public function testCheckReportsMissingPages()
|
|
{
|
|
$this->markTestSkipped('ExternalURLCheck seems faulty on some systems');
|
|
|
|
$check = new ExternalURLCheck('http://missing-site/');
|
|
|
|
$expected = [
|
|
EnvironmentCheck::ERROR,
|
|
'Success retrieving "http://missing-site/" (Code: 404)'
|
|
];
|
|
|
|
$this->assertEquals($expected, $check->check());
|
|
}
|
|
}
|