mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
75 lines
1.9 KiB
PHP
75 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms\Tests;
|
|
|
|
use InvalidArgumentException;
|
|
use SilverStripe\Dev\SapphireTest;
|
|
use SilverStripe\Forms\Tip;
|
|
|
|
class TipTest extends SapphireTest
|
|
{
|
|
/**
|
|
* Ensure the correct defaults are output in the schema
|
|
*/
|
|
public function testGeneratesAccurateDefaultSchema()
|
|
{
|
|
$tip = new Tip('message');
|
|
|
|
$schema = $tip->getTipSchema();
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'content' => 'message',
|
|
'icon' => 'lamp',
|
|
'importance' => 'normal',
|
|
],
|
|
$schema
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Ensure custom settings are output in the schema
|
|
*/
|
|
public function testGeneratesAccurateCustomSchema()
|
|
{
|
|
$tip = new Tip(
|
|
'message',
|
|
Tip::IMPORTANCE_LEVELS['HIGH'],
|
|
'page'
|
|
);
|
|
|
|
$schema = $tip->getTipSchema();
|
|
|
|
$this->assertEquals(
|
|
[
|
|
'content' => 'message',
|
|
'icon' => 'page',
|
|
'importance' => 'high',
|
|
],
|
|
$schema
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Ensure passing an invalid importance level to the constructor fails
|
|
*/
|
|
public function testInvalidImportanceLevelInConstructorCausesException()
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$this->expectExceptionMessage('Provided importance level must be defined in Tip::IMPORTANCE_LEVELS');
|
|
$tip = new Tip('message', 'arbitrary-importance');
|
|
}
|
|
|
|
/**
|
|
* Ensure setting an invalid importance level fails
|
|
*/
|
|
public function testInvalidImportanceLevelInSetterCausesException()
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$this->expectExceptionMessage('Provided importance level must be defined in Tip::IMPORTANCE_LEVELS');
|
|
$tip = new Tip('message');
|
|
|
|
$tip->setImportanceLevel('arbitrary-importance');
|
|
}
|
|
}
|