Merge branch 'private-bz_2105_update_button_unusable_after_modal_dialog_is_gone_rebased' into develop
This commit is contained in:
commit
4685f147e6
2 changed files with 96 additions and 0 deletions
|
@ -29,6 +29,10 @@ class App.TicketZoomTimeAccounting extends App.ControllerModal
|
||||||
return if !@cancelCallback
|
return if !@cancelCallback
|
||||||
@cancelCallback()
|
@cancelCallback()
|
||||||
|
|
||||||
|
onClose: ->
|
||||||
|
return if !@cancelCallback
|
||||||
|
@cancelCallback()
|
||||||
|
|
||||||
onSubmit: =>
|
onSubmit: =>
|
||||||
@$('[name="time_unit"]').removeClass('has-error')
|
@$('[name="time_unit"]').removeClass('has-error')
|
||||||
params = @formParams()
|
params = @formParams()
|
||||||
|
|
|
@ -158,4 +158,96 @@ class AgentTicketTimeAccountingTest < TestCase
|
||||||
# off still active timeaccounting
|
# off still active timeaccounting
|
||||||
logout()
|
logout()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_closing_time_accounting_modal_by_clicking_background
|
||||||
|
@browser = browser_instance
|
||||||
|
login(
|
||||||
|
username: 'master@example.com',
|
||||||
|
password: 'test',
|
||||||
|
url: browser_url,
|
||||||
|
)
|
||||||
|
tasks_close_all()
|
||||||
|
|
||||||
|
# enable time accounting
|
||||||
|
click(
|
||||||
|
css: 'a[href="#manage"]',
|
||||||
|
)
|
||||||
|
click(
|
||||||
|
css: '.content.active a[href="#manage/time_accounting"]',
|
||||||
|
)
|
||||||
|
switch(
|
||||||
|
css: '.content.active .js-timeAccountingSetting',
|
||||||
|
type: 'on',
|
||||||
|
)
|
||||||
|
|
||||||
|
ticket1 = ticket_create(
|
||||||
|
data: {
|
||||||
|
customer: 'nico',
|
||||||
|
group: 'Users',
|
||||||
|
title: 'some subject - time accounting#3',
|
||||||
|
body: 'some body - time accounting#3',
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
ticket_update(
|
||||||
|
data: {
|
||||||
|
body: 'some note',
|
||||||
|
},
|
||||||
|
do_not_submit: true,
|
||||||
|
)
|
||||||
|
click(
|
||||||
|
css: '.active .js-submit',
|
||||||
|
)
|
||||||
|
|
||||||
|
watch_for(
|
||||||
|
css: '.content.active .modal',
|
||||||
|
value: 'Time Accounting',
|
||||||
|
)
|
||||||
|
|
||||||
|
# Click outside the modal to make it disappear
|
||||||
|
execute(
|
||||||
|
js: 'document.elementFromPoint(300, 100).click();',
|
||||||
|
)
|
||||||
|
watch_for_disappear(
|
||||||
|
css: '.content.active .modal',
|
||||||
|
value: 'Time Accounting',
|
||||||
|
)
|
||||||
|
|
||||||
|
click(
|
||||||
|
css: '.active .js-submit',
|
||||||
|
)
|
||||||
|
watch_for(
|
||||||
|
css: '.content.active .modal',
|
||||||
|
value: 'Time Accounting',
|
||||||
|
)
|
||||||
|
|
||||||
|
set(
|
||||||
|
css: '.content.active .modal [name=time_unit]',
|
||||||
|
value: '4',
|
||||||
|
)
|
||||||
|
click(
|
||||||
|
css: '.content.active .modal .js-submit',
|
||||||
|
)
|
||||||
|
watch_for_disappear(
|
||||||
|
css: '.content.active .modal',
|
||||||
|
value: 'Time Accounting',
|
||||||
|
)
|
||||||
|
|
||||||
|
# disable time accounting
|
||||||
|
click(
|
||||||
|
css: 'a[href="#manage"]',
|
||||||
|
)
|
||||||
|
click(
|
||||||
|
css: '.content.active a[href="#manage/time_accounting"]',
|
||||||
|
)
|
||||||
|
switch(
|
||||||
|
css: '.content.active .js-timeAccountingSetting',
|
||||||
|
type: 'off',
|
||||||
|
)
|
||||||
|
|
||||||
|
# make sure "off" AJAX request gets completed
|
||||||
|
# otherwise following tests might fail because
|
||||||
|
# off still active timeaccounting
|
||||||
|
logout()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue