##// END OF EJS Templates
Fixed that preview doesn't show notes when issue project is changed (#17959)....
Jean-Philippe Lang -
r13064:74cd72a2d969
parent child
Show More
@@ -1,53 +1,53
1 # Redmine - project management software
1 # Redmine - project management software
2 # Copyright (C) 2006-2014 Jean-Philippe Lang
2 # Copyright (C) 2006-2014 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.
17
17
18 class PreviewsController < ApplicationController
18 class PreviewsController < ApplicationController
19 before_filter :find_project, :find_attachments
19 before_filter :find_project, :find_attachments
20
20
21 def issue
21 def issue
22 @issue = @project.issues.find_by_id(params[:id]) unless params[:id].blank?
22 @issue = Issue.visible.find_by_id(params[:id]) unless params[:id].blank?
23 if @issue
23 if @issue
24 @description = params[:issue] && params[:issue][:description]
24 @description = params[:issue] && params[:issue][:description]
25 if @description && @description.gsub(/(\r?\n|\n\r?)/, "\n") == @issue.description.to_s.gsub(/(\r?\n|\n\r?)/, "\n")
25 if @description && @description.gsub(/(\r?\n|\n\r?)/, "\n") == @issue.description.to_s.gsub(/(\r?\n|\n\r?)/, "\n")
26 @description = nil
26 @description = nil
27 end
27 end
28 # params[:notes] is useful for preview of notes in issue history
28 # params[:notes] is useful for preview of notes in issue history
29 @notes = params[:notes] || (params[:issue] ? params[:issue][:notes] : nil)
29 @notes = params[:notes] || (params[:issue] ? params[:issue][:notes] : nil)
30 else
30 else
31 @description = (params[:issue] ? params[:issue][:description] : nil)
31 @description = (params[:issue] ? params[:issue][:description] : nil)
32 end
32 end
33 render :layout => false
33 render :layout => false
34 end
34 end
35
35
36 def news
36 def news
37 if params[:id].present? && news = News.visible.find_by_id(params[:id])
37 if params[:id].present? && news = News.visible.find_by_id(params[:id])
38 @previewed = news
38 @previewed = news
39 end
39 end
40 @text = (params[:news] ? params[:news][:description] : nil)
40 @text = (params[:news] ? params[:news][:description] : nil)
41 render :partial => 'common/preview'
41 render :partial => 'common/preview'
42 end
42 end
43
43
44 private
44 private
45
45
46 def find_project
46 def find_project
47 project_id = (params[:issue] && params[:issue][:project_id]) || params[:project_id]
47 project_id = (params[:issue] && params[:issue][:project_id]) || params[:project_id]
48 @project = Project.find(project_id)
48 @project = Project.visible.find(project_id)
49 rescue ActiveRecord::RecordNotFound
49 rescue ActiveRecord::RecordNotFound
50 render_404
50 render_404
51 end
51 end
52
52
53 end
53 end
@@ -1,89 +1,97
1 # Redmine - project management software
1 # Redmine - project management software
2 # Copyright (C) 2006-2014 Jean-Philippe Lang
2 # Copyright (C) 2006-2014 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.
17
17
18 require File.expand_path('../../test_helper', __FILE__)
18 require File.expand_path('../../test_helper', __FILE__)
19
19
20 class PreviewsControllerTest < ActionController::TestCase
20 class PreviewsControllerTest < ActionController::TestCase
21 fixtures :projects, :trackers, :issue_statuses, :issues,
21 fixtures :projects, :trackers, :issue_statuses, :issues,
22 :enumerations, :users, :issue_categories,
22 :enumerations, :users, :issue_categories,
23 :projects_trackers,
23 :projects_trackers,
24 :roles,
24 :roles,
25 :member_roles,
25 :member_roles,
26 :members,
26 :members,
27 :enabled_modules,
27 :enabled_modules,
28 :journals, :journal_details,
28 :journals, :journal_details,
29 :news
29 :news
30
30
31 def test_preview_new_issue
31 def test_preview_new_issue
32 @request.session[:user_id] = 2
32 @request.session[:user_id] = 2
33 post :issue, :project_id => '1', :issue => {:description => 'Foo'}
33 post :issue, :project_id => '1', :issue => {:description => 'Foo'}
34 assert_response :success
34 assert_response :success
35 assert_template 'previews/issue'
35 assert_template 'previews/issue'
36 assert_not_nil assigns(:description)
36 assert_not_nil assigns(:description)
37 end
37 end
38
38
39 def test_preview_issue_notes
39 def test_preview_issue_notes
40 @request.session[:user_id] = 2
40 @request.session[:user_id] = 2
41 post :issue, :project_id => '1', :id => 1,
41 post :issue, :project_id => '1', :id => 1,
42 :issue => {:description => Issue.find(1).description, :notes => 'Foo'}
42 :issue => {:description => Issue.find(1).description, :notes => 'Foo'}
43 assert_response :success
43 assert_response :success
44 assert_template 'previews/issue'
44 assert_template 'previews/issue'
45 assert_not_nil assigns(:notes)
45 assert_not_nil assigns(:notes)
46 end
46 end
47
47
48 def test_preview_journal_notes_for_update
48 def test_preview_journal_notes_for_update
49 @request.session[:user_id] = 2
49 @request.session[:user_id] = 2
50 post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
50 post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
51 assert_response :success
51 assert_response :success
52 assert_template 'previews/issue'
52 assert_template 'previews/issue'
53 assert_not_nil assigns(:notes)
53 assert_not_nil assigns(:notes)
54 assert_tag :p, :content => 'Foo'
54 assert_tag :p, :content => 'Foo'
55 end
55 end
56
56
57 def test_preview_issue_notes_should_support_links_to_existing_attachments
57 def test_preview_issue_notes_should_support_links_to_existing_attachments
58 Attachment.generate!(:container => Issue.find(1), :filename => 'foo.bar')
58 Attachment.generate!(:container => Issue.find(1), :filename => 'foo.bar')
59 @request.session[:user_id] = 2
59 @request.session[:user_id] = 2
60 post :issue, :project_id => '1', :id => 1, :notes => 'attachment:foo.bar'
60 post :issue, :project_id => '1', :id => 1, :notes => 'attachment:foo.bar'
61 assert_response :success
61 assert_response :success
62 assert_select 'a.attachment', :text => 'foo.bar'
62 assert_select 'a.attachment', :text => 'foo.bar'
63 end
63 end
64
64
65 def test_preview_issue_with_project_changed
66 @request.session[:user_id] = 2
67 post :issue, :project_id => '1', :id => 1, :issue => {:notes => 'notes', :project_id => 2}
68 assert_response :success
69 assert_not_nil assigns(:issue)
70 assert_not_nil assigns(:notes)
71 end
72
65 def test_preview_new_news
73 def test_preview_new_news
66 get :news, :project_id => 1,
74 get :news, :project_id => 1,
67 :news => {:title => '',
75 :news => {:title => '',
68 :description => 'News description',
76 :description => 'News description',
69 :summary => ''}
77 :summary => ''}
70 assert_response :success
78 assert_response :success
71 assert_template 'common/_preview'
79 assert_template 'common/_preview'
72 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
80 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
73 :content => /News description/
81 :content => /News description/
74 end
82 end
75
83
76 def test_existing_new_news
84 def test_existing_new_news
77 get :news, :project_id => 1, :id => 2,
85 get :news, :project_id => 1, :id => 2,
78 :news => {:title => '',
86 :news => {:title => '',
79 :description => 'News description',
87 :description => 'News description',
80 :summary => ''}
88 :summary => ''}
81 assert_response :success
89 assert_response :success
82 assert_template 'common/_preview'
90 assert_template 'common/_preview'
83 assert_equal News.find(2), assigns(:previewed)
91 assert_equal News.find(2), assigns(:previewed)
84 assert_not_nil assigns(:attachments)
92 assert_not_nil assigns(:attachments)
85
93
86 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
94 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
87 :content => /News description/
95 :content => /News description/
88 end
96 end
89 end
97 end
General Comments 0
You need to be logged in to leave comments. Login now