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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
describe "settings", ->
$inputor = null
app = null
controller = null
callbacks = null
$ = jQuery
beforeEach ->
loadFixtures("inputors.html")
$inputor = $("#inputor").atwho at: "@", data: fixtures["names"]
app = getAppOf $inputor
controller = app.controller()
callbacks = $.fn.atwho.default.callbacks
afterEach ->
$inputor.atwho 'destroy'
it "update common settings", ->
func = () ->
$.noop
old = $.extend {}, $.fn.atwho.default.callbacks
$.fn.atwho.default.callbacks.filter = func
$.fn.atwho.default.limit = 8
$inputor = $("<input/>").atwho at: "@"
controller = $inputor.data('atwho').setContextFor("@").controller()
expect(controller.callbacks("filter")).toBe func
expect(controller.getOpt("limit")).toBe 8
$.extend $.fn.atwho.default.callbacks, old
it "setting empty at", ->
$inputor = $("<input/>").atwho at: ""
controller = $inputor.data('atwho').controller ""
expect(controller).toBeDefined()
it "update specific settings", ->
$inputor.atwho at: "@", limit: 3
expect(controller.setting.limit).toBe(3)
it "update callbacks", ->
filter = jasmine.createSpy("custom filter")
spyOn(callbacks, "filter")
$inputor.atwho
at: "@"
callbacks:
filter: filter
triggerAtwhoAt $inputor
expect(filter).toHaveBeenCalled()
expect(callbacks.filter).not.toHaveBeenCalled()
it "setting timeout", ->
jasmine.clock().install()
$inputor.atwho
at: "@"
displayTimeout: 500
simulateTypingIn $inputor
$inputor.trigger "blur"
view = controller.view.$el
expect(view).not.toBeHidden()
jasmine.clock().tick 503
expect(view).toBeHidden()
jasmine.clock().uninstall()
it "escape RegExp flag", ->
$inputor = $('#inputor2').atwho
at: "$"
data: fixtures["names"]
controller = $inputor.data('atwho').setContextFor("$").controller()
simulateTypingIn $inputor, "$"
expect(controller.view.visible()).toBe true
it "can be trigger with no space", ->
$inputor = $('#inputor3').atwho
at: "@"
data: fixtures["names"]
startWithSpace: no
controller = $inputor.data('atwho').setContextFor("@").controller()
simulateTypingIn $inputor
expect(controller.view.visible()).toBe true
it 'highlight first', ->
simulateTypingIn $inputor
expect(controller.view.$el.find('ul li:first')).toHaveClass('cur')
$inputor.atwho
at: '@'
highlightFirst: false
simulateTypingIn $inputor
expect(controller.view.$el.find('ul li:first')).not.toHaveClass('cur')
it 'query out of maxLen', ->
$inputor.atwho
at: '@'
maxLen: 0
simulateTypingIn $inputor
expect(controller.query).toBe null
it 'should not build query or run afterMatchFailed callback when out of minLen', ->
$inputor = $('#editable').atwho
at: '@'
minLen: 2
callbacks:
afterMatchFailed: (at, $el) ->
$el.replaceWith('<div id="failed-match"></div>')
simulateTypingIn $inputor
expect(controller.query).toBe null
expect($('#failed-match').length).toBe 0
describe "`data` as url and load remote data", ->
beforeEach ->
jasmine.Ajax.install()
controller = app.controller()
controller.model.save null
$inputor.atwho
at: "@"
data: "/atwho.json"
afterEach ->
jasmine.Ajax.uninstall()
it "data should be empty at first", ->
expect(controller.model.fetch().length).toBe 0
it "should load data after focus inputor", ->
simulateTypingIn $inputor
request = jasmine.Ajax.requests.mostRecent()
response_data = [{"name":"Jacob"}, {"name":"Joshua"}, {"name":"Jayden"}]
request.respondWith
status: 200
responseText: JSON.stringify(response_data)
expect(controller.model.fetch().length).toBe 3
|