aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/ujs/public/test/override.js
blob: d73276ee4f00066deecea833028c6046f8d06b3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
(function() {

var realHref

module('override', {
  setup: function() {
    realHref = $.rails.href
    $('#qunit-fixture')
      .append($('<a />', {
        href: '/real/href', 'data-remote': 'true', 'data-method': 'delete', 'data-href': '/data/href'
      }))
  },
  teardown: function() {
    $.rails.href = realHref
  }
})

asyncTest('the getter for an element\'s href is publicly accessible', 1, function() {
  ok($.rails.href)
  start()
})

asyncTest('the getter for an element\'s href is overridable', 1, function() {
  $.rails.href = function(element) { return $(element).data('href') }
  $('#qunit-fixture a')
    .bindNative('ajax:beforeSend', function(e, xhr, options) {
      equal('/data/href', options.url)
      e.preventDefault()
    })
    .triggerNative('click')
  start()
})

asyncTest('the getter for an element\'s href works normally if not overridden', 1, function() {
  $('#qunit-fixture a')
    .bindNative('ajax:beforeSend', function(e, xhr, options) {
      equal(location.protocol + '//' + location.host + '/real/href', options.url)
      e.preventDefault()
    })
    .triggerNative('click')
  start()
})

asyncTest('the event selector strings are overridable', 1, function() {
  ok($.rails.linkClickSelector.indexOf(', a[data-custom-remote-link]') != -1, 'linkClickSelector contains custom selector')
  start()
})

asyncTest('including rails-ujs multiple times throws error', 1, function() {
  throws(function() {
    Rails.start()
  }, 'appending rails.js again throws error')
  setTimeout(function() { start() }, 50)
})

})()