To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / d5 / d5050114448f68b3daa8ff218c27426ce16d4bf7.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (4.32 KB)
| 1 |
# Redmine - project management software |
|---|---|
| 2 |
# Copyright (C) 2006-2011 Jean-Philippe Lang |
| 3 |
# |
| 4 |
# This program is free software; you can redistribute it and/or |
| 5 |
# modify it under the terms of the GNU General Public License |
| 6 |
# as published by the Free Software Foundation; either version 2 |
| 7 |
# of the License, or (at your option) any later version. |
| 8 |
# |
| 9 |
# This program is distributed in the hope that it will be useful, |
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 |
# GNU General Public License for more details. |
| 13 |
# |
| 14 |
# You should have received a copy of the GNU General Public License |
| 15 |
# along with this program; if not, write to the Free Software |
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 17 |
|
| 18 |
require File.expand_path('../../test_helper', __FILE__)
|
| 19 |
|
| 20 |
class WatcherTest < ActiveSupport::TestCase |
| 21 |
fixtures :projects, :users, :members, :member_roles, :roles, :enabled_modules, |
| 22 |
:issues, |
| 23 |
:boards, :messages, |
| 24 |
:wikis, :wiki_pages, |
| 25 |
:watchers |
| 26 |
|
| 27 |
def setup |
| 28 |
@user = User.find(1) |
| 29 |
@issue = Issue.find(1) |
| 30 |
end |
| 31 |
|
| 32 |
def test_watch |
| 33 |
assert @issue.add_watcher(@user) |
| 34 |
@issue.reload |
| 35 |
assert @issue.watchers.detect { |w| w.user == @user }
|
| 36 |
end |
| 37 |
|
| 38 |
def test_cant_watch_twice |
| 39 |
assert @issue.add_watcher(@user) |
| 40 |
assert !@issue.add_watcher(@user) |
| 41 |
end |
| 42 |
|
| 43 |
def test_watched_by |
| 44 |
assert @issue.add_watcher(@user) |
| 45 |
@issue.reload |
| 46 |
assert @issue.watched_by?(@user) |
| 47 |
assert Issue.watched_by(@user).include?(@issue) |
| 48 |
end |
| 49 |
|
| 50 |
def test_watcher_users |
| 51 |
watcher_users = Issue.find(2).watcher_users |
| 52 |
assert_kind_of Array, watcher_users |
| 53 |
assert_kind_of User, watcher_users.first |
| 54 |
end |
| 55 |
|
| 56 |
def test_watcher_users_should_not_validate_user |
| 57 |
User.update_all("firstname = ''", "id=1")
|
| 58 |
@user.reload |
| 59 |
assert !@user.valid? |
| 60 |
|
| 61 |
issue = Issue.new(:project => Project.find(1), :tracker_id => 1, :subject => "test", :author => User.find(2)) |
| 62 |
issue.watcher_users << @user |
| 63 |
issue.save! |
| 64 |
assert issue.watched_by?(@user) |
| 65 |
end |
| 66 |
|
| 67 |
def test_watcher_user_ids |
| 68 |
assert_equal [1, 3], Issue.find(2).watcher_user_ids.sort |
| 69 |
end |
| 70 |
|
| 71 |
def test_watcher_user_ids= |
| 72 |
issue = Issue.new |
| 73 |
issue.watcher_user_ids = ['1', '3'] |
| 74 |
assert issue.watched_by?(User.find(1)) |
| 75 |
end |
| 76 |
|
| 77 |
def test_addable_watcher_users |
| 78 |
addable_watcher_users = @issue.addable_watcher_users |
| 79 |
assert_kind_of Array, addable_watcher_users |
| 80 |
assert_kind_of User, addable_watcher_users.first |
| 81 |
end |
| 82 |
|
| 83 |
def test_addable_watcher_users_should_not_include_user_that_cannot_view_the_object |
| 84 |
issue = Issue.new(:project => Project.find(1), :is_private => true) |
| 85 |
assert_nil issue.addable_watcher_users.detect {|user| !issue.visible?(user)}
|
| 86 |
end |
| 87 |
|
| 88 |
def test_recipients |
| 89 |
@issue.watchers.delete_all |
| 90 |
@issue.reload |
| 91 |
|
| 92 |
assert @issue.watcher_recipients.empty? |
| 93 |
assert @issue.add_watcher(@user) |
| 94 |
|
| 95 |
@user.mail_notification = 'all' |
| 96 |
@user.save! |
| 97 |
@issue.reload |
| 98 |
assert @issue.watcher_recipients.include?(@user.mail) |
| 99 |
|
| 100 |
@user.mail_notification = 'none' |
| 101 |
@user.save! |
| 102 |
@issue.reload |
| 103 |
assert !@issue.watcher_recipients.include?(@user.mail) |
| 104 |
end |
| 105 |
|
| 106 |
def test_unwatch |
| 107 |
assert @issue.add_watcher(@user) |
| 108 |
@issue.reload |
| 109 |
assert_equal 1, @issue.remove_watcher(@user) |
| 110 |
end |
| 111 |
|
| 112 |
def test_prune |
| 113 |
Watcher.delete_all("user_id = 9")
|
| 114 |
user = User.find(9) |
| 115 |
|
| 116 |
# public |
| 117 |
Watcher.create!(:watchable => Issue.find(1), :user => user) |
| 118 |
Watcher.create!(:watchable => Issue.find(2), :user => user) |
| 119 |
Watcher.create!(:watchable => Message.find(1), :user => user) |
| 120 |
Watcher.create!(:watchable => Wiki.find(1), :user => user) |
| 121 |
Watcher.create!(:watchable => WikiPage.find(2), :user => user) |
| 122 |
|
| 123 |
# private project (id: 2) |
| 124 |
Member.create!(:project => Project.find(2), :principal => user, :role_ids => [1]) |
| 125 |
Watcher.create!(:watchable => Issue.find(4), :user => user) |
| 126 |
Watcher.create!(:watchable => Message.find(7), :user => user) |
| 127 |
Watcher.create!(:watchable => Wiki.find(2), :user => user) |
| 128 |
Watcher.create!(:watchable => WikiPage.find(3), :user => user) |
| 129 |
|
| 130 |
assert_no_difference 'Watcher.count' do |
| 131 |
Watcher.prune(:user => User.find(9)) |
| 132 |
end |
| 133 |
|
| 134 |
Member.delete_all |
| 135 |
|
| 136 |
assert_difference 'Watcher.count', -4 do |
| 137 |
Watcher.prune(:user => User.find(9)) |
| 138 |
end |
| 139 |
|
| 140 |
assert Issue.find(1).watched_by?(user) |
| 141 |
assert !Issue.find(4).watched_by?(user) |
| 142 |
end |
| 143 |
end |