@@ -1,54 +1,54 | |||||
1 | # Redmine - project management software |
|
1 | # Redmine - project management software | |
2 | # Copyright (C) 2006-2012 Jean-Philippe Lang |
|
2 | # Copyright (C) 2006-2012 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 |
|
19 | before_filter :find_project | |
20 |
|
20 | |||
21 | def issue |
|
21 | def issue | |
22 | @issue = @project.issues.find_by_id(params[:id]) unless params[:id].blank? |
|
22 | @issue = @project.issues.find_by_id(params[:id]) unless params[:id].blank? | |
23 | if @issue |
|
23 | if @issue | |
24 | @attachements = @issue.attachments |
|
24 | @attachements = @issue.attachments | |
25 | @description = params[:issue] && params[:issue][:description] |
|
25 | @description = params[:issue] && params[:issue][:description] | |
26 | if @description && @description.gsub(/(\r?\n|\n\r?)/, "\n") == @issue.description.to_s.gsub(/(\r?\n|\n\r?)/, "\n") |
|
26 | if @description && @description.gsub(/(\r?\n|\n\r?)/, "\n") == @issue.description.to_s.gsub(/(\r?\n|\n\r?)/, "\n") | |
27 | @description = nil |
|
27 | @description = nil | |
28 | end |
|
28 | end | |
29 | @notes = params[:notes] |
|
29 | @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 | @attachments = news.attachments |
|
39 | @attachments = news.attachments | |
40 | end |
|
40 | end | |
41 | @text = (params[:news] ? params[:news][:description] : nil) |
|
41 | @text = (params[:news] ? params[:news][:description] : nil) | |
42 | render :partial => 'common/preview' |
|
42 | render :partial => 'common/preview' | |
43 | end |
|
43 | end | |
44 |
|
44 | |||
45 | private |
|
45 | private | |
46 |
|
46 | |||
47 | def find_project |
|
47 | def find_project | |
48 | project_id = (params[:issue] && params[:issue][:project_id]) || params[:project_id] |
|
48 | project_id = (params[:issue] && params[:issue][:project_id]) || params[:project_id] | |
49 | @project = Project.find(project_id) |
|
49 | @project = Project.find(project_id) | |
50 | rescue ActiveRecord::RecordNotFound |
|
50 | rescue ActiveRecord::RecordNotFound | |
51 | render_404 |
|
51 | render_404 | |
52 | end |
|
52 | end | |
53 |
|
53 | |||
54 | end |
|
54 | end |
@@ -1,83 +1,82 | |||||
1 | # Redmine - project management software |
|
1 | # Redmine - project management software | |
2 | # Copyright (C) 2006-2012 Jean-Philippe Lang |
|
2 | # Copyright (C) 2006-2012 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 | :workflows, |
|
28 | :workflows, | |
29 | :journals, :journal_details, |
|
29 | :journals, :journal_details, | |
30 | :news |
|
30 | :news | |
31 |
|
31 | |||
32 | def test_preview_new_issue |
|
32 | def test_preview_new_issue | |
33 | @request.session[:user_id] = 2 |
|
33 | @request.session[:user_id] = 2 | |
34 | post :issue, :project_id => '1', :issue => {:description => 'Foo'} |
|
34 | post :issue, :project_id => '1', :issue => {:description => 'Foo'} | |
35 | assert_response :success |
|
35 | assert_response :success | |
36 | assert_template 'preview' |
|
36 | assert_template 'preview' | |
37 | assert_not_nil assigns(:description) |
|
37 | assert_not_nil assigns(:description) | |
38 | end |
|
38 | end | |
39 |
|
39 | |||
40 | def test_preview_issue_notes |
|
40 | def test_preview_issue_notes | |
41 | @request.session[:user_id] = 2 |
|
41 | @request.session[:user_id] = 2 | |
42 | post :issue, :project_id => '1', :id => 1, |
|
42 | post :issue, :project_id => '1', :id => 1, | |
43 |
:issue => {:description => Issue.find(1).description} |
|
43 | :issue => {:description => Issue.find(1).description, :notes => 'Foo'} | |
44 | :notes => 'Foo' |
|
|||
45 | assert_response :success |
|
44 | assert_response :success | |
46 | assert_template 'preview' |
|
45 | assert_template 'preview' | |
47 | assert_not_nil assigns(:notes) |
|
46 | assert_not_nil assigns(:notes) | |
48 | end |
|
47 | end | |
49 |
|
48 | |||
50 | def test_preview_journal_notes_for_update |
|
49 | def test_preview_journal_notes_for_update | |
51 | @request.session[:user_id] = 2 |
|
50 | @request.session[:user_id] = 2 | |
52 | post :issue, :project_id => '1', :id => 1, :notes => 'Foo' |
|
51 | post :issue, :project_id => '1', :id => 1, :issue => {:notes => 'Foo'} | |
53 | assert_response :success |
|
52 | assert_response :success | |
54 | assert_template 'preview' |
|
53 | assert_template 'preview' | |
55 | assert_not_nil assigns(:notes) |
|
54 | assert_not_nil assigns(:notes) | |
56 | assert_tag :p, :content => 'Foo' |
|
55 | assert_tag :p, :content => 'Foo' | |
57 | end |
|
56 | end | |
58 |
|
57 | |||
59 | def test_preview_new_news |
|
58 | def test_preview_new_news | |
60 | get :news, :project_id => 1, |
|
59 | get :news, :project_id => 1, | |
61 | :news => {:title => '', |
|
60 | :news => {:title => '', | |
62 | :description => 'News description', |
|
61 | :description => 'News description', | |
63 | :summary => ''} |
|
62 | :summary => ''} | |
64 | assert_response :success |
|
63 | assert_response :success | |
65 | assert_template 'common/_preview' |
|
64 | assert_template 'common/_preview' | |
66 | assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' }, |
|
65 | assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' }, | |
67 | :content => /News description/ |
|
66 | :content => /News description/ | |
68 | end |
|
67 | end | |
69 |
|
68 | |||
70 | def test_existing_new_news |
|
69 | def test_existing_new_news | |
71 | get :news, :project_id => 1, :id => 2, |
|
70 | get :news, :project_id => 1, :id => 2, | |
72 | :news => {:title => '', |
|
71 | :news => {:title => '', | |
73 | :description => 'News description', |
|
72 | :description => 'News description', | |
74 | :summary => ''} |
|
73 | :summary => ''} | |
75 | assert_response :success |
|
74 | assert_response :success | |
76 | assert_template 'common/_preview' |
|
75 | assert_template 'common/_preview' | |
77 | assert_equal News.find(2), assigns(:previewed) |
|
76 | assert_equal News.find(2), assigns(:previewed) | |
78 | assert_not_nil assigns(:attachments) |
|
77 | assert_not_nil assigns(:attachments) | |
79 |
|
78 | |||
80 | assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' }, |
|
79 | assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' }, | |
81 | :content => /News description/ |
|
80 | :content => /News description/ | |
82 | end |
|
81 | end | |
83 | end |
|
82 | end |
General Comments 0
You need to be logged in to leave comments.
Login now