From: Jean-Philippe Lang Date: Tue, 29 Nov 2011 19:57:07 +0000 (+0000) Subject: Adds functional tests for ActivitiesController. X-Git-Tag: 1.3.0~26 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=dd501b1ba30a90b78dbf8674ca541b3f306bc5c5;p=redmine.git Adds functional tests for ActivitiesController. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7986 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/activities_controller_test.rb b/test/functional/activities_controller_test.rb index 2da92210b..f9d061325 100644 --- a/test/functional/activities_controller_test.rb +++ b/test/functional/activities_controller_test.rb @@ -32,6 +32,11 @@ class ActivitiesControllerTest < ActionController::TestCase } end + def test_project_index_with_invalid_project_id_should_respond_404 + get :index, :id => 299 + assert_response 404 + end + def test_previous_project_index get :index, :id => 1, :from => 3.days.ago.to_date assert_response :success @@ -86,6 +91,11 @@ class ActivitiesControllerTest < ActionController::TestCase } end + def test_user_index_with_invalid_user_id_should_respond_404 + get :index, :user_id => 299 + assert_response 404 + end + def test_index_atom_feed get :index, :format => 'atom' assert_response :success @@ -94,4 +104,11 @@ class ActivitiesControllerTest < ActionController::TestCase :tag => 'link', :attributes => {:href => 'http://test.host/issues/11'}} end + + def test_index_atom_feed_with_one_item_type + get :index, :format => 'atom', :show_issues => '1' + assert_response :success + assert_template 'common/feed.atom' + assert_tag :tag => 'title', :content => /Issues/ + end end