Make FlashComponent/FlashHelper more backwards compatible.

Merge branch 'issue-6874' into 2.7.

Make AuthComponent use FlashComponent, and make FlashHelper more
compatible with SessionHelper::setFlash().
This commit is contained in:
mark_story 2015-06-26 22:05:32 -04:00
commit cbd45f702d
10 changed files with 38 additions and 38 deletions

View file

@ -0,0 +1 @@
<div id="<?php echo $key; ?>Message" class="<?php echo !empty($params['class']) ? $params['class'] : 'message'; ?>"><?php echo $message; ?></div>

View file

@ -50,7 +50,7 @@ class AuthComponent extends Component {
*
* @var array
*/
public $components = array('Session', 'RequestHandler');
public $components = array('Session', 'Flash', 'RequestHandler');
/**
* An array of authentication objects to use for authenticating users. You can configure
@ -840,7 +840,7 @@ class AuthComponent extends Component {
if ($message === false) {
return;
}
$this->Session->setFlash($message, $this->flash['element'], $this->flash['params'], $this->flash['key']);
$this->Flash->set($message, $this->flash);
}
}

View file

@ -84,7 +84,7 @@ class FlashComponent extends Component {
$options['element'] = 'Flash/' . $element;
}
CakeSession::write('Flash.' . $options['key'], array(
CakeSession::write('Message.' . $options['key'], array(
'message' => $message,
'key' => $options['key'],
'element' => $options['element'],

View file

@ -197,7 +197,6 @@ class ProjectTaskTest extends CakeTestCase {
'Test' . DS . 'Case' . DS . 'View' . DS . 'Helper' => 'empty',
'Test' . DS . 'Fixture' => 'empty',
'Vendor' => 'empty',
'View' . DS . 'Elements' => 'empty',
'View' . DS . 'Scaffolds' => 'empty',
'tmp' . DS . 'cache' . DS . 'models' => 'empty',
'tmp' . DS . 'cache' . DS . 'persistent' => 'empty',

View file

@ -165,7 +165,7 @@ class AuthTestController extends Controller {
*
* @var array
*/
public $components = array('Session', 'Auth');
public $components = array('Session', 'Flash', 'Auth');
/**
* testUrl property
@ -1093,9 +1093,9 @@ class AuthComponentTest extends CakeTestCase {
array('on', 'redirect'),
array($CakeRequest, $CakeResponse)
);
$this->Auth->Session = $this->getMock(
'SessionComponent',
array('setFlash'),
$this->Auth->Flash = $this->getMock(
'FlashComponent',
array('set'),
array($Controller->Components)
);
@ -1105,8 +1105,8 @@ class AuthComponentTest extends CakeTestCase {
$Controller->expects($this->once())
->method('redirect')
->with($this->equalTo($expected));
$this->Auth->Session->expects($this->once())
->method('setFlash');
$this->Auth->Flash->expects($this->once())
->method('set');
$this->Auth->startup($Controller);
}
@ -1132,9 +1132,9 @@ class AuthComponentTest extends CakeTestCase {
array('on', 'redirect'),
array($CakeRequest, $CakeResponse)
);
$this->Auth->Session = $this->getMock(
'SessionComponent',
array('setFlash'),
$this->Auth->Flash = $this->getMock(
'FlashComponent',
array('set'),
array($Controller->Components)
);
@ -1144,8 +1144,8 @@ class AuthComponentTest extends CakeTestCase {
$Controller->expects($this->once())
->method('redirect')
->with($this->equalTo($expected));
$this->Auth->Session->expects($this->never())
->method('setFlash');
$this->Auth->Flash->expects($this->never())
->method('set');
$this->Auth->startup($Controller);
}
@ -1514,10 +1514,10 @@ class AuthComponentTest extends CakeTestCase {
* @return void
*/
public function testFlashSettings() {
$this->Auth->Session = $this->getMock('SessionComponent', array(), array(), '', false);
$this->Auth->Session->expects($this->once())
->method('setFlash')
->with('Auth failure', 'custom', array(1), 'auth-key');
$this->Auth->Flash = $this->getMock('FlashComponent', array(), array(), '', false);
$this->Auth->Flash->expects($this->once())
->method('set')
->with('Auth failure', array('element' => 'custom', 'params' => array(1), 'key' => 'auth-key'));
$this->Auth->flash = array(
'element' => 'custom',

View file

@ -55,7 +55,7 @@ class FlashComponentTest extends CakeTestCase {
* @return void
*/
public function testSet() {
$this->assertNull(CakeSession::read('Flash.flash'));
$this->assertNull(CakeSession::read('Message.flash'));
$this->Flash->set('This is a test message');
$expected = array(
@ -64,7 +64,7 @@ class FlashComponentTest extends CakeTestCase {
'element' => 'Flash/default',
'params' => array()
);
$result = CakeSession::read('Flash.flash');
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
$this->Flash->set('This is a test message', array(
@ -77,7 +77,7 @@ class FlashComponentTest extends CakeTestCase {
'element' => 'Flash/test',
'params' => array('foo' => 'bar')
);
$result = CakeSession::read('Flash.flash');
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
$this->Flash->set('This is a test message', array('element' => 'MyPlugin.alert'));
@ -87,7 +87,7 @@ class FlashComponentTest extends CakeTestCase {
'element' => 'MyPlugin.Flash/alert',
'params' => array()
);
$result = CakeSession::read('Flash.flash');
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
$this->Flash->set('This is a test message', array('key' => 'foobar'));
@ -97,7 +97,7 @@ class FlashComponentTest extends CakeTestCase {
'element' => 'Flash/default',
'params' => array()
);
$result = CakeSession::read('Flash.foobar');
$result = CakeSession::read('Message.foobar');
$this->assertEquals($expected, $result);
}
@ -107,7 +107,7 @@ class FlashComponentTest extends CakeTestCase {
* @return void
*/
public function testSetWithException() {
$this->assertNull(CakeSession::read('Flash.flash'));
$this->assertNull(CakeSession::read('Message.flash'));
$this->Flash->set(new Exception('This is a test message', 404));
$expected = array(
@ -116,7 +116,7 @@ class FlashComponentTest extends CakeTestCase {
'element' => 'Flash/default',
'params' => array('code' => 404)
);
$result = CakeSession::read('Flash.flash');
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
}
@ -126,7 +126,7 @@ class FlashComponentTest extends CakeTestCase {
* @return void
*/
public function testSetWithComponentConfiguration() {
$this->assertNull(CakeSession::read('Flash.flash'));
$this->assertNull(CakeSession::read('Message.flash'));
$FlashWithSettings = $this->Components->load('Flash', array('element' => 'test'));
$FlashWithSettings->set('This is a test message');
@ -136,7 +136,7 @@ class FlashComponentTest extends CakeTestCase {
'element' => 'Flash/test',
'params' => array()
);
$result = CakeSession::read('Flash.flash');
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
}
@ -146,7 +146,7 @@ class FlashComponentTest extends CakeTestCase {
* @return void
*/
public function testCall() {
$this->assertNull(CakeSession::read('Flash.flash'));
$this->assertNull(CakeSession::read('Message.flash'));
$this->Flash->success('It worked');
$expected = array(
@ -155,7 +155,7 @@ class FlashComponentTest extends CakeTestCase {
'element' => 'Flash/success',
'params' => array()
);
$result = CakeSession::read('Flash.flash');
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result);
$this->Flash->error('It did not work', array('element' => 'error_thing'));
@ -165,7 +165,7 @@ class FlashComponentTest extends CakeTestCase {
'element' => 'Flash/error',
'params' => array()
);
$result = CakeSession::read('Flash.flash');
$result = CakeSession::read('Message.flash');
$this->assertEquals($expected, $result, 'Element is ignored in magic call.');
}
}

View file

@ -55,7 +55,7 @@ class FlashHelperTest extends CakeTestCase {
CakeSession::start();
}
CakeSession::write(array(
'Flash' => array(
'Message' => array(
'flash' => array(
'key' => 'flash',
'message' => 'This is a calling',
@ -108,7 +108,6 @@ class FlashHelperTest extends CakeTestCase {
$result = $this->Flash->render('notification');
$expected = "<div id=\"notificationLayout\">\n\t<h1>Alert!</h1>\n\t<h3>Notice!</h3>\n\t<p>Broadcast message testing</p>\n</div>";
$this->assertContains($expected, $result);
$this->assertNull($this->Flash->render('non-existent'));
@ -120,7 +119,7 @@ class FlashHelperTest extends CakeTestCase {
* @expectedException UnexpectedValueException
*/
public function testFlashThrowsException() {
CakeSession::write('Flash.foo', 'bar');
CakeSession::write('Message.foo', 'bar');
$this->Flash->render('foo');
}

View file

@ -0,0 +1 @@
<div id="<?php echo $key; ?>Message" class="<?php echo !empty($params['class']) ? $params['class'] : 'message'; ?>"><?php echo $message; ?></div>

View file

@ -61,7 +61,7 @@ class FlashHelper extends AppHelper {
* ));
* ```
*
* @param string $key The [Flash.]key you are rendering in the view.
* @param string $key The [Message.]key you are rendering in the view.
* @param array $options Additional options to use for the creation of this flash message.
* Supports the 'params', and 'element' keys that are used in the helper.
* @return string|null Rendered flash message or null if flash key does not exist
@ -69,11 +69,11 @@ class FlashHelper extends AppHelper {
* @throws UnexpectedValueException If value for flash settings key is not an array.
*/
public function render($key = 'flash', $options = array()) {
if (!CakeSession::check("Flash.$key")) {
if (!CakeSession::check("Message.$key")) {
return;
}
$flash = CakeSession::read("Flash.$key");
$flash = CakeSession::read("Message.$key");
if (!is_array($flash)) {
throw new UnexpectedValueException(sprintf(
@ -83,7 +83,7 @@ class FlashHelper extends AppHelper {
}
$flash = $options + $flash;
CakeSession::delete("Flash.$key");
CakeSession::delete("Message.$key");
return $this->_View->element($flash['element'], $flash);
}