Skip to content

Commit

Permalink
Fixing parameters from leaking into the script tag when calling JsHel…
Browse files Browse the repository at this point in the history
…per::submit(). Added test cases and refactored JsHelper::link(). Fixes #613
  • Loading branch information
markstory committed Apr 23, 2010
1 parent c404ae5 commit bc6b8e5
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 5 deletions.
8 changes: 3 additions & 5 deletions cake/libs/view/helpers/js.php
Expand Up @@ -319,10 +319,7 @@ function link($title, $url = null, $options = array()) {
$event = $this->event('click', $requestString, $options);
}
if (isset($options['buffer']) && $options['buffer'] == false) {
$opts = array();
if (isset($options['safe'])) {
$opts['safe'] = $options['safe'];
}
$opts = array_intersect_key(array('safe' => null), $options);
$out .= $this->Html->scriptBlock($event, $opts);
}
return $out;
Expand Down Expand Up @@ -397,7 +394,8 @@ function submit($caption = null, $options = array()) {
$event = $this->event('click', $requestString, $options);
}
if (isset($options['buffer']) && $options['buffer'] == false) {
$out .= $this->Html->scriptBlock($event, $options);
$opts = array_intersect_key(array('safe' => null), $options);
$out .= $this->Html->scriptBlock($event, $opts);
}
return $out;
}
Expand Down
37 changes: 37 additions & 0 deletions cake/tests/cases/libs/view/helpers/js.test.php
Expand Up @@ -456,6 +456,43 @@ function testSubmitWithMock() {
$this->assertTags($result, $expected);
}

/**
* test that no buffer works with submit() and that parameters are leaking into the script tag.
*
* @return void
*/
function testSubmitWithNoBuffer() {
$this->_useMock();
$options = array('update' => '#content', 'id' => 'test-submit', 'buffer' => false, 'safe' => false);
$this->Js->TestJsEngine->setReturnValue('dispatchMethod', 'serialize-code', array('serializeform', '*'));
$this->Js->TestJsEngine->setReturnValue('dispatchMethod', 'serialize-code', array('serializeForm', '*'));
$this->Js->TestJsEngine->setReturnValue('dispatchMethod', 'ajax-code', array('request', '*'));
$this->Js->TestJsEngine->setReturnValue('dispatchMethod', 'event-handler', array('event', '*'));

$this->Js->TestJsEngine->expectAt(0, 'dispatchMethod', array('get', '*'));
$this->Js->TestJsEngine->expectAt(1, 'dispatchMethod', array(new PatternExpectation('/serializeForm/i'), '*'));
$this->Js->TestJsEngine->expectAt(2, 'dispatchMethod', array('request', '*'));

$params = array(
'update' => $options['update'], 'buffer' => false, 'safe' => false, 'data' => 'serialize-code',
'method' => 'post', 'dataExpression' => true
);
$this->Js->TestJsEngine->expectAt(3, 'dispatchMethod', array(
'event', array('click', "ajax-code", $params)
));

$result = $this->Js->submit('Save', $options);
$expected = array(
'div' => array('class' => 'submit'),
'input' => array('type' => 'submit', 'id' => $options['id'], 'value' => 'Save'),
'/div',
'script' => array('type' => 'text/javascript'),
'event-handler',
'/script'
);
$this->assertTags($result, $expected);
}

/**
* Test that Object::Object() is not breaking json output in JsHelper
*
Expand Down

0 comments on commit bc6b8e5

Please sign in to comment.