12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- require 'test_helper'
- class TicketNotificationTest < ActiveSupport::TestCase
- include BackgroundJobsHelper
- setup do
- Setting.set('timezone_default', 'Europe/Berlin')
- Trigger.create_or_update(
- name: 'auto reply - new ticket',
- condition: {
- 'ticket.action' => {
- 'operator' => 'is',
- 'value' => 'create',
- },
- 'ticket.state_id' => {
- 'operator' => 'is not',
- 'value' => Ticket::State.lookup(name: 'closed').id,
- },
- 'article.type_id' => {
- 'operator' => 'is',
- 'value' => [
- Ticket::Article::Type.lookup(name: 'email').id,
- Ticket::Article::Type.lookup(name: 'phone').id,
- Ticket::Article::Type.lookup(name: 'web').id,
- ],
- },
- },
- perform: {
- 'notification.email' => {
- # rubocop:disable Lint/InterpolationCheck
- 'body' => '<p>Your request (Ticket##{ticket.number}) has been received and will be reviewed by our support staff.<p>
- <br/>
- <p>To provide additional information, please reply to this email or click on the following link:
- <a href="#{config.http_type}://#{config.fqdn}/#ticket/zoom/#{ticket.id}">#{config.http_type}://#{config.fqdn}/#ticket/zoom/#{ticket.id}</a>
- </p>
- <br/>
- <p><i><a href="http://zammad.com">Zammad</a>, your customer support system</i></p>',
- 'recipient' => 'ticket_customer',
- 'subject' => 'Thanks for your inquiry (#{ticket.title})',
- # rubocop:enable Lint/InterpolationCheck
- },
- },
- disable_notification: true,
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- # create @agent1 & @agent2
- Group.create_or_update(
- name: 'TicketNotificationTest',
- updated_by_id: 1,
- created_by_id: 1
- )
- groups = Group.where(name: 'TicketNotificationTest')
- roles = Role.where(name: 'Agent')
- @agent1 = User.create_or_update(
- login: 'ticket-notification-agent1@example.com',
- firstname: 'Notification',
- lastname: 'Agent1',
- email: 'ticket-notification-agent1@example.com',
- password: 'agentpw',
- out_of_office: false,
- active: true,
- roles: roles,
- groups: groups,
- preferences: {
- locale: 'de-de',
- },
- updated_by_id: 1,
- created_by_id: 1,
- )
- @agent2 = User.create_or_update(
- login: 'ticket-notification-agent2@example.com',
- firstname: 'Notification',
- lastname: 'Agent2',
- email: 'ticket-notification-agent2@example.com',
- password: 'agentpw',
- out_of_office: false,
- active: true,
- roles: roles,
- groups: groups,
- preferences: {
- locale: 'en-us',
- timezone: 'America/St_Lucia',
- },
- updated_by_id: 1,
- created_by_id: 1,
- )
- @agent3 = User.create_or_update(
- login: 'ticket-notification-agent3@example.com',
- firstname: 'Notification',
- lastname: 'Agent3',
- email: 'ticket-notification-agent3@example.com',
- password: 'agentpw',
- out_of_office: false,
- active: true,
- roles: roles,
- groups: groups,
- preferences: {
- locale: 'de-de',
- },
- updated_by_id: 1,
- created_by_id: 1,
- )
- @agent4 = User.create_or_update(
- login: 'ticket-notification-agent4@example.com',
- firstname: 'Notification',
- lastname: 'Agent4',
- email: 'ticket-notification-agent4@example.com',
- password: 'agentpw',
- out_of_office: false,
- active: true,
- roles: roles,
- groups: groups,
- preferences: {
- locale: 'de-de',
- },
- updated_by_id: 1,
- created_by_id: 1,
- )
- Group.create_if_not_exists(
- name: 'WithoutAccess',
- note: 'Test for notification check.',
- updated_by_id: 1,
- created_by_id: 1
- )
- # create @customer
- roles = Role.where(name: 'Customer')
- @customer = User.create_or_update(
- login: 'ticket-notification-customer@example.com',
- firstname: 'Notification',
- lastname: 'Customer',
- email: 'ticket-notification-customer@example.com',
- password: 'agentpw',
- active: true,
- roles: roles,
- groups: groups,
- updated_by_id: 1,
- created_by_id: 1,
- )
- end
- test 'ticket notification - to all agents / to explicit agents' do
- # create ticket in group
- ApplicationHandleInfo.current = 'scheduler.postmaster'
- ticket1 = Ticket.create!(
- title: 'some notification test 1',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @agent1.id,
- created_by_id: @agent1.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @agent1.id,
- created_by_id: @agent1.id,
- )
- assert(ticket1)
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- # create ticket in group
- ApplicationHandleInfo.current = 'application_server'
- ticket1 = Ticket.create!(
- title: 'some notification test 2',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @agent1.id,
- created_by_id: @agent1.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @agent1.id,
- created_by_id: @agent1.id,
- )
- assert(ticket1)
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- end
- test 'ticket notification - simple' do
- # create ticket in group
- ApplicationHandleInfo.current = 'application_server'
- ticket1 = Ticket.create!(
- title: 'some notification test 3',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- assert(ticket1, 'ticket created - ticket notification simple')
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- # update ticket attributes
- ticket1.title = "#{ticket1.title} - #2"
- ticket1.priority = Ticket::Priority.lookup(name: '3 high')
- ticket1.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- # add article to ticket
- Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some person',
- subject: 'some note',
- body: 'some message',
- internal: true,
- sender: Ticket::Article::Sender.where(name: 'Agent').first,
- type: Ticket::Article::Type.where(name: 'note').first,
- updated_by_id: @agent1.id,
- created_by_id: @agent1.id,
- )
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to not to @agent1 but to @agent2
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(3, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- # update ticket by user
- ticket1.owner_id = @agent1.id
- ticket1.updated_by_id = @agent1.id
- ticket1.save!
- Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some person',
- subject: 'some note',
- body: 'some message',
- internal: true,
- sender: Ticket::Article::Sender.where(name: 'Agent').first,
- type: Ticket::Article::Type.where(name: 'note').first,
- updated_by_id: @agent1.id,
- created_by_id: @agent1.id,
- )
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to not to @agent1 but to @agent2
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(3, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- # create ticket with @agent1 as owner
- ticket2 = Ticket.create!(
- title: 'some notification test 4',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer_id: 2,
- owner_id: @agent1.id,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @agent1.id,
- created_by_id: @agent1.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket2.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Agent').first,
- type: Ticket::Article::Type.where(name: 'phone').first,
- updated_by_id: @agent1.id,
- created_by_id: @agent1.id,
- )
- perform_enqueued_jobs commit_transaction: true
- assert(ticket2, 'ticket created')
- # verify notifications to no one
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent1, 'email'), ticket2.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent2, 'email'), ticket2.id)
- # update ticket
- ticket2.title = "#{ticket2.title} - #2"
- ticket2.updated_by_id = @agent1.id
- ticket2.priority = Ticket::Priority.lookup(name: '3 high')
- ticket2.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to none
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent1, 'email'), ticket2.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent2, 'email'), ticket2.id)
- # update ticket
- ticket2.title = "#{ticket2.title} - #3"
- ticket2.updated_by_id = @agent2.id
- ticket2.priority = Ticket::Priority.lookup(name: '2 normal')
- ticket2.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 and not to @agent2
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket2, @agent1, 'email'), ticket2.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent2, 'email'), ticket2.id)
- # create ticket with @agent2 and @agent1 as owner
- ticket3 = Ticket.create!(
- title: 'some notification test 5',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer_id: 2,
- owner_id: @agent1.id,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @agent2.id,
- created_by_id: @agent2.id,
- )
- article_inbound = Ticket::Article.create!(
- ticket_id: ticket3.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Agent').first,
- type: Ticket::Article::Type.where(name: 'phone').first,
- updated_by_id: @agent2.id,
- created_by_id: @agent2.id,
- )
- perform_enqueued_jobs commit_transaction: true
- assert(ticket3, 'ticket created')
- # verify notifications to @agent1 and not to @agent2
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket3, @agent1, 'email'), ticket3.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket3, @agent2, 'email'), ticket3.id)
- # update ticket
- ticket3.title = "#{ticket3.title} - #2"
- ticket3.updated_by_id = @agent1.id
- ticket3.priority = Ticket::Priority.lookup(name: '3 high')
- ticket3.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to no one
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket3, @agent1, 'email'), ticket3.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket3, @agent2, 'email'), ticket3.id)
- # update ticket
- ticket3.title = "#{ticket3.title} - #3"
- ticket3.updated_by_id = @agent2.id
- ticket3.priority = Ticket::Priority.lookup(name: '2 normal')
- ticket3.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 and not to @agent2
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket3, @agent1, 'email'), ticket3.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket3, @agent2, 'email'), ticket3.id)
- # update article / not notification should be sent
- article_inbound.internal = true
- article_inbound.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications not to @agent1 and not to @agent2
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket3, @agent1, 'email'), ticket3.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket3, @agent2, 'email'), ticket3.id)
- delete = ticket1.destroy
- assert(delete, 'ticket1 destroy')
- delete = ticket2.destroy
- assert(delete, 'ticket2 destroy')
- delete = ticket3.destroy
- assert(delete, 'ticket3 destroy')
- end
- test 'ticket notification - no notification' do
- # create ticket in group
- ticket1 = Ticket.create!(
- title: 'some notification test 1 - no notification',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- assert(ticket1, 'ticket created - ticket no notification')
- perform_enqueued_jobs commit_transaction: true, disable_notification: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- end
- test 'ticket notification - z preferences tests' do
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['no'] = false
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['no'] = false
- @agent1.save!
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = false
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['no'] = true
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = false
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['no'] = true
- @agent2.save!
- # create ticket in group
- ApplicationHandleInfo.current = 'scheduler.postmaster'
- ticket1 = Ticket.create!(
- title: 'some notification test - z preferences tests 1',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- # update ticket attributes
- ticket1.title = "#{ticket1.title} - #2"
- ticket1.priority = Ticket::Priority.lookup(name: '3 high')
- ticket1.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- # create ticket in group
- ticket2 = Ticket.create!(
- title: 'some notification test - z preferences tests 2',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- owner: @agent1,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket2.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket2, @agent1, 'email'), ticket2.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket2, @agent2, 'email'), ticket2.id)
- # update ticket attributes
- ticket2.title = "#{ticket2.title} - #2"
- ticket2.priority = Ticket::Priority.lookup(name: '3 high')
- ticket2.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket2, @agent1, 'email'), ticket2.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket2, @agent2, 'email'), ticket2.id)
- # create ticket in group
- ticket3 = Ticket.create!(
- title: 'some notification test - z preferences tests 3',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- owner: @agent2,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket3.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket3, @agent1, 'email'), ticket3.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket3, @agent2, 'email'), ticket3.id)
- # update ticket attributes
- ticket3.title = "#{ticket3.title} - #2"
- ticket3.priority = Ticket::Priority.lookup(name: '3 high')
- ticket3.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket3, @agent1, 'email'), ticket3.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket3, @agent2, 'email'), ticket3.id)
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['no'] = true
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['no'] = true
- @agent1.preferences['notification_config']['group_ids'] = [Group.lookup(name: 'TicketNotificationTest').id.to_s]
- @agent1.save!
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = false
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['no'] = true
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = false
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['no'] = true
- @agent1.preferences['notification_config']['group_ids'] = ['-']
- @agent2.save!
- travel 1.minute # to skip loopup cache in Transaction::Notification
- if Rails.application.config.cache_store.first.eql? :mem_cache_store
- # External memcached does not support time travel, so clear the cache to avoid an outdated match.
- Rails.cache.clear
- end
- # create ticket in group
- ApplicationHandleInfo.current = 'scheduler.postmaster'
- ticket4 = Ticket.create!(
- title: 'some notification test - z preferences tests 4',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket4.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket4, @agent1, 'email'), ticket4.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket4, @agent2, 'email'), ticket4.id)
- # update ticket attributes
- ticket4.title = "#{ticket4.title} - #2"
- ticket4.priority = Ticket::Priority.lookup(name: '3 high')
- ticket4.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket4, @agent1, 'email'), ticket4.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket4, @agent2, 'email'), ticket4.id)
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['no'] = true
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['no'] = true
- @agent1.preferences['notification_config']['group_ids'] = [Group.lookup(name: 'TicketNotificationTest').id.to_s]
- @agent1.save!
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = false
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['no'] = true
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = false
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['no'] = true
- @agent2.preferences['notification_config']['group_ids'] = [99]
- @agent2.save!
- travel 1.minute # to skip loopup cache in Transaction::Notification
- if Rails.application.config.cache_store.first.eql? :mem_cache_store
- # External memcached does not support time travel, so clear the cache to avoid an outdated match.
- Rails.cache.clear
- end
- # create ticket in group
- ApplicationHandleInfo.current = 'scheduler.postmaster'
- ticket5 = Ticket.create!(
- title: 'some notification test - z preferences tests 5',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket5.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket5, @agent1, 'email'), ticket5.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket5, @agent2, 'email'), ticket5.id)
- # update ticket attributes
- ticket5.title = "#{ticket5.title} - #2"
- ticket5.priority = Ticket::Priority.lookup(name: '3 high')
- ticket5.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket5, @agent1, 'email'), ticket5.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket5, @agent2, 'email'), ticket5.id)
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['no'] = true
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['no'] = true
- @agent1.preferences['notification_config']['group_ids'] = [999]
- @agent1.save!
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = true
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['no'] = true
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = true
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['no'] = true
- @agent2.preferences['notification_config']['group_ids'] = [999]
- @agent2.save!
- travel 1.minute # to skip loopup cache in Transaction::Notification
- if Rails.application.config.cache_store.first.eql? :mem_cache_store
- # External memcached does not support time travel, so clear the cache to avoid an outdated match.
- Rails.cache.clear
- end
- # create ticket in group
- ApplicationHandleInfo.current = 'scheduler.postmaster'
- ticket6 = Ticket.create!(
- title: 'some notification test - z preferences tests 6',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- owner: @agent1,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket6.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket6, @agent1, 'email'), ticket6.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket6, @agent1, 'online'), ticket6.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket6, @agent2, 'email'), ticket6.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket6, @agent2, 'online'), ticket6.id)
- # update ticket attributes
- ticket6.title = "#{ticket6.title} - #2"
- ticket6.priority = Ticket::Priority.lookup(name: '3 high')
- ticket6.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket6, @agent1, 'email'), ticket6.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket6, @agent1, 'online'), ticket6.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket6, @agent2, 'email'), ticket6.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket6, @agent2, 'online'), ticket6.id)
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['create']['criteria']['no'] = true
- @agent1.preferences['notification_config']['matrix']['create']['channel']['email'] = false
- @agent1.preferences['notification_config']['matrix']['create']['channel']['online'] = true
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = true
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent1.preferences['notification_config']['matrix']['update']['criteria']['no'] = true
- @agent1.preferences['notification_config']['matrix']['update']['channel']['email'] = false
- @agent1.preferences['notification_config']['matrix']['update']['channel']['online'] = true
- @agent1.preferences['notification_config']['group_ids'] = [999]
- @agent1.save!
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_me'] = true
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['create']['criteria']['no'] = true
- @agent2.preferences['notification_config']['matrix']['create']['channel']['email'] = false
- @agent2.preferences['notification_config']['matrix']['create']['channel']['online'] = true
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_me'] = true
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['owned_by_nobody'] = false
- @agent2.preferences['notification_config']['matrix']['update']['criteria']['no'] = true
- @agent2.preferences['notification_config']['matrix']['update']['channel']['email'] = false
- @agent2.preferences['notification_config']['matrix']['update']['channel']['online'] = true
- @agent2.preferences['notification_config']['group_ids'] = [999]
- @agent2.save!
- travel 1.minute # to skip loopup cache in Transaction::Notification
- if Rails.application.config.cache_store.first.eql? :mem_cache_store
- # External memcached does not support time travel, so clear the cache to avoid an outdated match.
- Rails.cache.clear
- end
- # create ticket in group
- ApplicationHandleInfo.current = 'scheduler.postmaster'
- ticket7 = Ticket.create!(
- title: 'some notification test - z preferences tests 7',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- owner: @agent1,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket7.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket7, @agent1, 'email'), ticket7.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket7, @agent1, 'online'), ticket7.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket7, @agent2, 'email'), ticket7.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket7, @agent2, 'online'), ticket7.id)
- # update ticket attributes
- ticket7.title = "#{ticket7.title} - #2"
- ticket7.priority = Ticket::Priority.lookup(name: '3 high')
- ticket7.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket7, @agent1, 'email'), ticket7.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket7, @agent1, 'online'), ticket7.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket7, @agent2, 'email'), ticket7.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket7, @agent2, 'online'), ticket7.id)
- end
- test 'ticket notification events' do
- # create ticket in group
- ticket1 = Ticket.create!(
- title: 'some notification event test 1',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- assert(ticket1, 'ticket created')
- # execute object transaction
- TransactionDispatcher.commit
- # update ticket attributes
- ticket1.title = "#{ticket1.title} - #2"
- ticket1.priority = Ticket::Priority.lookup(name: '3 high')
- ticket1.save!
- list = EventBuffer.list('transaction')
- list_objects = TransactionDispatcher.get_uniq_changes(list)
- assert_equal('some notification event test 1', list_objects['Ticket'][ticket1.id][:changes]['title'][0])
- assert_equal('some notification event test 1 - #2', list_objects['Ticket'][ticket1.id][:changes]['title'][1])
- assert_not(list_objects['Ticket'][ticket1.id][:changes]['priority'])
- assert_equal(2, list_objects['Ticket'][ticket1.id][:changes]['priority_id'][0])
- assert_equal(3, list_objects['Ticket'][ticket1.id][:changes]['priority_id'][1])
- # update ticket attributes
- ticket1.title = "#{ticket1.title} - #3"
- ticket1.priority = Ticket::Priority.lookup(name: '1 low')
- ticket1.save!
- list = EventBuffer.list('transaction')
- list_objects = TransactionDispatcher.get_uniq_changes(list)
- assert_equal('some notification event test 1', list_objects['Ticket'][ticket1.id][:changes]['title'][0])
- assert_equal('some notification event test 1 - #2 - #3', list_objects['Ticket'][ticket1.id][:changes]['title'][1])
- assert_not(list_objects['Ticket'][ticket1.id][:changes]['priority'])
- assert_equal(2, list_objects['Ticket'][ticket1.id][:changes]['priority_id'][0])
- assert_equal(1, list_objects['Ticket'][ticket1.id][:changes]['priority_id'][1])
- end
- test 'ticket notification - out of office' do
- # create ticket in group
- ticket1 = Ticket.create!(
- title: 'some notification test out of office',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- owner_id: @agent2.id,
- # state: Ticket::State.lookup(name: 'new'),
- # priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- assert(ticket1, 'ticket created - ticket notification simple')
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket1, @agent1, 'email'), ticket1.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket1, @agent2, 'email'), ticket1.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket1, @agent3, 'email'), ticket1.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket1, @agent4, 'email'), ticket1.id)
- @agent2.out_of_office = true
- @agent2.preferences[:out_of_office_text] = 'at the doctor'
- @agent2.out_of_office_replacement_id = @agent3.id
- @agent2.out_of_office_start_at = Time.zone.today - 2.days
- @agent2.out_of_office_end_at = Time.zone.today + 2.days
- @agent2.save!
- # create ticket in group
- ticket2 = Ticket.create!(
- title: 'some notification test out of office',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- owner_id: @agent2.id,
- # state: Ticket::State.lookup(name: 'new'),
- # priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- Ticket::Article.create!(
- ticket_id: ticket2.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: 'some message',
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- assert(ticket2, 'ticket created - ticket notification simple')
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent1, 'email'), ticket2.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket2, @agent2, 'email'), ticket2.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket2, @agent3, 'email'), ticket2.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent4, 'email'), ticket2.id)
- # update ticket attributes
- ticket2.title = "#{ticket2.title} - #2"
- ticket2.priority = Ticket::Priority.lookup(name: '3 high')
- ticket2.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent1, 'email'), ticket2.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket2, @agent2, 'email'), ticket2.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket2, @agent3, 'email'), ticket2.id)
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent4, 'email'), ticket2.id)
- @agent3.out_of_office = true
- @agent3.preferences[:out_of_office_text] = 'at the doctor'
- @agent3.out_of_office_replacement_id = @agent4.id
- @agent3.out_of_office_start_at = Time.zone.today - 2.days
- @agent3.out_of_office_end_at = Time.zone.today + 2.days
- @agent3.save!
- # update ticket attributes
- ticket2.title = "#{ticket2.title} - #3"
- ticket2.priority = Ticket::Priority.lookup(name: '3 high')
- ticket2.save!
- perform_enqueued_jobs commit_transaction: true
- # verify notifications to @agent1 + @agent2
- assert_equal(0, NotificationFactory::Mailer.already_sent?(ticket2, @agent1, 'email'), ticket2.id)
- assert_equal(3, NotificationFactory::Mailer.already_sent?(ticket2, @agent2, 'email'), ticket2.id)
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket2, @agent3, 'email'), ticket2.id)
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket2, @agent4, 'email'), ticket2.id)
- end
- test 'ticket notification template' do
- # create ticket in group
- ticket1 = Ticket.create!(
- title: 'some notification template test 1 Bobs\'s resumé',
- group: Group.lookup(name: 'TicketNotificationTest'),
- customer: @customer,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- article = Ticket::Article.create!(
- ticket_id: ticket1.id,
- from: 'some_sender@example.com',
- to: 'some_recipient@example.com',
- subject: 'some subject',
- message_id: 'some@id',
- body: "some message\nnewline1 abc\nnewline2",
- internal: false,
- sender: Ticket::Article::Sender.where(name: 'Customer').first,
- type: Ticket::Article::Type.where(name: 'email').first,
- updated_by_id: @customer.id,
- created_by_id: @customer.id,
- )
- assert(ticket1, 'ticket created - ticket notification template')
- last_changes = {
- 'priority_id' => [1, 2],
- 'pending_time' => [nil, Time.zone.parse('2015-01-11 23:33:47 UTC')],
- }
- bg = Transaction::Notification.new(
- ticket_id: ticket1.id,
- article_id: article.id,
- type: 'update',
- changes: last_changes,
- user_id: ticket1.updated_by_id,
- )
- # check changed attributes
- human_changes = bg.human_changes(last_changes, ticket1, @agent2)
- assert(human_changes['Priority'], 'Check if attributes translated based on ObjectManager::Attribute')
- assert(human_changes['Pending till'], 'Check if attributes translated based on ObjectManager::Attribute')
- assert_equal('1 low', human_changes['Priority'][0])
- assert_equal('2 normal', human_changes['Priority'][1])
- assert_equal('', human_changes['Pending till'][0].to_s)
- assert_equal('2015-01-11 23:33:47 UTC', human_changes['Pending till'][1].to_s)
- assert_not(human_changes['priority_id'])
- assert_not(human_changes['pending_time'])
- assert_not(human_changes['pending_till'])
- # en notification
- result = NotificationFactory::Mailer.template(
- locale: @agent2.preferences[:locale],
- timezone: @agent2.preferences[:timezone],
- template: 'ticket_update',
- objects: {
- ticket: ticket1,
- article: article,
- recipient: @agent2,
- changes: human_changes,
- },
- )
- assert_match(%r{Bobs's resumé}, result[:subject])
- assert_match(%r{Priority}, result[:body])
- assert_match(%r{1 low}, result[:body])
- assert_match(%r{2 normal}, result[:body])
- assert_match(%r{Pending till}, result[:body])
- assert_match('01/11/2015 7:33 pm (America/St_Lucia)', result[:body])
- assert_match(%r{update}, result[:body])
- assert_no_match(%r{pending_till}, result[:body])
- assert_no_match(%r{i18n}, result[:body])
- human_changes = bg.human_changes(last_changes, ticket1, @agent1)
- assert(human_changes['Priority'], 'Check if attributes translated based on ObjectManager::Attribute')
- assert(human_changes['Pending till'], 'Check if attributes translated based on ObjectManager::Attribute')
- assert_equal('1 niedrig', human_changes['Priority'][0])
- assert_equal('2 normal', human_changes['Priority'][1])
- assert_equal('', human_changes['Pending till'][0].to_s)
- assert_equal('2015-01-11 23:33:47 UTC', human_changes['Pending till'][1].to_s)
- assert_not(human_changes['priority_id'])
- assert_not(human_changes['pending_time'])
- assert_not(human_changes['pending_till'])
- # de & Europe/Berlin notification
- result = NotificationFactory::Mailer.template(
- locale: @agent1.preferences[:locale],
- timezone: @agent1.preferences[:timezone],
- template: 'ticket_update',
- objects: {
- ticket: ticket1,
- article: article,
- recipient: @agent1,
- changes: human_changes,
- },
- )
- assert_match(%r{Bobs's resumé}, result[:subject])
- assert_match(%r{Priorität}, result[:body])
- assert_match(%r{1 niedrig}, result[:body])
- assert_match(%r{2 normal}, result[:body])
- assert_match(%r{Warten}, result[:body])
- assert_match('12.01.2015 00:33 (Europe/Berlin)', result[:body])
- assert_match(%r{aktualis}, result[:body])
- assert_no_match(%r{pending_till}, result[:body])
- assert_no_match(%r{i18n}, result[:body])
- last_changes = {
- title: ['some notification template test old 1', 'some notification template test 1 #2'],
- priority_id: [2, 3],
- }
- bg = Transaction::Notification.new(
- ticket_id: ticket1.id,
- article_id: article.id,
- type: 'update',
- changes: last_changes,
- user_id: @customer.id,
- )
- # check changed attributes
- human_changes = bg.human_changes(last_changes, ticket1, @agent1)
- assert(human_changes['Title'], 'Check if attributes translated based on ObjectManager::Attribute')
- assert(human_changes['Priority'], 'Check if attributes translated based on ObjectManager::Attribute')
- assert_equal('2 normal', human_changes['Priority'][0])
- assert_equal('3 hoch', human_changes['Priority'][1])
- assert_equal('some notification template test old 1', human_changes['Title'][0])
- assert_equal('some notification template test 1 #2', human_changes['Title'][1])
- assert_not(human_changes['priority_id'])
- assert_not(human_changes['pending_time'])
- assert_not(human_changes['pending_till'])
- # de notification
- result = NotificationFactory::Mailer.template(
- locale: @agent1.preferences[:locale],
- timezone: @agent1.preferences[:timezone],
- template: 'ticket_update',
- objects: {
- ticket: ticket1,
- article: article,
- recipient: @agent1,
- changes: human_changes,
- }
- )
- assert_match(%r{Bobs's resumé}, result[:subject])
- assert_match(%r{Titel}, result[:body])
- assert_no_match(%r{Title}, result[:body])
- assert_match(%r{some notification template test old 1}, result[:body])
- assert_match(%r{some notification template test 1 #2}, result[:body])
- assert_match(%r{Priorität}, result[:body])
- assert_no_match(%r{Priority}, result[:body])
- assert_match(%r{3 hoch}, result[:body])
- assert_match(%r{2 normal}, result[:body])
- assert_match(%r{aktualisier}, result[:body])
- human_changes = bg.human_changes(last_changes, ticket1, @agent2)
- # en notification
- result = NotificationFactory::Mailer.template(
- locale: @agent2.preferences[:locale],
- timezone: @agent2.preferences[:timezone],
- template: 'ticket_update',
- objects: {
- ticket: ticket1,
- article: article,
- recipient: @agent2,
- changes: human_changes,
- }
- )
- assert_match(%r{Bobs's resumé}, result[:subject])
- assert_match(%r{Title}, result[:body])
- assert_match(%r{some notification template test old 1}, result[:body])
- assert_match(%r{some notification template test 1 #2}, result[:body])
- assert_match(%r{Priority}, result[:body])
- assert_match(%r{3 high}, result[:body])
- assert_match(%r{2 normal}, result[:body])
- assert_no_match(%r{Pending till}, result[:body])
- assert_no_match(%r{2015-01-11 23:33:47 UTC}, result[:body])
- assert_match(%r{update}, result[:body])
- assert_no_match(%r{pending_till}, result[:body])
- assert_no_match(%r{i18n}, result[:body])
- # en notification
- ticket1.escalation_at = Time.zone.parse('2019-04-01T10:00:00Z')
- result = NotificationFactory::Mailer.template(
- locale: @agent2.preferences[:locale],
- timezone: @agent2.preferences[:timezone],
- template: 'ticket_escalation',
- objects: {
- ticket: ticket1,
- article: article,
- recipient: @agent2,
- }
- )
- assert_match('Escalated ticket (some notification template test 1 Bobs\'s resumé', result[:subject])
- assert_match('escalated since "04/01/2019 6:00 am (America/St_Lucia)"!', result[:body])
- end
- end
|