@@ -1,16 +1,16 | |||||
1 | # Redmine - project management software |
|
1 | # Redmine - project management software | |
2 |
# Copyright (C) 2006-20 |
|
2 | # Copyright (C) 2006-2011 Jean-Philippe Lang | |
3 | # |
|
3 | # | |
4 | # This program is free software; you can redistribute it and/or |
|
4 | # This program is free software; you can redistribute it and/or | |
5 | # modify it under the terms of the GNU General Public License |
|
5 | # modify it under the terms of the GNU General Public License | |
6 | # as published by the Free Software Foundation; either version 2 |
|
6 | # as published by the Free Software Foundation; either version 2 | |
7 | # of the License, or (at your option) any later version. |
|
7 | # of the License, or (at your option) any later version. | |
8 |
# |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 |
# |
|
13 | # | |
14 | # You should have received a copy of the GNU General Public License |
|
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 |
|
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. |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
@@ -28,67 +28,67 class WatcherTest < ActiveSupport::TestCase | |||||
28 | @user = User.find(1) |
|
28 | @user = User.find(1) | |
29 | @issue = Issue.find(1) |
|
29 | @issue = Issue.find(1) | |
30 | end |
|
30 | end | |
31 |
|
31 | |||
32 | def test_watch |
|
32 | def test_watch | |
33 | assert @issue.add_watcher(@user) |
|
33 | assert @issue.add_watcher(@user) | |
34 | @issue.reload |
|
34 | @issue.reload | |
35 | assert @issue.watchers.detect { |w| w.user == @user } |
|
35 | assert @issue.watchers.detect { |w| w.user == @user } | |
36 | end |
|
36 | end | |
37 |
|
37 | |||
38 | def test_cant_watch_twice |
|
38 | def test_cant_watch_twice | |
39 | assert @issue.add_watcher(@user) |
|
39 | assert @issue.add_watcher(@user) | |
40 | assert !@issue.add_watcher(@user) |
|
40 | assert !@issue.add_watcher(@user) | |
41 | end |
|
41 | end | |
42 |
|
42 | |||
43 | def test_watched_by |
|
43 | def test_watched_by | |
44 | assert @issue.add_watcher(@user) |
|
44 | assert @issue.add_watcher(@user) | |
45 | @issue.reload |
|
45 | @issue.reload | |
46 | assert @issue.watched_by?(@user) |
|
46 | assert @issue.watched_by?(@user) | |
47 | assert Issue.watched_by(@user).include?(@issue) |
|
47 | assert Issue.watched_by(@user).include?(@issue) | |
48 | end |
|
48 | end | |
49 |
|
49 | |||
50 | def test_watcher_users |
|
50 | def test_watcher_users | |
51 | watcher_users = Issue.find(2).watcher_users |
|
51 | watcher_users = Issue.find(2).watcher_users | |
52 | assert_kind_of Array, watcher_users |
|
52 | assert_kind_of Array, watcher_users | |
53 | assert_kind_of User, watcher_users.first |
|
53 | assert_kind_of User, watcher_users.first | |
54 | end |
|
54 | end | |
55 |
|
55 | |||
56 | def test_watcher_users_should_not_validate_user |
|
56 | def test_watcher_users_should_not_validate_user | |
57 | User.update_all("firstname = ''", "id=1") |
|
57 | User.update_all("firstname = ''", "id=1") | |
58 | @user.reload |
|
58 | @user.reload | |
59 | assert !@user.valid? |
|
59 | assert !@user.valid? | |
60 |
|
60 | |||
61 | issue = Issue.new(:project => Project.find(1), :tracker_id => 1, :subject => "test", :author => User.find(2)) |
|
61 | issue = Issue.new(:project => Project.find(1), :tracker_id => 1, :subject => "test", :author => User.find(2)) | |
62 | issue.watcher_users << @user |
|
62 | issue.watcher_users << @user | |
63 | issue.save! |
|
63 | issue.save! | |
64 | assert issue.watched_by?(@user) |
|
64 | assert issue.watched_by?(@user) | |
65 | end |
|
65 | end | |
66 |
|
66 | |||
67 | def test_watcher_user_ids |
|
67 | def test_watcher_user_ids | |
68 | assert_equal [1, 3], Issue.find(2).watcher_user_ids.sort |
|
68 | assert_equal [1, 3], Issue.find(2).watcher_user_ids.sort | |
69 | end |
|
69 | end | |
70 |
|
70 | |||
71 | def test_watcher_user_ids= |
|
71 | def test_watcher_user_ids= | |
72 | issue = Issue.new |
|
72 | issue = Issue.new | |
73 | issue.watcher_user_ids = ['1', '3'] |
|
73 | issue.watcher_user_ids = ['1', '3'] | |
74 | assert issue.watched_by?(User.find(1)) |
|
74 | assert issue.watched_by?(User.find(1)) | |
75 | end |
|
75 | end | |
76 |
|
76 | |||
77 | def test_addable_watcher_users |
|
77 | def test_addable_watcher_users | |
78 | addable_watcher_users = @issue.addable_watcher_users |
|
78 | addable_watcher_users = @issue.addable_watcher_users | |
79 | assert_kind_of Array, addable_watcher_users |
|
79 | assert_kind_of Array, addable_watcher_users | |
80 | assert_kind_of User, addable_watcher_users.first |
|
80 | assert_kind_of User, addable_watcher_users.first | |
81 | end |
|
81 | end | |
82 |
|
82 | |||
83 | def test_addable_watcher_users_should_not_include_user_that_cannot_view_the_object |
|
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) |
|
84 | issue = Issue.new(:project => Project.find(1), :is_private => true) | |
85 | assert_nil issue.addable_watcher_users.detect {|user| !issue.visible?(user)} |
|
85 | assert_nil issue.addable_watcher_users.detect {|user| !issue.visible?(user)} | |
86 | end |
|
86 | end | |
87 |
|
87 | |||
88 | def test_recipients |
|
88 | def test_recipients | |
89 | @issue.watchers.delete_all |
|
89 | @issue.watchers.delete_all | |
90 | @issue.reload |
|
90 | @issue.reload | |
91 |
|
91 | |||
92 | assert @issue.watcher_recipients.empty? |
|
92 | assert @issue.watcher_recipients.empty? | |
93 | assert @issue.add_watcher(@user) |
|
93 | assert @issue.add_watcher(@user) | |
94 |
|
94 | |||
@@ -102,41 +102,41 class WatcherTest < ActiveSupport::TestCase | |||||
102 | @issue.reload |
|
102 | @issue.reload | |
103 | assert !@issue.watcher_recipients.include?(@user.mail) |
|
103 | assert !@issue.watcher_recipients.include?(@user.mail) | |
104 | end |
|
104 | end | |
105 |
|
105 | |||
106 | def test_unwatch |
|
106 | def test_unwatch | |
107 | assert @issue.add_watcher(@user) |
|
107 | assert @issue.add_watcher(@user) | |
108 | @issue.reload |
|
108 | @issue.reload | |
109 |
assert_equal 1, @issue.remove_watcher(@user) |
|
109 | assert_equal 1, @issue.remove_watcher(@user) | |
110 | end |
|
110 | end | |
111 |
|
111 | |||
112 | def test_prune |
|
112 | def test_prune | |
113 | Watcher.delete_all("user_id = 9") |
|
113 | Watcher.delete_all("user_id = 9") | |
114 | user = User.find(9) |
|
114 | user = User.find(9) | |
115 |
|
115 | |||
116 | # public |
|
116 | # public | |
117 | Watcher.create!(:watchable => Issue.find(1), :user => user) |
|
117 | Watcher.create!(:watchable => Issue.find(1), :user => user) | |
118 | Watcher.create!(:watchable => Issue.find(2), :user => user) |
|
118 | Watcher.create!(:watchable => Issue.find(2), :user => user) | |
119 | Watcher.create!(:watchable => Message.find(1), :user => user) |
|
119 | Watcher.create!(:watchable => Message.find(1), :user => user) | |
120 | Watcher.create!(:watchable => Wiki.find(1), :user => user) |
|
120 | Watcher.create!(:watchable => Wiki.find(1), :user => user) | |
121 | Watcher.create!(:watchable => WikiPage.find(2), :user => user) |
|
121 | Watcher.create!(:watchable => WikiPage.find(2), :user => user) | |
122 |
|
122 | |||
123 | # private project (id: 2) |
|
123 | # private project (id: 2) | |
124 | Member.create!(:project => Project.find(2), :principal => user, :role_ids => [1]) |
|
124 | Member.create!(:project => Project.find(2), :principal => user, :role_ids => [1]) | |
125 | Watcher.create!(:watchable => Issue.find(4), :user => user) |
|
125 | Watcher.create!(:watchable => Issue.find(4), :user => user) | |
126 | Watcher.create!(:watchable => Message.find(7), :user => user) |
|
126 | Watcher.create!(:watchable => Message.find(7), :user => user) | |
127 | Watcher.create!(:watchable => Wiki.find(2), :user => user) |
|
127 | Watcher.create!(:watchable => Wiki.find(2), :user => user) | |
128 | Watcher.create!(:watchable => WikiPage.find(3), :user => user) |
|
128 | Watcher.create!(:watchable => WikiPage.find(3), :user => user) | |
129 |
|
129 | |||
130 | assert_no_difference 'Watcher.count' do |
|
130 | assert_no_difference 'Watcher.count' do | |
131 | Watcher.prune(:user => User.find(9)) |
|
131 | Watcher.prune(:user => User.find(9)) | |
132 | end |
|
132 | end | |
133 |
|
133 | |||
134 | Member.delete_all |
|
134 | Member.delete_all | |
135 |
|
135 | |||
136 | assert_difference 'Watcher.count', -4 do |
|
136 | assert_difference 'Watcher.count', -4 do | |
137 | Watcher.prune(:user => User.find(9)) |
|
137 | Watcher.prune(:user => User.find(9)) | |
138 | end |
|
138 | end | |
139 |
|
139 | |||
140 | assert Issue.find(1).watched_by?(user) |
|
140 | assert Issue.find(1).watched_by?(user) | |
141 | assert !Issue.find(4).watched_by?(user) |
|
141 | assert !Issue.find(4).watched_by?(user) | |
142 | end |
|
142 | end |
General Comments 0
You need to be logged in to leave comments.
Login now