To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 9b / 9b1f5b5bd07f84713d7062a0c2027d1968060778.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (2.4 KB)

1
# Redmine - project management software
2
# Copyright (C) 2006-2011  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 PreviewsControllerTest < ActionController::TestCase
21
  fixtures :projects, :trackers, :issue_statuses, :issues,
22
           :enumerations, :users, :issue_categories,
23
           :projects_trackers,
24
           :roles,
25
           :member_roles,
26
           :members,
27
           :enabled_modules,
28
           :workflows,
29
           :journals, :journal_details
30

    
31
  def test_preview_new_issue
32
    @request.session[:user_id] = 2
33
    post :issue, :project_id => '1', :issue => {:description => 'Foo'}
34
    assert_response :success
35
    assert_template 'preview'
36
    assert_not_nil assigns(:description)
37
  end
38

    
39
  def test_preview_issue_notes
40
    @request.session[:user_id] = 2
41
    post :issue, :project_id => '1', :id => 1,
42
         :issue => {:description => Issue.find(1).description},
43
         :notes => 'Foo'
44
    assert_response :success
45
    assert_template 'preview'
46
    assert_not_nil assigns(:notes)
47
  end
48

    
49
  def test_preview_journal_notes_for_update
50
    @request.session[:user_id] = 2
51
    post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
52
    assert_response :success
53
    assert_template 'preview'
54
    assert_not_nil assigns(:notes)
55
    assert_tag :p, :content => 'Foo'
56
  end
57

    
58
  def test_news
59
    get :news, :project_id => 1,
60
                  :news => {:title => '',
61
                            :description => 'News description',
62
                            :summary => ''}
63
    assert_response :success
64
    assert_template 'common/_preview'
65
    assert_tag :tag => 'fieldset', :attributes => { :class => 'preview' },
66
                                   :content => /News description/
67
  end
68
end