silverstripe-environmentcheck/tests/Checks/HasFunctionCheckTest.php

42 lines
931 B
PHP
Raw Normal View History

2015-09-10 23:13:48 +02:00
<?php
namespace SilverStripe\EnvironmentCheck\Tests\Checks;
use SilverStripe\EnvironmentCheck\Checks\HasFunctionCheck;
use SilverStripe\EnvironmentCheck\EnvironmentCheck;
use SilverStripe\Dev\SapphireTest;
2015-09-10 23:13:48 +02:00
/**
* Class HasFunctionCheckTest
*
2015-09-10 23:13:48 +02:00
* @mixin PHPUnit_Framework_TestCase
*
* @package environmentcheck
2015-09-10 23:13:48 +02:00
*/
2015-11-21 07:18:35 +01:00
class HasFunctionCheckTest extends SapphireTest
{
public function testCheckReportsMissingFunctions()
{
$check = new HasFunctionCheck('foo');
2015-09-10 23:13:48 +02:00
$expected = [
2015-11-21 07:18:35 +01:00
EnvironmentCheck::ERROR,
'foo() doesn\'t exist'
];
2015-09-10 23:13:48 +02:00
2015-11-21 07:18:35 +01:00
$this->assertEquals($expected, $check->check());
}
2015-09-10 23:13:48 +02:00
2015-11-21 07:18:35 +01:00
public function testCheckReportsFoundFunctions()
{
$check = new HasFunctionCheck('class_exists');
2015-09-10 23:13:48 +02:00
$expected = [
2015-11-21 07:18:35 +01:00
EnvironmentCheck::OK,
'class_exists() exists'
];
2015-09-10 23:13:48 +02:00
2015-11-21 07:18:35 +01:00
$this->assertEquals($expected, $check->check());
}
2015-09-10 23:13:48 +02:00
}