require File.dirname(__FILE__) + '/../abstract_unit' class JavaScriptHelperTest < Test::Unit::TestCase include ActionView::Helpers::JavaScriptHelper include ActionView::Helpers::UrlHelper include ActionView::Helpers::TagHelper include ActionView::Helpers::TextHelper include ActionView::Helpers::FormHelper include ActionView::Helpers::CaptureHelper 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 def test_define_javascript_functions # check if prototype.js is included first assert_not_nil define_javascript_functions.split("\n")[1].match(/Prototype JavaScript framework/) end def test_escape_javascript assert_equal %(This \\"thing\\" is really\\n netos\\'), escape_javascript(%(This "thing" is really\n netos')) end def test_link_to_function assert_equal %(Greeting), link_to_function("Greeting", "alert('Hello world!')") end def test_link_to_remote assert_equal %(Remote outpost), link_to_remote("Remote outpost", { :url => { :action => "whatnot" }}, { :class => "fine" }) assert_equal %(Remote outpost), link_to_remote("Remote outpost", :complete => "alert(request.reponseText)", :url => { :action => "whatnot" }) end def test_periodically_call_remote assert_equal %(), periodically_call_remote(:update => "schremser_bier", :url => { :action => "mehr_bier" }) end def test_form_remote_tag assert_equal %(
), form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }) assert_equal %(), form_remote_tag(:update => { :success => "glass_of_beer" }, :url => { :action => :fast }) assert_equal %(), form_remote_tag(:update => { :failure => "glass_of_water" }, :url => { :action => :fast }) assert_equal %(), form_remote_tag(:update => { :success => 'glass_of_beer', :failure => "glass_of_water" }, :url => { :action => :fast }) end def test_on_callbacks callbacks = [:uninitialized, :loading, :loaded, :interactive, :complete, :success, :failure] callbacks.each do |callback| assert_equal %(), form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, callback=>"monkeys();") assert_equal %(), form_remote_tag(:update => { :success => "glass_of_beer" }, :url => { :action => :fast }, callback=>"monkeys();") assert_equal %(), form_remote_tag(:update => { :failure => "glass_of_beer" }, :url => { :action => :fast }, callback=>"monkeys();") assert_equal %(), 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| assert_equal %(), form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, callback=>"monkeys();") end #test 200 and 404 assert_equal %(), form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, 200=>"monkeys();", 404=>"bananas();") #these shouldn't 1.upto(99) do |callback| assert_equal %(), form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, callback=>"monkeys();") end 600.upto(999) do |callback| assert_equal %(), form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, callback=>"monkeys();") end #test ultimate combo assert_equal %(), form_remote_tag(:update => "glass_of_beer", :url => { :action => :fast }, :loading => "c1()", :success => "s()", :failure => "f();", :complete => "c();", 200=>"monkeys();", 404=>"bananas();") end def test_submit_to_remote assert_equal %(), submit_to_remote("More beer!", 1_000_000, :update => "empty_bottle") end def test_observe_field assert_equal %(), observe_field("glass", :frequency => 5.minutes, :url => { :action => "reorder_if_empty" }) end def test_observe_form assert_equal %(), observe_form("cart", :frequency => 2, :url => { :action => "cart_changed" }) end def test_auto_complete_field assert_equal %(), auto_complete_field("some_input", :url => { :action => "autocomplete" }); assert_equal %(), auto_complete_field("some_input", :url => { :action => "autocomplete" }, :tokens => ','); assert_equal %(), auto_complete_field("some_input", :url => { :action => "autocomplete" }, :tokens => [',']); end def test_auto_complete_result result = [ { :title => 'test1' }, { :title => 'test2' } ] assert_equal %(), auto_complete_result(result, :title) assert_equal %(), auto_complete_result(result, :title, "est") end def test_text_field_with_auto_complete assert_match "