ProjectsController#list_issues, #export_issues_csv and #export_issues_pdf merged...
[gitredmine.git] / test / functional / feeds_controller_test.rb
blobc41fa2c60d129ca3ce19519630561de6cf7bf318
1 # redMine - project management software
2 # Copyright (C) 2006-2007  Jean-Philippe Lang
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.
18 require File.dirname(__FILE__) + '/../test_helper'
19 require 'feeds_controller'
21 # Re-raise errors caught by the controller.
22 class FeedsController; def rescue_action(e) raise e end; end
24 class FeedsControllerTest < Test::Unit::TestCase
25   fixtures :projects, :users, :members, :roles
27   def setup
28     @controller = FeedsController.new
29     @request    = ActionController::TestRequest.new
30     @response   = ActionController::TestResponse.new
31   end
33   def test_news
34     get :news
35     assert_response :success
36     assert_template 'news'
37     assert_not_nil assigns(:news)
38   end
39   
40   def test_issues
41     get :issues
42     assert_response :success
43     assert_template 'issues'
44     assert_not_nil assigns(:issues)
45   end
46   
47   def test_history
48     get :history
49     assert_response :success
50     assert_template 'history'
51     assert_not_nil assigns(:journals)
52   end
53   
54   def test_project_privacy
55     get :news, :project_id => 2
56     assert_response 403
57   end
58   
59   def test_rss_key
60     user = User.find(2)
61     key = user.rss_key
62     
63     get :news, :project_id => 2, :key => key
64     assert_response :success
65   end
66 end