trabajo-afectivo/test/unit/activity_stream_test.rb

369 lines
10 KiB
Ruby
Raw Normal View History

2013-09-28 00:07:11 +00:00
# encoding: utf-8
require 'test_helper'
class ActivityStreamTest < ActiveSupport::TestCase
2013-09-29 21:37:49 +00:00
role = Role.lookup( :name => 'Admin' )
group = Group.lookup( :name => 'Users' )
2013-10-05 12:56:03 +00:00
admin_user = User.create_or_update(
2013-09-29 21:37:49 +00:00
:login => 'admin',
:firstname => 'Bob',
:lastname => 'Smith',
:email => 'bob@example.com',
:password => 'some_pass',
:active => true,
:role_ids => [role.id],
:group_ids => [group.id],
:updated_by_id => 1,
:created_by_id => 1
)
2013-10-05 12:56:03 +00:00
current_user = User.lookup( :login => 'nicole.braun@zammad.org' )
2013-09-29 21:37:49 +00:00
2013-09-28 00:07:11 +00:00
test 'ticket+user' do
tests = [
# test 1
{
:create => {
:ticket => {
:group_id => Group.lookup( :name => 'Users' ).id,
2013-10-05 12:56:03 +00:00
:customer_id => current_user.id,
2013-09-28 00:07:11 +00:00
:owner_id => User.lookup( :login => '-' ).id,
:title => 'Unit Test 1 (äöüß)!',
:ticket_state_id => Ticket::State.lookup( :name => 'new' ).id,
:ticket_priority_id => Ticket::Priority.lookup( :name => '2 normal' ).id,
2013-10-05 12:56:03 +00:00
:updated_by_id => current_user.id,
:created_by_id => current_user.id,
2013-09-28 00:07:11 +00:00
},
:article => {
2013-10-05 12:56:03 +00:00
:updated_by_id => current_user.id,
:created_by_id => current_user.id,
2013-09-28 00:07:11 +00:00
:ticket_article_type_id => Ticket::Article::Type.lookup( :name => 'phone' ).id,
:ticket_article_sender_id => Ticket::Article::Sender.lookup( :name => 'Customer' ).id,
:from => 'Unit Test <unittest@example.com>',
:body => 'Unit Test 123',
:internal => false
},
},
:update => {
:ticket => {
:title => 'Unit Test 1 (äöüß) - update!',
:ticket_state_id => Ticket::State.lookup( :name => 'open' ).id,
:ticket_priority_id => Ticket::Priority.lookup( :name => '1 low' ).id,
},
},
:check => [
{
2013-10-05 12:56:03 +00:00
:result => true,
2013-09-28 00:07:11 +00:00
:object => 'Ticket',
:type => 'created',
},
{
2013-10-05 12:56:03 +00:00
:result => true,
2013-09-28 00:07:11 +00:00
:object => 'Ticket::Article',
:type => 'created',
},
{
2013-10-05 12:56:03 +00:00
:result => false,
2013-09-28 00:07:11 +00:00
:object => 'User',
:type => 'updated',
2013-10-05 12:56:03 +00:00
:o_id => current_user.id,
2013-09-28 00:07:11 +00:00
},
]
},
]
tickets = []
tests.each { |test|
ticket = nil
article = nil
2014-05-30 07:57:35 +00:00
ticket = Ticket.create( test[:create][:ticket] )
test[:check][0][:o_id] = ticket.id
test[:check][0][:created_at] = ticket.created_at
test[:check][0][:created_by_id] = current_user.id
sleep 2
test[:create][:article][:ticket_id] = ticket.id
article = Ticket::Article.create( test[:create][:article] )
test[:check][1][:o_id] = article.id
test[:check][1][:created_at] = article.created_at
test[:check][1][:created_by_id] = current_user.id
assert_equal( ticket.class.to_s, 'Ticket' )
assert_equal( article.class.to_s, 'Ticket::Article' )
# update ticket
if test[:update][:ticket]
ticket.update_attributes( test[:update][:ticket] )
# check updated user
test[:check][2][:o_id] = current_user.id
test[:check][2][:created_at] = ticket.created_at
test[:check][2][:created_by_id] = current_user.id
end
if test[:update][:article]
article.update_attributes( test[:update][:article] )
2013-09-28 00:07:11 +00:00
end
# remember ticket
tickets.push ticket
# check activity_stream
2013-10-05 12:56:03 +00:00
activity_stream_check( admin_user.activity_stream(3), test[:check] )
2013-09-28 00:07:11 +00:00
}
# delete tickets
tickets.each { |ticket|
ticket_id = ticket.id
ticket.destroy
found = Ticket.where( :id => ticket_id ).first
assert( !found, "Ticket destroyed")
}
end
test 'organization' do
tests = [
# test 1
{
:create => {
:organization => {
:name => 'some name',
2013-10-05 12:56:03 +00:00
:updated_by_id => current_user.id,
:created_by_id => current_user.id,
2013-09-28 00:07:11 +00:00
},
},
:update1 => {
:organization => {
:name => 'some name (äöüß)',
},
},
:update2 => {
:organization => {
:name => 'some name 2 (äöüß)',
},
},
:check => [
{
2013-10-05 12:56:03 +00:00
:result => true,
2013-09-28 00:07:11 +00:00
:object => 'Organization',
:type => 'created',
},
{
2013-10-05 12:56:03 +00:00
:result => true,
2013-09-28 00:07:11 +00:00
:object => 'Organization',
:type => 'updated',
},
]
},
]
organizations = []
tests.each { |test|
organization = Organization.create( test[:create][:organization] )
test[:check][0][:o_id] = organization.id
test[:check][0][:created_at] = organization.created_at
2013-10-05 12:56:03 +00:00
test[:check][0][:created_by_id] = current_user.id
2014-05-30 07:57:35 +00:00
sleep 2
2013-09-28 00:07:11 +00:00
assert_equal( organization.class.to_s, 'Organization' )
if test[:update1][:organization]
organization.update_attributes( test[:update1][:organization] )
test[:check][1][:o_id] = organization.id
test[:check][1][:updated_at] = organization.updated_at
2013-10-05 12:56:03 +00:00
test[:check][1][:created_by_id] = current_user.id
2014-05-30 07:57:35 +00:00
sleep 13
2013-09-28 00:07:11 +00:00
end
if test[:update2][:organization]
organization.update_attributes( test[:update2][:organization] )
end
# remember organization
organizations.push organization
# check activity_stream
2013-10-05 12:56:03 +00:00
activity_stream_check( admin_user.activity_stream(2), test[:check] )
2013-09-28 00:07:11 +00:00
}
# delete tickets
organizations.each { |organization|
organization_id = organization.id
organization.destroy
found = Organization.where( :id => organization_id ).first
assert( !found, "Organization destroyed")
}
end
2013-10-05 12:56:03 +00:00
test 'user with update check false' do
tests = [
# test 1
{
:create => {
:user => {
:login => 'someemail@example.com',
:email => 'Bob Smith II <someemail@example.com>',
:updated_by_id => current_user.id,
:created_by_id => current_user.id,
},
},
:update1 => {
:user => {
:firstname => 'Bob U',
:lastname => 'Smith U',
},
},
:check => [
{
:result => true,
:object => 'User',
:type => 'created',
},
{
:result => false,
:object => 'User',
:type => 'updated',
},
]
},
]
users = []
tests.each { |test|
user = User.create( test[:create][:user] )
test[:check][0][:o_id] = user.id
test[:check][0][:created_at] = user.created_at
test[:check][0][:created_by_id] = current_user.id
assert_equal( user.class.to_s, 'User' )
if test[:update1][:user]
user.update_attributes( test[:update1][:user] )
test[:check][1][:o_id] = user.id
test[:check][1][:updated_at] = user.updated_at
test[:check][1][:created_by_id] = current_user.id
end
# remember organization
users.push user
# check activity_stream
activity_stream_check( admin_user.activity_stream(2), test[:check] )
}
# delete tickets
users.each { |user|
user_id = user.id
user.destroy
found = User.where( :id => user_id ).first
assert( !found, "User destroyed")
}
end
test 'user with update check true' do
tests = [
# test 1
{
:create => {
:user => {
:login => 'someemail@example.com',
:email => 'Bob Smith II <someemail@example.com>',
:updated_by_id => current_user.id,
:created_by_id => current_user.id,
},
},
:update1 => {
:user => {
:firstname => 'Bob U',
:lastname => 'Smith U',
},
},
:update2 => {
:user => {
:firstname => 'Bob',
:lastname => 'Smith', },
},
:check => [
{
:result => true,
:object => 'User',
:type => 'created',
},
{
:result => true,
:object => 'User',
:type => 'updated',
},
]
},
]
users = []
tests.each { |test|
user = User.create( test[:create][:user] )
test[:check][0][:o_id] = user.id
test[:check][0][:created_at] = user.created_at
test[:check][0][:created_by_id] = current_user.id
assert_equal( user.class.to_s, 'User' )
if test[:update1][:user]
user.update_attributes( test[:update1][:user] )
test[:check][1][:o_id] = user.id
test[:check][1][:updated_at] = user.updated_at
test[:check][1][:created_by_id] = current_user.id
end
# to verify update which need to be logged
sleep 14
if test[:update2][:user]
user.update_attributes( test[:update2][:user] )
end
# remember organization
users.push user
# check activity_stream
activity_stream_check( admin_user.activity_stream(2), test[:check] )
}
# delete tickets
users.each { |user|
user_id = user.id
user.destroy
found = User.where( :id => user_id ).first
assert( !found, "User destroyed")
}
end
2013-09-28 00:07:11 +00:00
def activity_stream_check( activity_stream_list, checks )
2014-05-30 07:57:35 +00:00
#puts 'AS ' + activity_stream_list.inspect
2013-09-28 00:07:11 +00:00
checks.each { |check_item|
2014-05-30 07:57:35 +00:00
#puts '+++++++++++'
#puts check_item.inspect
2013-09-28 00:07:11 +00:00
match = false
activity_stream_list.each { |item|
next if match
2014-05-30 07:57:35 +00:00
#puts '--------'
#puts item.inspect
2013-09-28 00:07:11 +00:00
next if item['object'] != check_item[:object]
next if item['type'] != check_item[:type]
next if item['o_id'] != check_item[:o_id]
match = true
}
2013-10-05 12:56:03 +00:00
if check_item[:result]
2014-05-30 07:57:35 +00:00
assert( match, "activity stream check not matched! #{ check_item.inspect } not in #{ activity_stream_list.inspect }")
2013-10-05 12:56:03 +00:00
else
2014-05-30 07:57:35 +00:00
assert( !match, "activity stream check matched but should not! #{ check_item.inspect } not in #{ activity_stream_list.inspect }")
2014-05-27 13:22:21 +00:00
end
2013-09-28 00:07:11 +00:00
}
end
end