123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- # encoding: utf-8
- require 'test_helper'
- class OnlineNotificationTest < ActiveSupport::TestCase
- group = nil
- agent_user1 = nil
- agent_user2 = nil
- customer_user = nil
- test 'aaa - setup' do
- role = Role.lookup(name: 'Agent')
- group = Group.create_or_update(
- name: 'OnlineNotificationTest',
- updated_by_id: 1,
- created_by_id: 1
- )
- agent_user1 = User.create_or_update(
- login: 'agent_online_notify1',
- firstname: 'Bob',
- lastname: 'Smith',
- email: 'agent_online_notify1@example.com',
- password: 'some_pass',
- active: true,
- role_ids: [role.id],
- group_ids: [group.id],
- updated_by_id: 1,
- created_by_id: 1
- )
- agent_user2 = User.create_or_update(
- login: 'agent_online_notify2',
- firstname: 'Bob',
- lastname: 'Smith',
- email: 'agent_online_notify2@example.com',
- password: 'some_pass',
- active: true,
- role_ids: [role.id],
- group_ids: [group.id],
- updated_by_id: 1,
- created_by_id: 1
- )
- customer_user = User.lookup(email: 'nicole.braun@zammad.org')
- end
- test 'ticket notification' do
- ApplicationHandleInfo.current = 'application_server'
- # case #1
- ticket1 = Ticket.create(
- group: group,
- customer_id: customer_user.id,
- owner_id: User.lookup(login: '-').id,
- title: 'Unit Test 1 (äöüß)!',
- state_id: Ticket::State.lookup(name: 'closed').id,
- priority_id: Ticket::Priority.lookup(name: '2 normal').id,
- updated_by_id: agent_user1.id,
- created_by_id: agent_user1.id,
- )
- article1 = Ticket::Article.create(
- ticket_id: ticket1.id,
- updated_by_id: agent_user1.id,
- created_by_id: agent_user1.id,
- type_id: Ticket::Article::Type.lookup(name: 'phone').id,
- sender_id: Ticket::Article::Sender.lookup(name: 'Customer').id,
- from: 'Unit Test <unittest@example.com>',
- body: 'Unit Test 123',
- internal: false
- )
- # remember ticket
- tickets = []
- tickets.push ticket1
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already closed
- assert(OnlineNotification.all_seen?('Ticket', ticket1.id))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket1.id, 'create', agent_user1, false))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket1.id, 'create', agent_user1, true))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket1.id, 'create', agent_user1, false))
- assert(OnlineNotification.exists?(agent_user2, 'Ticket', ticket1.id, 'create', agent_user1, true))
- ticket1.update_attributes(
- title: 'Unit Test 1 (äöüß) - update!',
- state_id: Ticket::State.lookup(name: 'open').id,
- priority_id: Ticket::Priority.lookup(name: '1 low').id,
- updated_by_id: customer_user.id,
- )
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already open
- assert(!OnlineNotification.all_seen?('Ticket', ticket1.id))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket1.id, 'update', customer_user, true))
- assert(OnlineNotification.exists?(agent_user1, 'Ticket', ticket1.id, 'update', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket1.id, 'update', customer_user, true))
- assert(OnlineNotification.exists?(agent_user2, 'Ticket', ticket1.id, 'update', customer_user, false))
- # case #2
- ticket2 = Ticket.create(
- group: group,
- customer_id: customer_user.id,
- owner_id: agent_user1.id,
- title: 'Unit Test 1 (äöüß)!',
- state_id: Ticket::State.lookup(name: 'closed').id,
- priority_id: Ticket::Priority.lookup(name: '2 normal').id,
- updated_by_id: customer_user.id,
- created_by_id: customer_user.id,
- )
- article2 = Ticket::Article.create(
- ticket_id: ticket2.id,
- updated_by_id: customer_user.id,
- created_by_id: customer_user.id,
- type_id: Ticket::Article::Type.lookup(name: 'phone').id,
- sender_id: Ticket::Article::Sender.lookup(name: 'Customer').id,
- from: 'Unit Test <unittest@example.com>',
- body: 'Unit Test 123',
- internal: false
- )
- # remember ticket
- tickets = []
- tickets.push ticket2
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already closed
- assert(!OnlineNotification.all_seen?('Ticket', ticket2.id))
- assert(OnlineNotification.exists?(agent_user1, 'Ticket', ticket2.id, 'create', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket2.id, 'create', customer_user, true))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket2.id, 'create', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket2.id, 'create', customer_user, true))
- ticket2.update_attributes(
- title: 'Unit Test 1 (äöüß) - update!',
- state_id: Ticket::State.lookup(name: 'open').id,
- priority_id: Ticket::Priority.lookup(name: '1 low').id,
- updated_by_id: customer_user.id,
- )
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already open
- assert(!OnlineNotification.all_seen?('Ticket', ticket2.id))
- assert(OnlineNotification.exists?(agent_user1, 'Ticket', ticket2.id, 'update', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket2.id, 'update', customer_user, true))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket2.id, 'update', customer_user, true))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket2.id, 'update', customer_user, false))
- # case #3
- ticket3 = Ticket.create(
- group: group,
- customer_id: customer_user.id,
- owner_id: User.lookup(login: '-').id,
- title: 'Unit Test 2 (äöüß)!',
- state_id: Ticket::State.lookup(name: 'new').id,
- priority_id: Ticket::Priority.lookup(name: '2 normal').id,
- updated_by_id: agent_user1.id,
- created_by_id: agent_user1.id,
- )
- article3 = Ticket::Article.create(
- ticket_id: ticket3.id,
- updated_by_id: agent_user1.id,
- created_by_id: agent_user1.id,
- type_id: Ticket::Article::Type.lookup(name: 'phone').id,
- sender_id: Ticket::Article::Sender.lookup(name: 'Customer').id,
- from: 'Unit Test <unittest@example.com>',
- body: 'Unit Test 123',
- internal: false,
- )
- # remember ticket
- tickets.push ticket3
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already new
- assert(!OnlineNotification.all_seen?('Ticket', ticket3.id))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket3.id, 'create', agent_user1, false))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket3.id, 'create', agent_user1, true))
- assert(OnlineNotification.exists?(agent_user2, 'Ticket', ticket3.id, 'create', agent_user1, false))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket3.id, 'create', agent_user1, true))
- ticket3.update_attributes(
- title: 'Unit Test 2 (äöüß) - update!',
- state_id: Ticket::State.lookup(name: 'closed').id,
- priority_id: Ticket::Priority.lookup(name: '1 low').id,
- updated_by_id: customer_user.id,
- )
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already closed
- assert(OnlineNotification.all_seen?('Ticket', ticket3.id))
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket3, agent_user1, 'update'))
- assert_equal(1, NotificationFactory::Mailer.already_sent?(ticket3, agent_user2, 'update'))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket3.id, 'update', customer_user, false))
- assert(OnlineNotification.exists?(agent_user1, 'Ticket', ticket3.id, 'update', customer_user, true))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket3.id, 'update', customer_user, false))
- assert(OnlineNotification.exists?(agent_user2, 'Ticket', ticket3.id, 'update', customer_user, true))
- article3 = Ticket::Article.create(
- ticket_id: ticket3.id,
- updated_by_id: customer_user.id,
- created_by_id: customer_user.id,
- type_id: Ticket::Article::Type.lookup(name: 'phone').id,
- sender_id: Ticket::Article::Sender.lookup(name: 'Customer').id,
- from: 'Unit Test <unittest@example.com>',
- body: 'Unit Test 123 # 2',
- internal: false
- )
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already closed but an follow up arrived later
- assert(!OnlineNotification.all_seen?('Ticket', ticket3.id))
- assert(OnlineNotification.exists?(agent_user1, 'Ticket', ticket3.id, 'update', customer_user, false))
- assert(OnlineNotification.exists?(agent_user1, 'Ticket', ticket3.id, 'update', customer_user, true))
- assert(OnlineNotification.exists?(agent_user2, 'Ticket', ticket3.id, 'update', customer_user, false))
- assert(OnlineNotification.exists?(agent_user2, 'Ticket', ticket3.id, 'update', customer_user, true))
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket3, agent_user1, 'update'))
- assert_equal(2, NotificationFactory::Mailer.already_sent?(ticket3, agent_user2, 'update'))
- # case #4
- ticket4 = Ticket.create(
- group: group,
- customer_id: customer_user.id,
- owner_id: agent_user1.id,
- title: 'Unit Test 3 (äöüß)!',
- state_id: Ticket::State.lookup(name: 'new').id,
- priority_id: Ticket::Priority.lookup(name: '2 normal').id,
- updated_by_id: customer_user.id,
- created_by_id: customer_user.id,
- )
- article4 = Ticket::Article.create(
- ticket_id: ticket4.id,
- updated_by_id: customer_user.id,
- created_by_id: customer_user.id,
- type_id: Ticket::Article::Type.lookup(name: 'phone').id,
- sender_id: Ticket::Article::Sender.lookup(name: 'Customer').id,
- from: 'Unit Test <unittest@example.com>',
- body: 'Unit Test 123',
- internal: false,
- )
- # remember ticket
- tickets.push ticket4
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already new
- assert(!OnlineNotification.all_seen?('Ticket', ticket4.id))
- assert(OnlineNotification.exists?(agent_user1, 'Ticket', ticket4.id, 'create', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket4.id, 'create', customer_user, true))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket4.id, 'create', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket4.id, 'create', customer_user, true))
- ticket4.update_attributes(
- title: 'Unit Test 3 (äöüß) - update!',
- state_id: Ticket::State.lookup(name: 'open').id,
- priority_id: Ticket::Priority.lookup(name: '1 low').id,
- updated_by_id: customer_user.id,
- )
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already open
- assert(!OnlineNotification.all_seen?('Ticket', ticket4.id))
- assert(OnlineNotification.exists?(agent_user1, 'Ticket', ticket4.id, 'update', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket4.id, 'update', customer_user, true))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket4.id, 'update', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket4.id, 'update', customer_user, true))
- # case #5
- ticket5 = Ticket.create(
- group: group,
- customer_id: customer_user.id,
- owner_id: User.lookup(login: '-').id,
- title: 'Unit Test 4 (äöüß)!',
- state_id: Ticket::State.lookup(name: 'new').id,
- priority_id: Ticket::Priority.lookup( name: '2 normal').id,
- updated_by_id: agent_user1.id,
- created_by_id: agent_user1.id,
- )
- article5 = Ticket::Article.create(
- ticket_id: ticket5.id,
- updated_by_id: agent_user1.id,
- created_by_id: agent_user1.id,
- type_id: Ticket::Article::Type.lookup(name: 'phone').id,
- sender_id: Ticket::Article::Sender.lookup(name: 'Customer').id,
- from: 'Unit Test <unittest@example.com>',
- body: 'Unit Test 123',
- internal: false,
- )
- # remember ticket
- tickets.push ticket5
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already new
- assert(!OnlineNotification.all_seen?('Ticket', ticket5.id))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket5.id, 'create', agent_user1, true))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket5.id, 'create', agent_user1, false))
- assert(OnlineNotification.exists?(agent_user2, 'Ticket', ticket5.id, 'create', agent_user1, false))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket5.id, 'create', agent_user1, true))
- ticket5.update_attributes(
- title: 'Unit Test 4 (äöüß) - update!',
- state_id: Ticket::State.lookup(name: 'open').id,
- priority_id: Ticket::Priority.lookup(name: '1 low').id,
- updated_by_id: customer_user.id,
- )
- # execute object transaction
- Observer::Transaction.commit
- Scheduler.worker(true)
- # because it's already open
- assert(!OnlineNotification.all_seen?('Ticket', ticket5.id))
- assert(OnlineNotification.exists?(agent_user1, 'Ticket', ticket5.id, 'update', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user1, 'Ticket', ticket5.id, 'update', customer_user, true))
- assert(OnlineNotification.exists?(agent_user2, 'Ticket', ticket5.id, 'update', customer_user, false))
- assert(!OnlineNotification.exists?(agent_user2, 'Ticket', ticket5.id, 'update', customer_user, true))
- # merge tickets - also remove notifications of merged tickets
- tickets[0].merge_to(
- ticket_id: tickets[1].id,
- user_id: 1,
- )
- Scheduler.worker(true)
- notifications = OnlineNotification.list_by_object('Ticket', tickets[0].id)
- assert(!notifications.empty?, 'should have notifications')
- assert(OnlineNotification.all_seen?('Ticket', tickets[0].id), 'still not seen notifications for merged ticket available')
- notifications = OnlineNotification.list_by_object('Ticket', tickets[1].id)
- assert(!notifications.empty?, 'should have notifications')
- assert(!OnlineNotification.all_seen?('Ticket', tickets[1].id), 'no notifications for master ticket available')
- # delete tickets
- tickets.each { |ticket|
- ticket_id = ticket.id
- ticket.destroy
- found = Ticket.find_by(id: ticket_id)
- assert(!found, 'Ticket destroyed')
- # check if notifications for ticket still exist
- Scheduler.worker(true)
- notifications = OnlineNotification.list_by_object('Ticket', ticket_id)
- assert(notifications.empty?, 'still notifications for destroyed ticket available')
- }
- end
- test 'ticket notification item check' do
- ticket1 = Ticket.create(
- title: 'some title',
- group: group,
- customer_id: customer_user.id,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: 1,
- created_by_id: 1,
- )
- assert(ticket1, 'ticket created')
- article_inbound = 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 article_inbound',
- internal: false,
- sender: Ticket::Article::Sender.lookup(name: 'Customer'),
- type: Ticket::Article::Type.lookup(name: 'email'),
- updated_by_id: 1,
- created_by_id: 1,
- )
- assert_equal(ticket1.online_notification_seen_state, false)
- assert_equal(ticket1.online_notification_seen_state(agent_user1), false)
- assert_equal(ticket1.online_notification_seen_state(agent_user2), false)
- # pending reminder, just let new owner to unseed
- ticket1.update_attributes(
- owner_id: agent_user1.id,
- state: Ticket::State.lookup(name: 'pending reminder'),
- updated_by_id: agent_user2.id,
- )
- assert_equal(ticket1.online_notification_seen_state, true)
- assert_equal(ticket1.online_notification_seen_state(agent_user1.id), false)
- assert_equal(ticket1.online_notification_seen_state(agent_user2.id), true)
- # pending reminder, just let new owner to unseed
- ticket1.update_attributes(
- owner_id: 1,
- state: Ticket::State.lookup(name: 'pending reminder'),
- updated_by_id: agent_user2.id,
- )
- assert_equal(ticket1.online_notification_seen_state, true)
- assert_equal(ticket1.online_notification_seen_state(agent_user1.id), false)
- assert_equal(ticket1.online_notification_seen_state(agent_user2.id), false)
- # pending reminder, self done, all to unseed
- ticket1.update_attributes(
- owner_id: agent_user1.id,
- state: Ticket::State.lookup(name: 'pending reminder'),
- updated_by_id: agent_user1.id,
- )
- assert_equal(ticket1.online_notification_seen_state, true)
- assert_equal(ticket1.online_notification_seen_state(agent_user1.id), true)
- assert_equal(ticket1.online_notification_seen_state(agent_user2.id), true)
- # pending close, all to unseen
- ticket1.update_attributes(
- owner_id: agent_user1.id,
- state: Ticket::State.lookup(name: 'pending close'),
- updated_by_id: agent_user2.id,
- )
- assert_equal(ticket1.online_notification_seen_state, true)
- assert_equal(ticket1.online_notification_seen_state(agent_user1.id), false)
- assert_equal(ticket1.online_notification_seen_state(agent_user2.id), true)
- # to open, all to seen
- ticket1.update_attributes(
- owner_id: agent_user1.id,
- state: Ticket::State.lookup(name: 'open'),
- updated_by_id: agent_user2.id,
- )
- assert_equal(ticket1.online_notification_seen_state, false)
- assert_equal(ticket1.online_notification_seen_state(agent_user1.id), false)
- assert_equal(ticket1.online_notification_seen_state(agent_user2.id), false)
- # to closed, all only others to seen
- ticket1.update_attributes(
- owner_id: agent_user1.id,
- state: Ticket::State.lookup(name: 'closed'),
- updated_by_id: agent_user2.id,
- )
- assert_equal(ticket1.online_notification_seen_state, true)
- assert_equal(ticket1.online_notification_seen_state(agent_user1.id), false)
- assert_equal(ticket1.online_notification_seen_state(agent_user2.id), true)
- # to closed by owner self, all to seen
- ticket1.update_attributes(
- owner_id: agent_user1.id,
- state: Ticket::State.lookup(name: 'closed'),
- updated_by_id: agent_user1.id,
- )
- assert_equal(ticket1.online_notification_seen_state, true)
- assert_equal(ticket1.online_notification_seen_state(agent_user1.id), true)
- assert_equal(ticket1.online_notification_seen_state(agent_user2.id), true)
- # to closed by owner self, all to seen
- ticket1.update_attributes(
- owner_id: agent_user1.id,
- state: Ticket::State.lookup(name: 'merged'),
- updated_by_id: agent_user2.id,
- )
- assert_equal(ticket1.online_notification_seen_state, true)
- assert_equal(ticket1.online_notification_seen_state(agent_user1.id), true)
- assert_equal(ticket1.online_notification_seen_state(agent_user2.id), true)
- end
- test 'cleanup check' do
- online_notification1 = OnlineNotification.add(
- type: 'create',
- object: 'Ticket',
- o_id: 123,
- seen: false,
- user_id: agent_user1.id,
- created_by_id: 1,
- updated_by_id: 1,
- created_at: Time.zone.now - 10.months,
- updated_at: Time.zone.now - 10.months,
- )
- online_notification2 = OnlineNotification.add(
- type: 'create',
- object: 'Ticket',
- o_id: 123,
- seen: true,
- user_id: agent_user1.id,
- created_by_id: 1,
- updated_by_id: 1,
- created_at: Time.zone.now - 10.months,
- updated_at: Time.zone.now - 10.months,
- )
- online_notification3 = OnlineNotification.add(
- type: 'create',
- object: 'Ticket',
- o_id: 123,
- seen: false,
- user_id: agent_user1.id,
- created_by_id: 1,
- updated_by_id: 1,
- created_at: Time.zone.now - 2.days,
- updated_at: Time.zone.now - 2.days,
- )
- online_notification4 = OnlineNotification.add(
- type: 'create',
- object: 'Ticket',
- o_id: 123,
- seen: true,
- user_id: agent_user1.id,
- created_by_id: agent_user1.id,
- updated_by_id: agent_user1.id,
- created_at: Time.zone.now - 2.days,
- updated_at: Time.zone.now - 2.days,
- )
- online_notification5 = OnlineNotification.add(
- type: 'create',
- object: 'Ticket',
- o_id: 123,
- seen: true,
- user_id: agent_user1.id,
- created_by_id: agent_user2.id,
- updated_by_id: agent_user2.id,
- created_at: Time.zone.now - 2.days,
- updated_at: Time.zone.now - 2.days,
- )
- online_notification6 = OnlineNotification.add(
- type: 'create',
- object: 'Ticket',
- o_id: 123,
- seen: true,
- user_id: agent_user1.id,
- created_by_id: agent_user1.id,
- updated_by_id: agent_user1.id,
- created_at: Time.zone.now - 5.minutes,
- updated_at: Time.zone.now - 5.minutes,
- )
- online_notification7 = OnlineNotification.add(
- type: 'create',
- object: 'Ticket',
- o_id: 123,
- seen: true,
- user_id: agent_user1.id,
- created_by_id: agent_user2.id,
- updated_by_id: agent_user2.id,
- created_at: Time.zone.now - 5.minutes,
- updated_at: Time.zone.now - 5.minutes,
- )
- OnlineNotification.cleanup
- assert(!OnlineNotification.find_by(id: online_notification1.id))
- assert(!OnlineNotification.find_by(id: online_notification2.id))
- assert(OnlineNotification.find_by(id: online_notification3.id))
- assert(!OnlineNotification.find_by(id: online_notification4.id))
- assert(!OnlineNotification.find_by(id: online_notification5.id))
- assert(OnlineNotification.find_by(id: online_notification6.id))
- assert(OnlineNotification.find_by(id: online_notification7.id))
- OnlineNotification.destroy_all
- end
- end
|