88 lines
2.3 KiB
PHP
88 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace yiiunit\extensions\bootstrap5;
|
|
|
|
use yii\bootstrap5\Alert;
|
|
|
|
/**
|
|
* Tests for Alert widget
|
|
*
|
|
* @group bootstrap5
|
|
*/
|
|
class AlertTest extends TestCase
|
|
{
|
|
public function testNormalAlert()
|
|
{
|
|
Alert::$counter = 0;
|
|
$html = Alert::widget([
|
|
'body' => '<strong>Holy guacamole!</strong> You should check in on some of those fields below.',
|
|
'options' => [
|
|
'class' => ['alert-warning']
|
|
]
|
|
]);
|
|
|
|
$expectedHtml = <<<HTML
|
|
<div id="w0" class="alert-warning alert alert-dismissible" role="alert">
|
|
|
|
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
|
|
</div>
|
|
HTML;
|
|
|
|
$this->assertEqualsWithoutLE($expectedHtml, $html);
|
|
}
|
|
|
|
/**
|
|
*/
|
|
public function testDismissibleAlert()
|
|
{
|
|
Alert::$counter = 0;
|
|
$html = Alert::widget([
|
|
'body' => "Message1",
|
|
]);
|
|
|
|
$expectedHtml = <<<HTML
|
|
<div id="w0" class="alert alert-dismissible" role="alert">
|
|
|
|
Message1
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
|
|
</div>
|
|
HTML;
|
|
$this->assertEqualsWithoutLE($expectedHtml, $html);
|
|
}
|
|
|
|
/**
|
|
* @see https://github.com/yiisoft/yii2-bootstrap5/issues/11
|
|
*/
|
|
public function testDismissibleAlertCustomButton()
|
|
{
|
|
Alert::$counter = 0;
|
|
$html = Alert::widget([
|
|
'body' => "Low Blow: Bob Loblaw's Law Blog Lobs Law Bomb",
|
|
'options' => ['class' => 'alert-warning'],
|
|
'closeButton' => [
|
|
'label' => 'Dismiss',
|
|
'tag' => 'a',
|
|
'class' => ['widget' => 'btn btn-outline-warning'],
|
|
'style' => [
|
|
'position' => 'absolute',
|
|
'top' => '.5rem',
|
|
'right' => '.5rem'
|
|
],
|
|
]
|
|
]);
|
|
|
|
$expectedHtml = <<<HTML
|
|
<div id="w0" class="alert-warning alert alert-dismissible" role="alert">
|
|
|
|
Low Blow: Bob Loblaw's Law Blog Lobs Law Bomb
|
|
<a class="btn btn-outline-warning" data-bs-dismiss="alert" aria-label="Close" style="position: absolute; top: .5rem; right: .5rem;">Dismiss</a>
|
|
|
|
</div>
|
|
HTML;
|
|
$this->assertEqualsWithoutLE($expectedHtml, $html);
|
|
}
|
|
}
|