2005-03-26 14:03:55 +00:00
|
|
|
require File.dirname(__FILE__) + '/../abstract_unit'
|
|
|
|
|
2005-06-29 08:09:00 +00:00
|
|
|
class JavaScriptHelperTest < Test::Unit::TestCase
|
|
|
|
include ActionView::Helpers::JavaScriptHelper
|
2005-06-18 05:17:39 +00:00
|
|
|
|
|
|
|
include ActionView::Helpers::UrlHelper
|
|
|
|
include ActionView::Helpers::TagHelper
|
2005-07-02 18:20:13 +00:00
|
|
|
include ActionView::Helpers::TextHelper
|
|
|
|
include ActionView::Helpers::FormHelper
|
2005-07-04 04:57:15 +00:00
|
|
|
include ActionView::Helpers::CaptureHelper
|
2005-06-18 05:17:39 +00:00
|
|
|
|
|
|
|
def setup
|
|
|
|
@controller = Class.new do
|
|
|
|
def url_for(options, *parameters_for_method_reference)
|
|
|
|
url = "http://www.example.com/"
|
|
|
|
url << options[:action].to_s if options and options[:action]
|
|
|
|
url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
@controller = @controller.new
|
|
|
|
end
|
2005-06-26 12:03:43 +00:00
|
|
|
|
|
|
|
def test_define_javascript_functions
|
|
|
|
# check if prototype.js is included first
|
2005-06-29 08:09:00 +00:00
|
|
|
assert_not_nil define_javascript_functions.split("\n")[1].match(/Prototype JavaScript framework/)
|
2005-09-28 08:20:47 +00:00
|
|
|
|
|
|
|
# check that scriptaculous.js is not in here, only needed if loaded remotely
|
|
|
|
assert_nil define_javascript_functions.split("\n")[1].match(/var Scriptaculous = \{/)
|
2005-06-26 12:03:43 +00:00
|
|
|
end
|
2005-03-26 14:03:55 +00:00
|
|
|
|
|
|
|
def test_escape_javascript
|
|
|
|
assert_equal %(This \\"thing\\" is really\\n netos\\'), escape_javascript(%(This "thing" is really\n netos'))
|
|
|
|
end
|
2005-06-18 05:17:39 +00:00
|
|
|
|
|
|
|
def test_link_to_function
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<a href="#" onclick="alert('Hello world!'); return false;">Greeting</a>),
|
2005-06-18 05:17:39 +00:00
|
|
|
link_to_function("Greeting", "alert('Hello world!')")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_link_to_remote
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<a class=\"fine\" href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot', {asynchronous:true, evalScripts:true}); return false;\">Remote outpost</a>),
|
2005-06-18 05:17:39 +00:00
|
|
|
link_to_remote("Remote outpost", { :url => { :action => "whatnot" }}, { :class => "fine" })
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<a href=\"#\" onclick=\"new Ajax.Request('http://www.example.com/whatnot', {asynchronous:true, evalScripts:true, onComplete:function(request){alert(request.reponseText)}}); return false;\">Remote outpost</a>),
|
2005-06-18 05:17:39 +00:00
|
|
|
link_to_remote("Remote outpost", :complete => "alert(request.reponseText)", :url => { :action => "whatnot" })
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_periodically_call_remote
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type="text/javascript">\n//<![CDATA[\nnew PeriodicalExecuter(function() {new Ajax.Updater('schremser_bier', 'http://www.example.com/mehr_bier', {asynchronous:true, evalScripts:true})}, 10)\n//]]>\n</script>),
|
2005-06-18 05:17:39 +00:00
|
|
|
periodically_call_remote(:update => "schremser_bier", :url => { :action => "mehr_bier" })
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_form_remote_tag
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater('glass_of_beer', 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return false;\">),
|
2005-06-18 05:17:39 +00:00
|
|
|
form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast })
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater({success:'glass_of_beer'}, 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return false;\">),
|
2005-07-03 08:00:38 +00:00
|
|
|
form_remote_tag(:update => { :success => "glass_of_beer" }, :url => { :action => :fast })
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater({failure:'glass_of_water'}, 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return false;\">),
|
2005-07-03 08:00:38 +00:00
|
|
|
form_remote_tag(:update => { :failure => "glass_of_water" }, :url => { :action => :fast })
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater({success:'glass_of_beer',failure:'glass_of_water'}, 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return false;\">),
|
2005-07-03 08:00:38 +00:00
|
|
|
form_remote_tag(:update => { :success => 'glass_of_beer', :failure => "glass_of_water" }, :url => { :action => :fast })
|
2005-06-18 05:17:39 +00:00
|
|
|
end
|
|
|
|
|
2005-07-14 11:38:55 +00:00
|
|
|
def test_on_callbacks
|
|
|
|
callbacks = [:uninitialized, :loading, :loaded, :interactive, :complete, :success, :failure]
|
|
|
|
callbacks.each do |callback|
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater('glass_of_beer', 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, on#{callback.to_s.capitalize}:function(request){monkeys();}, parameters:Form.serialize(this)}); return false;">),
|
2005-07-14 11:38:55 +00:00
|
|
|
form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, callback=>"monkeys();")
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater({success:'glass_of_beer'}, 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, on#{callback.to_s.capitalize}:function(request){monkeys();}, parameters:Form.serialize(this)}); return false;">),
|
2005-07-14 11:38:55 +00:00
|
|
|
form_remote_tag(:update => { :success => "glass_of_beer" }, :url => { :action => :fast }, callback=>"monkeys();")
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater({failure:'glass_of_beer'}, 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, on#{callback.to_s.capitalize}:function(request){monkeys();}, parameters:Form.serialize(this)}); return false;">),
|
2005-07-14 11:38:55 +00:00
|
|
|
form_remote_tag(:update => { :failure => "glass_of_beer" }, :url => { :action => :fast }, callback=>"monkeys();")
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater({success:'glass_of_beer',failure:'glass_of_water'}, 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, on#{callback.to_s.capitalize}:function(request){monkeys();}, parameters:Form.serialize(this)}); return false;">),
|
2005-07-14 11:38:55 +00:00
|
|
|
form_remote_tag(:update => { :success => "glass_of_beer", :failure => "glass_of_water" }, :url => { :action => :fast }, callback=>"monkeys();")
|
|
|
|
end
|
|
|
|
|
|
|
|
#HTTP status codes 200 up to 599 have callbacks
|
|
|
|
#these should work
|
|
|
|
100.upto(599) do |callback|
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater('glass_of_beer', 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, on#{callback.to_s.capitalize}:function(request){monkeys();}, parameters:Form.serialize(this)}); return false;">),
|
2005-07-14 11:38:55 +00:00
|
|
|
form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, callback=>"monkeys();")
|
|
|
|
end
|
|
|
|
|
|
|
|
#test 200 and 404
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater('glass_of_beer', 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, on200:function(request){monkeys();}, on404:function(request){bananas();}, parameters:Form.serialize(this)}); return false;">),
|
2005-07-14 11:38:55 +00:00
|
|
|
form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, 200=>"monkeys();", 404=>"bananas();")
|
|
|
|
|
|
|
|
#these shouldn't
|
|
|
|
1.upto(99) do |callback|
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater('glass_of_beer', 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return false;">),
|
2005-07-14 11:38:55 +00:00
|
|
|
form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, callback=>"monkeys();")
|
|
|
|
end
|
|
|
|
600.upto(999) do |callback|
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater('glass_of_beer', 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return false;">),
|
2005-07-14 11:38:55 +00:00
|
|
|
form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, callback=>"monkeys();")
|
|
|
|
end
|
|
|
|
|
|
|
|
#test ultimate combo
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<form action=\"http://www.example.com/fast\" method=\"post\" onsubmit=\"new Ajax.Updater('glass_of_beer', 'http://www.example.com/fast', {asynchronous:true, evalScripts:true, on200:function(request){monkeys();}, on404:function(request){bananas();}, onComplete:function(request){c();}, onFailure:function(request){f();}, onLoading:function(request){c1()}, onSuccess:function(request){s()}, parameters:Form.serialize(this)}); return false;\">),
|
2005-07-14 11:38:55 +00:00
|
|
|
form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, :loading => "c1()", :success => "s()", :failure => "f();", :complete => "c();", 200=>"monkeys();", 404=>"bananas();")
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2005-06-18 05:17:39 +00:00
|
|
|
def test_submit_to_remote
|
2005-09-20 07:54:55 +00:00
|
|
|
assert_dom_equal %(<input name=\"More beer!\" onclick=\"new Ajax.Updater('empty_bottle', 'http://www.example.com/', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this.form)}); return false;\" type=\"button\" value=\"1000000\" />),
|
2005-06-18 05:17:39 +00:00
|
|
|
submit_to_remote("More beer!", 1_000_000, :update => "empty_bottle")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_observe_field
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Element.Observer('glass', 300, function(element, value) {new Ajax.Request('http://www.example.com/reorder_if_empty', {asynchronous:true, evalScripts:true})})\n//]]>\n</script>),
|
2005-06-18 05:17:39 +00:00
|
|
|
observe_field("glass", :frequency => 5.minutes, :url => { :action => "reorder_if_empty" })
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_observe_form
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Observer('cart', 2, function(element, value) {new Ajax.Request('http://www.example.com/cart_changed', {asynchronous:true, evalScripts:true})})\n//]]>\n</script>),
|
2005-06-18 05:17:39 +00:00
|
|
|
observe_form("cart", :frequency => 2, :url => { :action => "cart_changed" })
|
|
|
|
end
|
|
|
|
|
2005-06-26 12:03:43 +00:00
|
|
|
def test_effect
|
|
|
|
assert_equal "new Effect.Highlight('posts',{});", visual_effect(:highlight, "posts")
|
|
|
|
assert_equal "new Effect.Highlight('posts',{});", visual_effect("highlight", :posts)
|
|
|
|
assert_equal "new Effect.Highlight('posts',{});", visual_effect(:highlight, :posts)
|
|
|
|
assert_equal "new Effect.Fade('fademe',{duration:4.0});", visual_effect(:fade, "fademe", :duration => 4.0)
|
2005-07-02 18:20:13 +00:00
|
|
|
assert_equal "new Effect.Shake(element,{});", visual_effect(:shake)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_sortable_element
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nSortable.create('mylist', {onUpdate:function(){new Ajax.Request('http://www.example.com/order', {asynchronous:true, evalScripts:true, parameters:Sortable.serialize('mylist')})}})\n//]]>\n</script>),
|
2005-07-02 18:20:13 +00:00
|
|
|
sortable_element("mylist", :url => { :action => "order" })
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nSortable.create('mylist', {constraint:'horizontal', onUpdate:function(){new Ajax.Request('http://www.example.com/order', {asynchronous:true, evalScripts:true, parameters:Sortable.serialize('mylist')})}, tag:'div'})\n//]]>\n</script>),
|
2005-07-06 08:32:04 +00:00
|
|
|
sortable_element("mylist", :tag => "div", :constraint => "horizontal", :url => { :action => "order" })
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %|<script type=\"text/javascript\">\n//<![CDATA[\nSortable.create('mylist', {constraint:'horizontal', containment:['list1','list2'], onUpdate:function(){new Ajax.Request('http://www.example.com/order', {asynchronous:true, evalScripts:true, parameters:Sortable.serialize('mylist')})}})\n//]]>\n</script>|,
|
2005-07-06 08:32:04 +00:00
|
|
|
sortable_element("mylist", :containment => ['list1','list2'], :constraint => "horizontal", :url => { :action => "order" })
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nSortable.create('mylist', {constraint:'horizontal', containment:'list1', onUpdate:function(){new Ajax.Request('http://www.example.com/order', {asynchronous:true, evalScripts:true, parameters:Sortable.serialize('mylist')})}})\n//]]>\n</script>),
|
2005-07-06 08:32:04 +00:00
|
|
|
sortable_element("mylist", :containment => 'list1', :constraint => "horizontal", :url => { :action => "order" })
|
2005-07-02 18:20:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_draggable_element
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Draggable('product_13', {})\n//]]>\n</script>),
|
2005-07-02 18:20:13 +00:00
|
|
|
draggable_element('product_13')
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Draggable('product_13', {revert:true})\n//]]>\n</script>),
|
2005-07-02 18:20:13 +00:00
|
|
|
draggable_element('product_13', :revert => true)
|
2005-06-26 12:03:43 +00:00
|
|
|
end
|
|
|
|
|
2005-07-02 18:20:13 +00:00
|
|
|
def test_drop_receiving_element
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nDroppables.add('droptarget1', {onDrop:function(element){new Ajax.Request('http://www.example.com/', {asynchronous:true, evalScripts:true, parameters:'id=' + encodeURIComponent(element.id)})}})\n//]]>\n</script>),
|
2005-07-02 18:20:13 +00:00
|
|
|
drop_receiving_element('droptarget1')
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nDroppables.add('droptarget1', {accept:'products', onDrop:function(element){new Ajax.Request('http://www.example.com/', {asynchronous:true, evalScripts:true, parameters:'id=' + encodeURIComponent(element.id)})}})\n//]]>\n</script>),
|
2005-07-02 18:20:13 +00:00
|
|
|
drop_receiving_element('droptarget1', :accept => 'products')
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nDroppables.add('droptarget1', {accept:'products', onDrop:function(element){new Ajax.Updater('infobox', 'http://www.example.com/', {asynchronous:true, evalScripts:true, parameters:'id=' + encodeURIComponent(element.id)})}})\n//]]>\n</script>),
|
2005-07-02 18:20:13 +00:00
|
|
|
drop_receiving_element('droptarget1', :accept => 'products', :update => 'infobox')
|
2005-10-12 22:47:39 +00:00
|
|
|
assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nDroppables.add('droptarget1', {accept:['tshirts','mugs'], onDrop:function(element){new Ajax.Updater('infobox', 'http://www.example.com/', {asynchronous:true, evalScripts:true, parameters:'id=' + encodeURIComponent(element.id)})}})\n//]]>\n</script>),
|
2005-07-06 08:32:04 +00:00
|
|
|
drop_receiving_element('droptarget1', :accept => ['tshirts','mugs'], :update => 'infobox')
|
2005-06-26 12:03:43 +00:00
|
|
|
end
|
|
|
|
|
2005-07-04 04:57:15 +00:00
|
|
|
def test_update_element_function
|
|
|
|
assert_equal %($('myelement').innerHTML = 'blub';\n),
|
|
|
|
update_element_function('myelement', :content => 'blub')
|
|
|
|
assert_equal %($('myelement').innerHTML = 'blub';\n),
|
|
|
|
update_element_function('myelement', :action => :update, :content => 'blub')
|
|
|
|
assert_equal %($('myelement').innerHTML = '';\n),
|
|
|
|
update_element_function('myelement', :action => :empty)
|
|
|
|
assert_equal %(Element.remove('myelement');\n),
|
|
|
|
update_element_function('myelement', :action => :remove)
|
|
|
|
|
|
|
|
assert_equal %(new Insertion.Bottom('myelement','blub');\n),
|
|
|
|
update_element_function('myelement', :position => 'bottom', :content => 'blub')
|
|
|
|
assert_equal %(new Insertion.Bottom('myelement','blub');\n),
|
|
|
|
update_element_function('myelement', :action => :update, :position => :bottom, :content => 'blub')
|
|
|
|
|
|
|
|
_erbout = ""
|
|
|
|
assert_equal %($('myelement').innerHTML = 'test';\n),
|
|
|
|
update_element_function('myelement') { _erbout << "test" }
|
|
|
|
|
|
|
|
_erbout = ""
|
|
|
|
assert_equal %($('myelement').innerHTML = 'blockstuff';\n),
|
|
|
|
update_element_function('myelement', :content => 'paramstuff') { _erbout << "blockstuff" }
|
|
|
|
end
|
|
|
|
|
2005-03-26 14:03:55 +00:00
|
|
|
end
|