]> source.dussan.org Git - redmine.git/commitdiff
Adds functional tests for ActivitiesController.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 29 Nov 2011 19:57:07 +0000 (19:57 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 29 Nov 2011 19:57:07 +0000 (19:57 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7986 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/activities_controller_test.rb

index 2da92210bec18a1c6b9ea773fd7422881ca7a9e7..f9d06132580b4a4fbd50202d7069a75867770d63 100644 (file)
@@ -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