2014-12-25 23:41:00 +00:00
|
|
|
|
|
|
|
// form
|
2015-09-20 22:19:45 +00:00
|
|
|
test( 'form checks', function() {
|
2014-12-25 23:41:00 +00:00
|
|
|
|
|
|
|
App.TicketPriority.refresh( [
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
name: '1 low',
|
|
|
|
note: 'some note 1',
|
|
|
|
active: true,
|
|
|
|
created_at: '2014-06-10T11:17:34.000Z',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
name: '2 normal',
|
|
|
|
note: 'some note 2',
|
|
|
|
active: false,
|
|
|
|
created_at: '2014-06-10T10:17:34.000Z',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 3,
|
|
|
|
name: '3 high',
|
|
|
|
note: 'some note 3',
|
|
|
|
active: true,
|
|
|
|
created_at: '2014-06-10T10:17:44.000Z',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 4,
|
|
|
|
name: '4 very high',
|
|
|
|
note: 'some note 4',
|
|
|
|
active: true,
|
|
|
|
created_at: '2014-06-10T10:17:54.000Z',
|
|
|
|
},
|
|
|
|
] )
|
|
|
|
|
|
|
|
$('#forms').append('<hr><h1>form time check</h1><form id="form1"></form>')
|
|
|
|
|
|
|
|
var el = $('#form1')
|
|
|
|
var defaults = {
|
2015-09-20 22:19:45 +00:00
|
|
|
working_hours: {
|
|
|
|
mon: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
tue: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['00:00','22:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
wed: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
thu: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','12:00'],
|
|
|
|
['13:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
fri: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
sat: {
|
|
|
|
active: false,
|
|
|
|
timeframes: [
|
|
|
|
['10:00','14:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
sun: {
|
|
|
|
active: false,
|
|
|
|
timeframes: [
|
|
|
|
['10:00','14:00']
|
|
|
|
]
|
|
|
|
},
|
2014-12-25 23:41:00 +00:00
|
|
|
},
|
2015-09-20 22:19:45 +00:00
|
|
|
first_response_time: 150,
|
|
|
|
solution_time: '',
|
|
|
|
update_time: 45,
|
2014-12-25 23:41:00 +00:00
|
|
|
conditions: {
|
2015-09-20 22:19:45 +00:00
|
|
|
'ticket.title': {
|
|
|
|
operator: 'contains',
|
|
|
|
value: 'some title',
|
|
|
|
},
|
|
|
|
'ticket.priority_id': {
|
|
|
|
operator: 'is',
|
|
|
|
value: [1,2,3],
|
|
|
|
},
|
|
|
|
'ticket.created_at': {
|
|
|
|
operator: 'before (absolute)',
|
|
|
|
value: '2015-09-20T03:41:00.000Z',
|
|
|
|
},
|
2014-12-25 23:41:00 +00:00
|
|
|
},
|
|
|
|
executions: {
|
2015-09-20 22:19:45 +00:00
|
|
|
'ticket.title': {
|
|
|
|
value: 'some title new',
|
|
|
|
},
|
|
|
|
'ticket.priority_id': {
|
|
|
|
value: 3,
|
|
|
|
},
|
2014-12-25 23:41:00 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
new App.ControllerForm({
|
|
|
|
el: el,
|
|
|
|
model: {
|
|
|
|
configure_attributes: [
|
2015-09-20 22:19:45 +00:00
|
|
|
{ name: 'escalation_times', display: 'Times', tag: 'sla_times', null: true },
|
|
|
|
{ name: 'working_hours', display: 'Hours', tag: 'business_hours', null: true },
|
|
|
|
{ name: 'conditions', display: 'Conditions', tag: 'ticket_selector', null: true },
|
|
|
|
{ name: 'executions', display: 'Executions', tag: 'ticket_perform_action', null: true },
|
2014-12-25 23:41:00 +00:00
|
|
|
]
|
|
|
|
},
|
2015-09-20 22:19:45 +00:00
|
|
|
params: defaults,
|
2014-12-25 23:41:00 +00:00
|
|
|
autofocus: true
|
|
|
|
});
|
|
|
|
|
|
|
|
var params = App.ControllerForm.params( el )
|
|
|
|
var test_params = {
|
2015-09-20 22:19:45 +00:00
|
|
|
first_response_time: '150',
|
|
|
|
first_response_time_in_text: '02:30',
|
|
|
|
solution_time: '',
|
|
|
|
solution_time_in_text: '',
|
|
|
|
update_time: '45',
|
|
|
|
update_time_in_text: '00:45',
|
|
|
|
conditions: {
|
|
|
|
'ticket.title': {
|
|
|
|
operator: 'contains',
|
|
|
|
value: 'some title',
|
|
|
|
},
|
|
|
|
'ticket.priority_id': {
|
|
|
|
operator: 'is',
|
|
|
|
value: ['1', '3'],
|
|
|
|
},
|
|
|
|
'ticket.created_at': {
|
|
|
|
operator: 'before (absolute)',
|
|
|
|
value: '2015-09-20T03:41:00.000Z',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
executions: {
|
|
|
|
'ticket.title': {
|
|
|
|
value: 'some title new',
|
|
|
|
},
|
|
|
|
'ticket.priority_id': {
|
|
|
|
value: '3',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
working_hours: {
|
|
|
|
mon: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
tue: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['00:00','22:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
wed: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
thu: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','12:00'],
|
|
|
|
['13:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
fri: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
sat: {
|
|
|
|
active: false,
|
|
|
|
timeframes: [
|
|
|
|
['10:00','14:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
sun: {
|
|
|
|
active: false,
|
|
|
|
timeframes: [
|
|
|
|
['10:00','14:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
deepEqual( params, test_params, 'form param check' );
|
|
|
|
|
|
|
|
// change sla times
|
|
|
|
el.find('[name="first_response_time_in_text"]').val('0:30').trigger('blur')
|
|
|
|
el.find('#update_time').click()
|
|
|
|
|
|
|
|
// change selector
|
|
|
|
el.find('[name="conditions::ticket.priority_id::value"]').closest('.js-filterElement').find('.js-remove').click()
|
|
|
|
el.find('[name="executions::ticket.title::value"]').closest('.js-filterElement').find('.js-remove').click()
|
|
|
|
|
|
|
|
var params = App.ControllerForm.params( el )
|
|
|
|
var test_params = {
|
|
|
|
working_hours: {
|
|
|
|
mon: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
tue: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['00:00','22:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
wed: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
thu: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','12:00'],
|
|
|
|
['13:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
fri: {
|
|
|
|
active: true,
|
|
|
|
timeframes: [
|
|
|
|
['09:00','17:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
sat: {
|
|
|
|
active: false,
|
|
|
|
timeframes: [
|
|
|
|
['10:00','14:00']
|
|
|
|
]
|
|
|
|
},
|
|
|
|
sun: {
|
|
|
|
active: false,
|
|
|
|
timeframes: [
|
|
|
|
['10:00','14:00']
|
|
|
|
]
|
|
|
|
},
|
2014-12-25 23:41:00 +00:00
|
|
|
},
|
2015-09-20 22:19:45 +00:00
|
|
|
first_response_time: '30',
|
|
|
|
first_response_time_in_text: '00:30',
|
|
|
|
solution_time: '',
|
|
|
|
solution_time_in_text: '',
|
|
|
|
update_time: '',
|
|
|
|
update_time_in_text: '',
|
2014-12-25 23:41:00 +00:00
|
|
|
conditions: {
|
2015-09-20 22:19:45 +00:00
|
|
|
'ticket.title': {
|
|
|
|
operator: 'contains',
|
|
|
|
value: 'some title',
|
|
|
|
},
|
|
|
|
'ticket.created_at': {
|
|
|
|
operator: 'before (absolute)',
|
|
|
|
value: '2015-09-20T03:41:00.000Z',
|
|
|
|
},
|
2014-12-25 23:41:00 +00:00
|
|
|
},
|
|
|
|
executions: {
|
2015-09-20 22:19:45 +00:00
|
|
|
'ticket.priority_id': {
|
|
|
|
value: '3',
|
|
|
|
},
|
2014-12-25 23:41:00 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
deepEqual( params, test_params, 'form param check' );
|
|
|
|
|
2015-09-20 22:19:45 +00:00
|
|
|
//deepEqual( el.find('[name="times::days"]').val(), ['mon', 'wed'], 'check times::days value')
|
|
|
|
//equal( el.find('[name="times::hours"]').val(), 2, 'check times::hours value')
|
|
|
|
//equal( el.find('[name="times::minutes"]').val(), null, 'check times::minutes value')
|
2014-12-25 23:41:00 +00:00
|
|
|
|
|
|
|
});
|