fix test cases to match new json output. Closes #8371

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6894 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Rick Olson 2007-05-29 09:42:13 +00:00
parent 0345c97587
commit 32b307bc32
3 changed files with 15 additions and 13 deletions

View File

@ -586,6 +586,8 @@ module ActionController
# RJS encodes double quotes and line breaks. # RJS encodes double quotes and line breaks.
unescaped= rjs_string.gsub('\"', '"') unescaped= rjs_string.gsub('\"', '"')
unescaped.gsub!('\n', "\n") unescaped.gsub!('\n', "\n")
unescaped.gsub!('\076', '>')
unescaped.gsub!('\074', '<')
# RJS encodes non-ascii characters. # RJS encodes non-ascii characters.
unescaped.gsub!(RJS_PATTERN_UNICODE_ESCAPED_CHAR) {|u| [$1.hex].pack('U*')} unescaped.gsub!(RJS_PATTERN_UNICODE_ESCAPED_CHAR) {|u| [$1.hex].pack('U*')}
unescaped unescaped

View File

@ -36,14 +36,14 @@ class JavaScriptHelperTest < Test::Unit::TestCase
html = link_to_function( "Greet me!" ) do |page| html = link_to_function( "Greet me!" ) do |page|
page.replace_html 'header', "<h1>Greetings</h1>" page.replace_html 'header', "<h1>Greetings</h1>"
end end
assert_dom_equal %(<a href="#" onclick="Element.update(&quot;header&quot;, &quot;&lt;h1&gt;Greetings&lt;/h1&gt;&quot;);; return false;">Greet me!</a>), html assert_dom_equal %(<a href="#" onclick="Element.update(&quot;header&quot;, &quot;\\074h1\\076Greetings\\074/h1\\076&quot;);; return false;">Greet me!</a>), html
end end
def test_link_to_function_with_rjs_block_and_options def test_link_to_function_with_rjs_block_and_options
html = link_to_function( "Greet me!", :class => "updater" ) do |page| html = link_to_function( "Greet me!", :class => "updater" ) do |page|
page.replace_html 'header', "<h1>Greetings</h1>" page.replace_html 'header', "<h1>Greetings</h1>"
end end
assert_dom_equal %(<a href="#" class="updater" onclick="Element.update(&quot;header&quot;, &quot;&lt;h1&gt;Greetings&lt;/h1&gt;&quot;);; return false;">Greet me!</a>), html assert_dom_equal %(<a href="#" class="updater" onclick="Element.update(&quot;header&quot;, &quot;\\074h1\\076Greetings\\074/h1\\076&quot;);; return false;">Greet me!</a>), html
end end
def test_button_to_function def test_button_to_function
@ -55,13 +55,13 @@ class JavaScriptHelperTest < Test::Unit::TestCase
html = button_to_function( "Greet me!" ) do |page| html = button_to_function( "Greet me!" ) do |page|
page.replace_html 'header', "<h1>Greetings</h1>" page.replace_html 'header', "<h1>Greetings</h1>"
end end
assert_dom_equal %(<input type="button" onclick="Element.update(&quot;header&quot;, &quot;&lt;h1&gt;Greetings&lt;/h1&gt;&quot;);;" value="Greet me!" />), html assert_dom_equal %(<input type="button" onclick="Element.update(&quot;header&quot;, &quot;\\074h1\\076Greetings\\074/h1\\076&quot;);;" value="Greet me!" />), html
end end
def test_button_to_function_with_rjs_block_and_options def test_button_to_function_with_rjs_block_and_options
html = button_to_function( "Greet me!", :class => "greeter" ) do |page| html = button_to_function( "Greet me!", :class => "greeter" ) do |page|
page.replace_html 'header', "<h1>Greetings</h1>" page.replace_html 'header', "<h1>Greetings</h1>"
end end
assert_dom_equal %(<input type="button" class="greeter" onclick="Element.update(&quot;header&quot;, &quot;&lt;h1&gt;Greetings&lt;/h1&gt;&quot;);;" value="Greet me!" />), html assert_dom_equal %(<input type="button" class="greeter" onclick="Element.update(&quot;header&quot;, &quot;\\074h1\\076Greetings\\074/h1\\076&quot;);;" value="Greet me!" />), html
end end
end end

View File

@ -232,23 +232,23 @@ class JavaScriptGeneratorTest < Test::Unit::TestCase
end end
def test_insert_html_with_string def test_insert_html_with_string
assert_equal 'new Insertion.Top("element", "<p>This is a test</p>");', assert_equal 'new Insertion.Top("element", "\\074p\\076This is a test\\074/p\\076");',
@generator.insert_html(:top, 'element', '<p>This is a test</p>') @generator.insert_html(:top, 'element', '<p>This is a test</p>')
assert_equal 'new Insertion.Bottom("element", "<p>This is a test</p>");', assert_equal 'new Insertion.Bottom("element", "\\074p\076This is a test\\074/p\076");',
@generator.insert_html(:bottom, 'element', '<p>This is a test</p>') @generator.insert_html(:bottom, 'element', '<p>This is a test</p>')
assert_equal 'new Insertion.Before("element", "<p>This is a test</p>");', assert_equal 'new Insertion.Before("element", "\\074p\076This is a test\\074/p\076");',
@generator.insert_html(:before, 'element', '<p>This is a test</p>') @generator.insert_html(:before, 'element', '<p>This is a test</p>')
assert_equal 'new Insertion.After("element", "<p>This is a test</p>");', assert_equal 'new Insertion.After("element", "\\074p\076This is a test\\074/p\076");',
@generator.insert_html(:after, 'element', '<p>This is a test</p>') @generator.insert_html(:after, 'element', '<p>This is a test</p>')
end end
def test_replace_html_with_string def test_replace_html_with_string
assert_equal 'Element.update("element", "<p>This is a test</p>");', assert_equal 'Element.update("element", "\\074p\\076This is a test\\074/p\\076");',
@generator.replace_html('element', '<p>This is a test</p>') @generator.replace_html('element', '<p>This is a test</p>')
end end
def test_replace_element_with_string def test_replace_element_with_string
assert_equal 'Element.replace("element", "<div id=\"element\"><p>This is a test</p></div>");', assert_equal 'Element.replace("element", "\\074div id=\"element\"\\076\\074p\\076This is a test\\074/p\\076\\074/div\\076");',
@generator.replace('element', '<div id="element"><p>This is a test</p></div>') @generator.replace('element', '<div id="element"><p>This is a test</p></div>')
end end
@ -304,10 +304,10 @@ class JavaScriptGeneratorTest < Test::Unit::TestCase
@generator.replace_html('baz', '<p>This is a test</p>') @generator.replace_html('baz', '<p>This is a test</p>')
assert_equal <<-EOS.chomp, @generator.to_s assert_equal <<-EOS.chomp, @generator.to_s
new Insertion.Top("element", "<p>This is a test</p>"); new Insertion.Top("element", "\\074p\\076This is a test\\074/p\\076");
new Insertion.Bottom("element", "<p>This is a test</p>"); new Insertion.Bottom("element", "\\074p\\076This is a test\\074/p\\076");
["foo", "bar"].each(Element.remove); ["foo", "bar"].each(Element.remove);
Element.update("baz", "<p>This is a test</p>"); Element.update("baz", "\\074p\\076This is a test\\074/p\\076");
EOS EOS
end end