##// END OF EJS Templates
Rails4: fix PreviewsControllerTest assert_template failures...
Toshi MARUYAMA -
r12604:49e0489bc8f6
parent child
Show More
@@ -1,89 +1,89
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2014 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 :journals, :journal_details,
29 29 :news
30 30
31 31 def test_preview_new_issue
32 32 @request.session[:user_id] = 2
33 33 post :issue, :project_id => '1', :issue => {:description => 'Foo'}
34 34 assert_response :success
35 assert_template 'preview'
35 assert_template 'previews/issue'
36 36 assert_not_nil assigns(:description)
37 37 end
38 38
39 39 def test_preview_issue_notes
40 40 @request.session[:user_id] = 2
41 41 post :issue, :project_id => '1', :id => 1,
42 42 :issue => {:description => Issue.find(1).description, :notes => 'Foo'}
43 43 assert_response :success
44 assert_template 'preview'
44 assert_template 'previews/issue'
45 45 assert_not_nil assigns(:notes)
46 46 end
47 47
48 48 def test_preview_journal_notes_for_update
49 49 @request.session[:user_id] = 2
50 50 post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
51 51 assert_response :success
52 assert_template 'preview'
52 assert_template 'previews/issue'
53 53 assert_not_nil assigns(:notes)
54 54 assert_tag :p, :content => 'Foo'
55 55 end
56 56
57 57 def test_preview_issue_notes_should_support_links_to_existing_attachments
58 58 Attachment.generate!(:container => Issue.find(1), :filename => 'foo.bar')
59 59 @request.session[:user_id] = 2
60 60 post :issue, :project_id => '1', :id => 1, :notes => 'attachment:foo.bar'
61 61 assert_response :success
62 62 assert_select 'a.attachment', :text => 'foo.bar'
63 63 end
64 64
65 65 def test_preview_new_news
66 66 get :news, :project_id => 1,
67 67 :news => {:title => '',
68 68 :description => 'News description',
69 69 :summary => ''}
70 70 assert_response :success
71 71 assert_template 'common/_preview'
72 72 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
73 73 :content => /News description/
74 74 end
75 75
76 76 def test_existing_new_news
77 77 get :news, :project_id => 1, :id => 2,
78 78 :news => {:title => '',
79 79 :description => 'News description',
80 80 :summary => ''}
81 81 assert_response :success
82 82 assert_template 'common/_preview'
83 83 assert_equal News.find(2), assigns(:previewed)
84 84 assert_not_nil assigns(:attachments)
85 85
86 86 assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
87 87 :content => /News description/
88 88 end
89 89 end
General Comments 0
You need to be logged in to leave comments. Login now