aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-09-03 16:49:38 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-09-03 17:02:38 +0900
commita5d80d4a1c4a41ec92985e34cac23bac0509e7fb (patch)
treea83142a27b476f9358bebeedb47316376f07919c /actionview/test
parent806f96ceaecbf9cf8d2fdbbdaf1fb2a499769cbf (diff)
downloadrails-a5d80d4a1c4a41ec92985e34cac23bac0509e7fb.tar.gz
rails-a5d80d4a1c4a41ec92985e34cac23bac0509e7fb.tar.bz2
rails-a5d80d4a1c4a41ec92985e34cac23bac0509e7fb.zip
Does not include disabled element in params
In the case of remote, it should be the same behavior as submitting HTML form. Fixes #30444
Diffstat (limited to 'actionview/test')
-rw-r--r--actionview/test/ujs/public/test/data-remote.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionview/test/ujs/public/test/data-remote.js b/actionview/test/ujs/public/test/data-remote.js
index 9bbefc18f2..cbbd4e6c92 100644
--- a/actionview/test/ujs/public/test/data-remote.js
+++ b/actionview/test/ujs/public/test/data-remote.js
@@ -191,9 +191,10 @@ asyncTest('submitting form with data-remote attribute should include inputs in a
.triggerNative('submit')
})
-asyncTest('submitting form with data-remote attribute submits input with matching [form] attribute', 5, function() {
+asyncTest('submitting form with data-remote attribute submits input with matching [form] attribute', 6, function() {
$('#qunit-fixture')
.append($('<input type="text" name="user_data" value="value1" form="my-remote-form">'))
+ .append($('<input type="text" name="user_email" value="from@example.com" disabled="disabled" form="my-remote-form">'))
$('form[data-remote]')
.bindNative('ajax:success', function(e, data, status, xhr) {
@@ -201,6 +202,7 @@ asyncTest('submitting form with data-remote attribute submits input with matchin
App.assertRequestPath(data, '/echo')
equal(data.params.user_name, 'john', 'ajax arguments should have key user_name with right value')
equal(data.params.user_data, 'value1', 'ajax arguments should have key user_data with right value')
+ equal(data.params.user_email, undefined, 'ajax arguments should not have disabled field')
App.assertPostRequest(data)
})
.bindNative('ajax:complete', function() { start() })