Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xhs345 committed Oct 28, 2016
1 parent c59fb85 commit 924d382
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 27 deletions.
59 changes: 47 additions & 12 deletions lib/Cake/Test/Case/Controller/Component/FlashComponentTest.php
Expand Up @@ -68,6 +68,27 @@ public function testSet() {
);
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
CakeSession::delete('Message.flash');

$this->Flash->set('This is the first message');
$this->Flash->set('This is the second message');
$expected = array(
array(
'message' => 'This is the first message',
'key' => 'flash',
'element' => 'Flash/default',
'params' => array()
),
array(
'message' => 'This is the second message',
'key' => 'flash',
'element' => 'Flash/default',
'params' => array()
)
);
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
CakeSession::delete('Message.flash');

$this->Flash->set('This is a test message', array(
'element' => 'test',
Expand All @@ -83,6 +104,7 @@ public function testSet() {
);
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
CakeSession::delete('Message.flash');

$this->Flash->set('This is a test message', array('element' => 'MyPlugin.alert'));
$expected = array(
Expand All @@ -95,6 +117,7 @@ public function testSet() {
);
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
CakeSession::delete('Message.flash');

$this->Flash->set('This is a test message', array('key' => 'foobar'));
$expected = array(
Expand All @@ -107,6 +130,7 @@ public function testSet() {
);
$result = CakeSession::read('Message.foobar');
$this->assertEquals($expected, $result);
CakeSession::delete('Message.foobar');
}

/**
Expand All @@ -128,6 +152,7 @@ public function testSetWithException() {
);
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
CakeSession::delete('Message.flash');
}

/**
Expand All @@ -150,6 +175,7 @@ public function testSetWithComponentConfiguration() {
);
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
CakeSession::delete('Message.flash');
}

/**
Expand All @@ -162,32 +188,41 @@ public function testCall() {

$this->Flash->success('It worked');
$expected = array(
'message' => 'It worked',
'key' => 'flash',
'element' => 'Flash/success',
'params' => array()
array(
'message' => 'It worked',
'key' => 'flash',
'element' => 'Flash/success',
'params' => array()
)
);
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
CakeSession::delete('Message.flash');

$this->Flash->alert('It worked', array('plugin' => 'MyPlugin'));
$expected = array(
'message' => 'It worked',
'key' => 'flash',
'element' => 'MyPlugin.Flash/alert',
'params' => array()
array(
'message' => 'It worked',
'key' => 'flash',
'element' => 'MyPlugin.Flash/alert',
'params' => array()
)
);
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
CakeSession::delete('Message.flash');

$this->Flash->error('It did not work', array('element' => 'error_thing'));
$expected = array(
'message' => 'It did not work',
'key' => 'flash',
'element' => 'Flash/error',
'params' => array()
array(
'message' => 'It did not work',
'key' => 'flash',
'element' => 'Flash/error',
'params' => array()
)
);
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result, 'Element is ignored in magic call.');
CakeSession::delete('Message.flash');
}
}
42 changes: 27 additions & 15 deletions lib/Cake/Test/Case/View/Helper/FlashHelperTest.php
Expand Up @@ -57,25 +57,37 @@ public function setUp() {
CakeSession::write(array(
'Message' => array(
'flash' => array(
'key' => 'flash',
'message' => 'This is a calling',
'element' => 'Flash/default',
'params' => array()
array(
'key' => 'flash',
'message' => 'This is the first Message',
'element' => 'Flash/default',
'params' => array()
),
array(
'key' => 'flash',
'message' => 'This is the second Message',
'element' => 'Flash/default',
'params' => array()
)
),
'notification' => array(
'key' => 'notification',
'message' => 'Broadcast message testing',
'element' => 'flash_helper',
'params' => array(
'title' => 'Notice!',
'name' => 'Alert!'
array(
'key' => 'notification',
'message' => 'Broadcast message testing',
'element' => 'flash_helper',
'params' => array(
'title' => 'Notice!',
'name' => 'Alert!'
)
)
),
'classy' => array(
'key' => 'classy',
'message' => 'Recorded',
'element' => 'flash_classy',
'params' => array()
array(
'key' => 'classy',
'message' => 'Recorded',
'element' => 'flash_classy',
'params' => array()
)
)
)
));
Expand All @@ -99,7 +111,7 @@ public function tearDown() {
*/
public function testFlash() {
$result = $this->Flash->render();
$expected = '<div class="message">This is a calling</div>';
$expected = '<div class="message">This is the first Message</div><div class="message">This is the second Message</div>';
$this->assertContains($expected, $result);

$expected = '<div id="classy-message">Recorded</div>';
Expand Down

0 comments on commit 924d382

Please sign in to comment.