aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorBob Remeika <bob.remeika@gmail.com>2009-09-23 00:18:10 -0700
committerStefan Penner <stefan.penner@gmail.com>2010-01-27 12:44:28 -0600
commita792ee5665fff4bd3751e97e1d949b60e73e333d (patch)
tree3d5e7f474546660f8697bf5251dc574606dda59f /actionpack/test/template
parentf3caa63bcbbfff093efcdfa3547fb2eb96479f0a (diff)
downloadrails-a792ee5665fff4bd3751e97e1d949b60e73e333d.tar.gz
rails-a792ee5665fff4bd3751e97e1d949b60e73e333d.tar.bz2
rails-a792ee5665fff4bd3751e97e1d949b60e73e333d.zip
Added the beginnings of the observe_field helper
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/ajax_test.rb55
1 files changed, 55 insertions, 0 deletions
diff --git a/actionpack/test/template/ajax_test.rb b/actionpack/test/template/ajax_test.rb
index aeb7c09b09..d212134d1d 100644
--- a/actionpack/test/template/ajax_test.rb
+++ b/actionpack/test/template/ajax_test.rb
@@ -112,3 +112,58 @@ class ButtonToRemoteTest < AjaxTestCase
end
end
end
+
+class ObserveFieldTest < AjaxTestCase
+ def url_for(hash)
+ "/blog/update"
+ end
+
+ def protect_against_forgery?
+ false
+ end
+
+ def field(options = {})
+ observe_field("title", options)
+ end
+
+ test "basic" do
+ assert_html field,
+ %w(data-observe="true")
+ end
+
+ test "with a :frequency option" do
+ assert_html field(:frequency => 5.minutes),
+ %w(data-observe="true" data-frequency="300")
+ end
+
+ test "using a url string" do
+ assert_html field(:url => "/some/other/url"),
+ %w(data-observe="true" data-url="/some/other/url")
+ end
+
+ test "using a url hash" do
+ assert_html field(:url => {:controller => :blog, :action => :update}),
+ %w(data-observe="true" data-url="/blog/update")
+ end
+
+# def test_observe_field
+# 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, parameters:value})})\n//]]>\n</script>),
+# observe_field("glass", :frequency => 5.minutes, :url => { :action => "reorder_if_empty" })
+# end
+#
+# def test_observe_field_using_with_option
+# expected = %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Element.Observer('glass', 300, function(element, value) {new Ajax.Request('http://www.example.com/check_value', {asynchronous:true, evalScripts:true, parameters:'id=' + encodeURIComponent(value)})})\n//]]>\n</script>)
+# assert_dom_equal expected, observe_field("glass", :frequency => 5.minutes, :url => { :action => "check_value" }, :with => 'id')
+# assert_dom_equal expected, observe_field("glass", :frequency => 5.minutes, :url => { :action => "check_value" }, :with => "'id=' + encodeURIComponent(value)")
+# end
+#
+# def test_observe_field_using_json_in_with_option
+# expected = %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Element.Observer('glass', 300, function(element, value) {new Ajax.Request('http://www.example.com/check_value', {asynchronous:true, evalScripts:true, parameters:{'id':value}})})\n//]]>\n</script>)
+# assert_dom_equal expected, observe_field("glass", :frequency => 5.minutes, :url => { :action => "check_value" }, :with => "{'id':value}")
+# end
+#
+# def test_observe_field_using_function_for_callback
+# assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Element.Observer('glass', 300, function(element, value) {alert('Element changed')})\n//]]>\n</script>),
+# observe_field("glass", :frequency => 5.minutes, :function => "alert('Element changed')")
+# end
+end