19 declare(strict_types=1);
21 require_once(__DIR__ .
'/ModalBase.php');
33 $interruptive = $this->
getModalFactory()->interruptive(
'myTitle',
'myMessage',
'myFormAction');
34 $this->assertEquals(
'myTitle', $interruptive->getTitle());
39 $interruptive = $this->
getModalFactory()->interruptive(
'myTitle',
'myMessage',
'myFormAction');
40 $this->assertEquals(
'myMessage', $interruptive->getMessage());
45 $interruptive = $this->
getModalFactory()->interruptive(
'myTitle',
'myMessage',
'myFormAction');
46 $this->assertEquals(
'myFormAction', $interruptive->getFormAction());
51 $interruptive = $this->
getModalFactory()->interruptive(
'myTitle',
'myMessage',
'myFormAction');
53 $interruptive = $interruptive->withAffectedItems($items);
54 $this->assertEquals($items, $interruptive->getAffectedItems());
59 $interruptive = $this->
getModalFactory()->interruptive(
'myTitle',
'myMessage',
'myFormAction');
60 $interruptive2 = $interruptive->withFormAction(
'myFormAction2');
61 $this->assertEquals(
'myFormAction', $interruptive->getFormAction());
62 $this->assertEquals(
'myFormAction2', $interruptive2->getFormAction());
67 $interruptive = $this->
getModalFactory()->interruptive(
'myTitle',
'myMessage',
'myFormAction');
69 $interruptive2 = $interruptive->withAffectedItems($items);
70 $this->assertEquals(0, count($interruptive->getAffectedItems()));
71 $this->assertEquals($items, $interruptive2->getAffectedItems());
76 $interruptive = $this->
getModalFactory()->interruptive(
'Title',
'Message',
'myAction.php');
78 $actual = $this->brutallyTrimHTML($this->getDefaultRenderer()->render($interruptive));
79 $this->assertEquals($expected, $actual);
84 $interruptive = $this->
getModalFactory()->interruptive(
'Title',
'Message',
'myAction.php');
92 $interruptive = $interruptive->withAffectedItems($items);
94 $actual = $this->
normalizeHTML($this->getDefaultRenderer(
null, $items)->render($interruptive));
95 $this->assertEquals($expected, $actual);
115 $expected_start = <<<EOT
116 <dialog
class=
"c-modal c-modal--interruptive" tabindex=
"-1" id=
"id_1">
117 <div
class=
"modal-dialog" role=
"document">
118 <
form action=
"myAction.php" method=
"POST">
119 <div
class=
"modal-content">
120 <div
class=
"modal-header">
121 <
button formmethod=
"dialog" class=
"close" aria-label=
"cancel"><span aria-hidden=
"true">×</span></
button>
122 <h1
class=
"modal-title">
Title</h1>
124 <div
class=
"modal-body">
125 <div
class=
"alert alert-warning c-modal--interruptive__message" role=
"alert">Message</div>
127 $expected_items = <<<EOT
128 <div
class=
"c-modal--interruptive__items">
134 <div
class=
"c-modal--interruptive__items">
142 $expected_end = <<<EOT
144 <div
class=
"modal-footer">
145 <input type=
"submit" class=
"btn btn-primary" value=
"delete"/>
146 <
button formmethod=
"dialog" class=
"btn btn-default" data-dismiss=
"modal">cancel</
button>
154 return $expected_start . $expected_items . $expected_end;
156 return $expected_start . $expected_end;
162 $action_label =
'actionlabel';
163 $cancel_label =
'cancellabel';
164 $interruptive = $this->
getModalFactory()->interruptive(
'Title',
'Message',
'someaction')
165 ->withActionButtonLabel($action_label)
166 ->withCancelButtonLabel($cancel_label);
170 $interruptive->getActionButtonLabel()
174 $interruptive->getCancelButtonLabel()
181 protected string $canonical_name;
183 public function __construct(
string $canonical_name =
'')
185 $this->canonical_name = $canonical_name;
188 public function getId():
string 193 public function getCanonicalName():
string 195 return $this->canonical_name ?:
'InterruptiveItem';
206 public function getDescription():
string 208 return 'description';
211 public function getIcon(): C\Image\Image
213 return new I\Component\Image\Image(
C\
Image\Image::STANDARD,
'',
'');
219 public function getKey():
string getExpectedHTML(bool $with_items=false)
button(string $caption, string $cmd)
Tests on implementation for the interruptive modal.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Base class for modal tests.
normalizeHTML(string $html)
getKeyValueInterruptiveItem(string $canonical_name)
form( $class_path, string $cmd, string $submit_caption="")
__construct(Container $dic, ilPlugin $plugin)
getStandardInterruptiveItem(string $canonical_name)