Mercurial > hg > soundsoftware-site
comparison test/functional/timelog_custom_fields_visibility_test.rb @ 1464:261b3d9a4903 redmine-2.4
Update to Redmine 2.4 branch rev 12663
author | Chris Cannam |
---|---|
date | Tue, 14 Jan 2014 14:37:42 +0000 |
parents | |
children | e248c7af89ec |
comparison
equal
deleted
inserted
replaced
1296:038ba2d95de8 | 1464:261b3d9a4903 |
---|---|
1 # Redmine - project management software | |
2 # Copyright (C) 2006-2013 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 TimelogCustomFieldsVisibilityTest < ActionController::TestCase | |
21 tests TimelogController | |
22 fixtures :projects, | |
23 :users, | |
24 :roles, | |
25 :members, | |
26 :member_roles, | |
27 :issue_statuses, | |
28 :trackers, | |
29 :projects_trackers, | |
30 :enabled_modules, | |
31 :enumerations, | |
32 :workflows | |
33 | |
34 def setup | |
35 field_attributes = {:field_format => 'string', :is_for_all => true, :is_filter => true, :trackers => Tracker.all} | |
36 @fields = [] | |
37 @fields << (@field1 = IssueCustomField.create!(field_attributes.merge(:name => 'Field 1', :visible => true))) | |
38 @fields << (@field2 = IssueCustomField.create!(field_attributes.merge(:name => 'Field 2', :visible => false, :role_ids => [1, 2]))) | |
39 @fields << (@field3 = IssueCustomField.create!(field_attributes.merge(:name => 'Field 3', :visible => false, :role_ids => [1, 3]))) | |
40 @issue = Issue.generate!( | |
41 :author_id => 1, | |
42 :project_id => 1, | |
43 :tracker_id => 1, | |
44 :custom_field_values => {@field1.id => 'Value0', @field2.id => 'Value1', @field3.id => 'Value2'} | |
45 ) | |
46 TimeEntry.generate!(:issue => @issue) | |
47 | |
48 @user_with_role_on_other_project = User.generate! | |
49 User.add_to_project(@user_with_role_on_other_project, Project.find(2), Role.find(3)) | |
50 | |
51 @users_to_test = { | |
52 User.find(1) => [@field1, @field2, @field3], | |
53 User.find(3) => [@field1, @field2], | |
54 @user_with_role_on_other_project => [@field1], # should see field1 only on Project 1 | |
55 User.generate! => [@field1], | |
56 User.anonymous => [@field1] | |
57 } | |
58 | |
59 Member.where(:project_id => 1).each do |member| | |
60 member.destroy unless @users_to_test.keys.include?(member.principal) | |
61 end | |
62 end | |
63 | |
64 def test_index_should_show_visible_custom_fields_only | |
65 @users_to_test.each do |user, fields| | |
66 @request.session[:user_id] = user.id | |
67 get :index, :project_id => 1, :issue_id => @issue.id, :c => (['hours'] + @fields.map{|f| "issue.cf_#{f.id}"}) | |
68 @fields.each_with_index do |field, i| | |
69 if fields.include?(field) | |
70 assert_select 'td', {:text => "Value#{i}", :count => 1}, "User #{user.id} was not able to view #{field.name}" | |
71 else | |
72 assert_select 'td', {:text => "Value#{i}", :count => 0}, "User #{user.id} was able to view #{field.name}" | |
73 end | |
74 end | |
75 end | |
76 end | |
77 | |
78 def test_index_as_csv_should_show_visible_custom_fields_only | |
79 @users_to_test.each do |user, fields| | |
80 @request.session[:user_id] = user.id | |
81 get :index, :project_id => 1, :issue_id => @issue.id, :c => (['hours'] + @fields.map{|f| "issue.cf_#{f.id}"}), :format => 'csv' | |
82 @fields.each_with_index do |field, i| | |
83 if fields.include?(field) | |
84 assert_include "Value#{i}", response.body, "User #{user.id} was not able to view #{field.name} in CSV" | |
85 else | |
86 assert_not_include "Value#{i}", response.body, "User #{user.id} was able to view #{field.name} in CSV" | |
87 end | |
88 end | |
89 end | |
90 end | |
91 | |
92 def test_index_with_partial_custom_field_visibility_should_show_visible_custom_fields_only | |
93 Issue.delete_all | |
94 TimeEntry.delete_all | |
95 p1 = Project.generate! | |
96 p2 = Project.generate! | |
97 user = User.generate! | |
98 User.add_to_project(user, p1, Role.find_all_by_id(1,3)) | |
99 User.add_to_project(user, p2, Role.find_all_by_id(3)) | |
100 TimeEntry.generate!(:issue => Issue.generate!(:project => p1, :tracker_id => 1, :custom_field_values => {@field2.id => 'ValueA'})) | |
101 TimeEntry.generate!(:issue => Issue.generate!(:project => p2, :tracker_id => 1, :custom_field_values => {@field2.id => 'ValueB'})) | |
102 TimeEntry.generate!(:issue => Issue.generate!(:project => p1, :tracker_id => 1, :custom_field_values => {@field2.id => 'ValueC'})) | |
103 | |
104 @request.session[:user_id] = user.id | |
105 get :index, :c => ["hours", "issue.cf_#{@field2.id}"] | |
106 assert_select 'td', :text => 'ValueA' | |
107 assert_select 'td', :text => 'ValueB', :count => 0 | |
108 assert_select 'td', :text => 'ValueC' | |
109 | |
110 get :index, :set_filter => '1', "issue.cf_#{@field2.id}" => '*' | |
111 assert_equal %w(ValueA ValueC), assigns(:entries).map{|i| i.issue.custom_field_value(@field2)}.sort | |
112 end | |
113 end |