##// END OF EJS Templates
Merged r10975 from trunk (#12566)....
Jean-Philippe Lang -
r10773:3717fdfa7941
parent child
Show More
@@ -1,54 +1,55
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2012 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class PreviewsController < ApplicationController
19 19 before_filter :find_project
20 20
21 21 def issue
22 22 @issue = @project.issues.find_by_id(params[:id]) unless params[:id].blank?
23 23 if @issue
24 24 @attachements = @issue.attachments
25 25 @description = params[:issue] && params[:issue][:description]
26 26 if @description && @description.gsub(/(\r?\n|\n\r?)/, "\n") == @issue.description.to_s.gsub(/(\r?\n|\n\r?)/, "\n")
27 27 @description = nil
28 28 end
29 @notes = (params[:issue] ? params[:issue][:notes] : nil)
29 # params[:notes] is useful for preview of notes in issue history
30 @notes = params[:notes] || (params[:issue] ? params[:issue][:notes] : nil)
30 31 else
31 32 @description = (params[:issue] ? params[:issue][:description] : nil)
32 33 end
33 34 render :layout => false
34 35 end
35 36
36 37 def news
37 38 if params[:id].present? && news = News.visible.find_by_id(params[:id])
38 39 @previewed = news
39 40 @attachments = news.attachments
40 41 end
41 42 @text = (params[:news] ? params[:news][:description] : nil)
42 43 render :partial => 'common/preview'
43 44 end
44 45
45 46 private
46 47
47 48 def find_project
48 49 project_id = (params[:issue] && params[:issue][:project_id]) || params[:project_id]
49 50 @project = Project.find(project_id)
50 51 rescue ActiveRecord::RecordNotFound
51 52 render_404
52 53 end
53 54
54 55 end
@@ -1,82 +1,82
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2012 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require File.expand_path('../../test_helper', __FILE__)
19 19
20 20 class PreviewsControllerTest < ActionController::TestCase
21 21 fixtures :projects, :trackers, :issue_statuses, :issues,
22 22 :enumerations, :users, :issue_categories,
23 23 :projects_trackers,
24 24 :roles,
25 25 :member_roles,
26 26 :members,
27 27 :enabled_modules,
28 28 :workflows,
29 29 :journals, :journal_details,
30 30 :news
31 31
32 32 def test_preview_new_issue
33 33 @request.session[:user_id] = 2
34 34 post :issue, :project_id => '1', :issue => {:description => 'Foo'}
35 35 assert_response :success
36 36 assert_template 'preview'
37 37 assert_not_nil assigns(:description)
38 38 end
39 39
40 40 def test_preview_issue_notes
41 41 @request.session[:user_id] = 2
42 42 post :issue, :project_id => '1', :id => 1,
43 43 :issue => {:description => Issue.find(1).description, :notes => 'Foo'}
44 44 assert_response :success
45 45 assert_template 'preview'
46 46 assert_not_nil assigns(:notes)
47 47 end
48 48
49 49 def test_preview_journal_notes_for_update
50 50 @request.session[:user_id] = 2
51 post :issue, :project_id => '1', :id => 1, :issue => {:notes => 'Foo'}
51 post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
52 52 assert_response :success
53 53 assert_template 'preview'
54 54 assert_not_nil assigns(:notes)
55 55 assert_tag :p, :content => 'Foo'
56 56 end
57 57
58 58 def test_preview_new_news
59 59 get :news, :project_id => 1,
60 60 :news => {:title => '',
61 61 :description => 'News description',
62 62 :summary => ''}
63 63 assert_response :success
64 64 assert_template 'common/_preview'
65 65 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
66 66 :content => /News description/
67 67 end
68 68
69 69 def test_existing_new_news
70 70 get :news, :project_id => 1, :id => 2,
71 71 :news => {:title => '',
72 72 :description => 'News description',
73 73 :summary => ''}
74 74 assert_response :success
75 75 assert_template 'common/_preview'
76 76 assert_equal News.find(2), assigns(:previewed)
77 77 assert_not_nil assigns(:attachments)
78 78
79 79 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
80 80 :content => /News description/
81 81 end
82 82 end
General Comments 0
You need to be logged in to leave comments. Login now