1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066 |
- # rubocop:disable all
- require 'test_helper'
- class EmailPostmasterTest < ActiveSupport::TestCase
- test 'valid/invalid postmaster filter' do
- PostmasterFilter.create!(
- name: 'not used',
- match: {
- from: {
- operator: 'contains',
- value: 'nobody@example.com',
- },
- },
- perform: {
- 'X-Zammad-Ticket-priority' => {
- value: '3 high',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- assert_raises(Exceptions::UnprocessableEntity) {
- PostmasterFilter.create!(
- name: 'empty filter should not work',
- match: {},
- perform: {
- 'X-Zammad-Ticket-priority' => {
- value: '3 high',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- }
- assert_raises(Exceptions::UnprocessableEntity) {
- PostmasterFilter.create!(
- name: 'empty filter should not work',
- match: {
- from: {
- operator: 'contains',
- value: '',
- },
- },
- perform: {
- 'X-Zammad-Ticket-priority' => {
- value: '3 high',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- }
- assert_raises(Exceptions::UnprocessableEntity) {
- PostmasterFilter.create!(
- name: 'invalid regex',
- match: {
- from: {
- operator: 'contains',
- value: 'regex:[]',
- },
- },
- perform: {
- 'X-Zammad-Ticket-priority' => {
- value: '3 high',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- }
- assert_raises(Exceptions::UnprocessableEntity) {
- PostmasterFilter.create!(
- name: 'invalid regex',
- match: {
- from: {
- operator: 'contains',
- value: 'regex:??',
- },
- },
- perform: {
- 'X-Zammad-Ticket-priority' => {
- value: '3 high',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- }
- assert_raises(Exceptions::UnprocessableEntity) {
- PostmasterFilter.create!(
- name: 'invalid regex',
- match: {
- from: {
- operator: 'contains',
- value: 'regex:*',
- },
- },
- perform: {
- 'X-Zammad-Ticket-priority' => {
- value: '3 high',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- }
- PostmasterFilter.create!(
- name: 'use .*',
- match: {
- from: {
- operator: 'contains',
- value: '*',
- },
- },
- perform: {
- 'X-Zammad-Ticket-priority' => {
- value: '3 high',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- end
- test 'process with postmaster filter with regex' do
- group_default = Group.lookup(name: 'Users')
- group1 = Group.create_if_not_exists(
- name: 'Test Group1',
- created_by_id: 1,
- updated_by_id: 1,
- )
- group2 = Group.create_if_not_exists(
- name: 'Test Group2',
- created_by_id: 1,
- updated_by_id: 1,
- )
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'used - empty selector',
- match: {
- from: {
- operator: 'contains',
- value: 'regex:.*',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group2.id,
- },
- 'X-Zammad-Ticket-priority_id' => {
- value: '1',
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: Some Body <somebody@example.com>
- To: Bob <bod@example.com>
- Cc: any@example.com
- Subject: some subject - no selector
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Test Group2', ticket.group.name)
- assert_equal('1 low', ticket.priority.name)
- assert_equal('some subject - no selector', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(true, article.internal)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'used - empty selector',
- match: {
- from: {
- operator: 'contains',
- value: '*',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group2.id,
- },
- 'X-Zammad-Ticket-priority_id' => {
- value: '1',
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: Some Body <somebody@example.com>
- To: Bob <bod@example.com>
- Cc: any@example.com
- Subject: some subject - no selector
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Test Group2', ticket.group.name)
- assert_equal('1 low', ticket.priority.name)
- assert_equal('some subject - no selector', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(true, article.internal)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'used - empty selector',
- match: {
- subject: {
- operator: 'contains',
- value: '*me*',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group2.id,
- },
- 'X-Zammad-Ticket-priority_id' => {
- value: '1',
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: Some Body <somebody@example.com>
- To: Bob <bod@example.com>
- Cc: any@example.com
- Subject: *me*
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Test Group2', ticket.group.name)
- assert_equal('1 low', ticket.priority.name)
- assert_equal('*me*', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(true, article.internal)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'used - empty selector',
- match: {
- subject: {
- operator: 'contains not',
- value: '*me*',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group2.id,
- },
- 'X-Zammad-Ticket-priority_id' => {
- value: '1',
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: Some Body <somebody@example.com>
- To: Bob <bod@example.com>
- Cc: any@example.com
- Subject: *mo*
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Test Group2', ticket.group.name)
- assert_equal('1 low', ticket.priority.name)
- assert_equal('*mo*', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(true, article.internal)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'used - empty selector',
- match: {
- subject: {
- operator: 'contains not',
- value: '*me*',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group2.id,
- },
- 'X-Zammad-Ticket-priority_id' => {
- value: '1',
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: Some Body <somebody@example.com>
- To: Bob <bod@example.com>
- Cc: any@example.com
- Subject: *me*
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Users', ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('*me*', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(false, article.internal)
- end
- test 'process with postmaster filter - message-id as match condition' do
- PostmasterFilter.create!(
- name: 'used - message-id',
- match: {
- 'message-id': {
- operator: 'contains',
- value: '@sombody.domain>',
- },
- },
- perform: {
- 'X-Zammad-Ticket-priority_id' => {
- value: '1',
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: Some Body <somebody@example.com>
- To: Bob <bod@example.com>
- Cc: any@example.com
- Subject: *me*
- Message-Id: <1520781034.17887@sombody.domain>
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({}, data)
- assert_equal('Users', ticket.group.name)
- assert_equal('1 low', ticket.priority.name)
- assert_equal('*me*', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(true, article.internal)
- end
- test 'process with postmaster filter' do
- group_default = Group.lookup(name: 'Users')
- group1 = Group.create_if_not_exists(
- name: 'Test Group1',
- created_by_id: 1,
- updated_by_id: 1,
- )
- group2 = Group.create_if_not_exists(
- name: 'Test Group2',
- created_by_id: 1,
- updated_by_id: 1,
- )
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'not used',
- match: {
- from: {
- operator: 'contains',
- value: 'nobody@example.com',
- },
- },
- perform: {
- 'X-Zammad-Ticket-priority' => {
- value: '3 high',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- PostmasterFilter.create!(
- name: 'used',
- match: {
- from: {
- operator: 'contains',
- value: 'me@example.com',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group1.id,
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- PostmasterFilter.create!(
- name: 'used x-any-recipient',
- match: {
- 'x-any-recipient' => {
- operator: 'contains',
- value: 'any@example.com',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group2.id,
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: me@example.com
- To: customer@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Test Group1', ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(true, article.internal)
- data = 'From: Some Body <somebody@example.com>
- To: Bob <bod@example.com>
- Cc: any@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Test Group2', ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(true, article.internal)
- PostmasterFilter.create!(
- name: 'used x-any-recipient 2',
- match: {
- 'x-any-recipient' => {
- operator: 'contains not',
- value: 'any_not@example.com',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group2.id,
- },
- 'X-Zammad-Ticket-priority_id' => {
- value: '1',
- },
- 'x-Zammad-Article-Internal' => {
- value: 'false',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: Some Body <somebody@example.com>
- To: Bob <bod@example.com>
- Cc: any@example.com
- Subject: some subject2
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Test Group2', ticket.group.name)
- assert_equal('1 low', ticket.priority.name)
- assert_equal('some subject2', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(false, article.internal)
- PostmasterFilter.destroy_all
- # follow-up with create post master filter test
- PostmasterFilter.create!(
- name: 'used - empty selector',
- match: {
- from: {
- operator: 'contains',
- value: 'example.com',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group2.id,
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: Some Body <somebody@example.com>
- To: Bob <bod@example.com>
- Cc: any@example.com
- Subject: follow-up with create post master filter test
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal(group2.name, ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('follow-up with create post master filter test', ticket.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(false, article.internal)
- # move ticket
- ticket.group = group1
- ticket.save
- TransactionDispatcher.commit
- data = "From: me@example.com
- To: customer@example.com
- Subject: #{ticket.subject_build('some new subject')}
- Some Text"
- article_count = ticket.articles.count
- parser = Channel::EmailParser.new
- ticket_followup, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- # check if group is still the old one
- assert_equal(ticket.id, ticket_followup.id)
- assert_equal(group1.name, ticket_followup.group.name)
- assert_equal(group1.name, ticket_followup.group.name)
- assert_equal('2 normal', ticket_followup.priority.name)
- assert_equal('follow-up with create post master filter test', ticket_followup.title)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(false, article.internal)
- assert_equal(article_count+1, ticket_followup.articles.count)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'used',
- match: {
- from: {
- operator: 'contains',
- value: 'me@example.com',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group1.id,
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- 'x-Zammad-Ticket-customer_id' => {
- value: '',
- value_completion: '',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: ME Bob <me@example.com>
- To: customer@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal(group1.name, ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('me@example.com', ticket.customer.email)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'used',
- match: {
- from: {
- operator: 'contains',
- value: 'me@example.com',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group1.id,
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- 'x-Zammad-Ticket-customer_id' => {
- value: 999_999,
- value_completion: 'xxx',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: ME Bob <me@example.com>
- To: customer@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal(group1.name, ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('me@example.com', ticket.customer.email)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'used',
- match: {
- from: {
- operator: 'contains',
- value: 'me@example.com',
- },
- },
- perform: {
- 'X-Zammad-Ticket-group_id' => {
- value: group1.id,
- },
- 'X-Zammad-Ticket-priority_id' => {
- value: 888_888,
- },
- 'x-Zammad-Article-Internal' => {
- value: true,
- },
- 'x-Zammad-Ticket-customer_id' => {
- value: 999_999,
- value_completion: 'xxx',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: ME Bob <me@example.com>
- To: customer@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal(group1.name, ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('me@example.com', ticket.customer.email)
- assert_equal('2 normal', ticket.priority.name)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'Autoresponder',
- match: {
- 'auto-submitted' => {
- 'operator' => 'contains not',
- 'value' => 'auto-generated',
- },
- 'from' => {
- 'operator' => 'contains',
- 'value' => '@example.com',
- }
- },
- perform: {
- 'x-zammad-article-internal' => {
- 'value' => 'true',
- },
- 'x-zammad-article-type_id' => {
- 'value' => Ticket::Article::Type.find_by(name: 'note').id.to_s,
- },
- 'x-zammad-ignore' => {
- 'value' => 'false',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: ME Bob <me@example.com>
- To: customer@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Users', ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('me@example.com', ticket.customer.email)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('Customer', article.sender.name)
- assert_equal('note', article.type.name)
- assert_equal(true, article.internal)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'Autoresponder',
- match: {
- 'auto-submitted' => {
- 'operator' => 'contains',
- 'value' => 'auto-generated',
- },
- 'from' => {
- 'operator' => 'contains',
- 'value' => '@example.com',
- }
- },
- perform: {
- 'x-zammad-article-internal' => {
- 'value' => 'true',
- },
- 'x-zammad-article-type_id' => {
- 'value' => Ticket::Article::Type.find_by(name: 'note').id.to_s,
- },
- 'x-zammad-ignore' => {
- 'value' => 'false',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: ME Bob <me@example.com>
- To: customer@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Users', ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('me@example.com', ticket.customer.email)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(false, article.internal)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'Autoresponder',
- match: {
- 'auto-submitted' => {
- 'operator' => 'contains not',
- 'value' => 'auto-generated',
- },
- 'to' => {
- 'operator' => 'contains',
- 'value' => 'customer@example.com',
- },
- 'from' => {
- 'operator' => 'contains',
- 'value' => '@example.com',
- }
- },
- perform: {
- 'x-zammad-article-internal' => {
- 'value' => 'true',
- },
- 'x-zammad-article-type_id' => {
- 'value' => Ticket::Article::Type.find_by(name: 'note').id.to_s,
- },
- 'x-zammad-ignore' => {
- 'value' => 'false',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: ME Bob <me@example.com>
- To: customer@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Users', ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('me@example.com', ticket.customer.email)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('Customer', article.sender.name)
- assert_equal('note', article.type.name)
- assert_equal(true, article.internal)
- PostmasterFilter.destroy_all
- PostmasterFilter.create!(
- name: 'Autoresponder',
- match: {
- 'auto-submitted' => {
- 'operator' => 'contains',
- 'value' => 'auto-generated',
- },
- 'to' => {
- 'operator' => 'contains',
- 'value' => 'customer1@example.com',
- },
- 'from' => {
- 'operator' => 'contains',
- 'value' => '@example.com',
- }
- },
- perform: {
- 'x-zammad-article-internal' => {
- 'value' => 'true',
- },
- 'x-zammad-article-type_id' => {
- 'value' => Ticket::Article::Type.find_by(name: 'note').id.to_s,
- },
- 'x-zammad-ignore' => {
- 'value' => 'false',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: ME Bob <me@example.com>
- To: customer@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- assert_equal('Users', ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('me@example.com', ticket.customer.email)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('Customer', article.sender.name)
- assert_equal('email', article.type.name)
- assert_equal(false, article.internal)
- end
- test 'tags in postmaster filter' do
- group_default = Group.lookup(name: 'Users')
- PostmasterFilter.create!(
- name: '01 set tag for email',
- match: {
- from: {
- operator: 'contains',
- value: 'nobody@example.com',
- },
- },
- perform: {
- 'x-zammad-ticket-tags' => {
- operator: 'add',
- value: 'test1, test2, test3',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- PostmasterFilter.create!(
- name: '02 set tag for email',
- match: {
- from: {
- operator: 'contains',
- value: 'nobody@example.com',
- },
- },
- perform: {
- 'x-zammad-ticket-tags' => {
- operator: 'remove',
- value: 'test2, test3',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- PostmasterFilter.create!(
- name: '03 set tag for email',
- match: {
- from: {
- operator: 'contains',
- value: 'nobody@example.com',
- },
- },
- perform: {
- 'x-zammad-ticket-tags' => {
- operator: 'add',
- value: 'test3',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- PostmasterFilter.create!(
- name: '04 set tag for email',
- match: {
- from: {
- operator: 'contains',
- value: 'nobody@example.com',
- },
- },
- perform: {
- 'x-zammad-ticket-tags' => {
- operator: 'add',
- value: 'abc1 , abc2 ',
- },
- },
- channel: 'email',
- active: true,
- created_by_id: 1,
- updated_by_id: 1,
- )
- data = 'From: ME Bob <nobody@example.com>
- To: customer@example.com
- Subject: some subject
- Some Text'
- parser = Channel::EmailParser.new
- ticket, article, user = parser.process({ group_id: group_default.id, trusted: false }, data)
- tags = Tag.tag_list(object: 'Ticket', o_id: ticket.id)
- assert_equal('Users', ticket.group.name)
- assert_equal('2 normal', ticket.priority.name)
- assert_equal('some subject', ticket.title)
- assert_equal('nobody@example.com', ticket.customer.email)
- assert_equal(4, tags.count)
- assert(tags.include?('test1'))
- assert(tags.include?('test3'))
- assert(tags.include?('abc1'))
- assert(tags.include?('abc2'))
- end
- end
|