remove trailing white-spaces from unit activity test.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5798 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
6a5c9ed3c7
commit
0aaa2b1b87
|
@ -1,16 +1,16 @@
|
||||||
# redMine - project management software
|
# Redmine - project management software
|
||||||
# Copyright (C) 2006-2008 Jean-Philippe Lang
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License
|
# modify it under the terms of the GNU General Public License
|
||||||
# as published by the Free Software Foundation; either version 2
|
# as published by the Free Software Foundation; either version 2
|
||||||
# of the License, or (at your option) any later version.
|
# of the License, or (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
@ -24,11 +24,11 @@ class ActivityTest < ActiveSupport::TestCase
|
||||||
def setup
|
def setup
|
||||||
@project = Project.find(1)
|
@project = Project.find(1)
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_activity_without_subprojects
|
def test_activity_without_subprojects
|
||||||
events = find_events(User.anonymous, :project => @project)
|
events = find_events(User.anonymous, :project => @project)
|
||||||
assert_not_nil events
|
assert_not_nil events
|
||||||
|
|
||||||
assert events.include?(Issue.find(1))
|
assert events.include?(Issue.find(1))
|
||||||
assert !events.include?(Issue.find(4))
|
assert !events.include?(Issue.find(4))
|
||||||
# subproject issue
|
# subproject issue
|
||||||
|
@ -38,54 +38,54 @@ class ActivityTest < ActiveSupport::TestCase
|
||||||
def test_activity_with_subprojects
|
def test_activity_with_subprojects
|
||||||
events = find_events(User.anonymous, :project => @project, :with_subprojects => 1)
|
events = find_events(User.anonymous, :project => @project, :with_subprojects => 1)
|
||||||
assert_not_nil events
|
assert_not_nil events
|
||||||
|
|
||||||
assert events.include?(Issue.find(1))
|
assert events.include?(Issue.find(1))
|
||||||
# subproject issue
|
# subproject issue
|
||||||
assert events.include?(Issue.find(5))
|
assert events.include?(Issue.find(5))
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_global_activity_anonymous
|
def test_global_activity_anonymous
|
||||||
events = find_events(User.anonymous)
|
events = find_events(User.anonymous)
|
||||||
assert_not_nil events
|
assert_not_nil events
|
||||||
|
|
||||||
assert events.include?(Issue.find(1))
|
assert events.include?(Issue.find(1))
|
||||||
assert events.include?(Message.find(5))
|
assert events.include?(Message.find(5))
|
||||||
# Issue of a private project
|
# Issue of a private project
|
||||||
assert !events.include?(Issue.find(4))
|
assert !events.include?(Issue.find(4))
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_global_activity_logged_user
|
def test_global_activity_logged_user
|
||||||
events = find_events(User.find(2)) # manager
|
events = find_events(User.find(2)) # manager
|
||||||
assert_not_nil events
|
assert_not_nil events
|
||||||
|
|
||||||
assert events.include?(Issue.find(1))
|
assert events.include?(Issue.find(1))
|
||||||
# Issue of a private project the user belongs to
|
# Issue of a private project the user belongs to
|
||||||
assert events.include?(Issue.find(4))
|
assert events.include?(Issue.find(4))
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_user_activity
|
def test_user_activity
|
||||||
user = User.find(2)
|
user = User.find(2)
|
||||||
events = Redmine::Activity::Fetcher.new(User.anonymous, :author => user).events(nil, nil, :limit => 10)
|
events = Redmine::Activity::Fetcher.new(User.anonymous, :author => user).events(nil, nil, :limit => 10)
|
||||||
|
|
||||||
assert(events.size > 0)
|
assert(events.size > 0)
|
||||||
assert(events.size <= 10)
|
assert(events.size <= 10)
|
||||||
assert_nil(events.detect {|e| e.event_author != user})
|
assert_nil(events.detect {|e| e.event_author != user})
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_files_activity
|
def test_files_activity
|
||||||
f = Redmine::Activity::Fetcher.new(User.anonymous, :project => Project.find(1))
|
f = Redmine::Activity::Fetcher.new(User.anonymous, :project => Project.find(1))
|
||||||
f.scope = ['files']
|
f.scope = ['files']
|
||||||
events = f.events
|
events = f.events
|
||||||
|
|
||||||
assert_kind_of Array, events
|
assert_kind_of Array, events
|
||||||
assert events.include?(Attachment.find_by_container_type_and_container_id('Project', 1))
|
assert events.include?(Attachment.find_by_container_type_and_container_id('Project', 1))
|
||||||
assert events.include?(Attachment.find_by_container_type_and_container_id('Version', 1))
|
assert events.include?(Attachment.find_by_container_type_and_container_id('Version', 1))
|
||||||
assert_equal [Attachment], events.collect(&:class).uniq
|
assert_equal [Attachment], events.collect(&:class).uniq
|
||||||
assert_equal %w(Project Version), events.collect(&:container_type).uniq.sort
|
assert_equal %w(Project Version), events.collect(&:container_type).uniq.sort
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def find_events(user, options={})
|
def find_events(user, options={})
|
||||||
Redmine::Activity::Fetcher.new(user, options).events(Date.today - 30, Date.today + 1)
|
Redmine::Activity::Fetcher.new(user, options).events(Date.today - 30, Date.today + 1)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue