]> git.openstreetmap.org Git - rails.git/commitdiff
tests for diary rss feeds
authorŠtefan Baebler <stefan.baebler@gmail.com>
Wed, 19 Aug 2009 05:07:26 +0000 (05:07 +0000)
committerŠtefan Baebler <stefan.baebler@gmail.com>
Wed, 19 Aug 2009 05:07:26 +0000 (05:07 +0000)
test/fixtures/languages.yml
test/functional/diary_entry_controller_test.rb
test/unit/language_test.rb

index e992da23e124f060c06c4fe8bca5619ec76c767b..7f4a18af69494f3df2ba3c634285adff85ccc5bb 100644 (file)
@@ -9,3 +9,8 @@ de:
   code: de
   english_name: German
   native_name: Deutsch
+
+sl:
+  code: sl
+  english_name: Slovenian
+  native_name: slovenščina
index d060af4167edecce21d5d91512a2efb5712a9a9a..1f3492ae98a1236e4d1e7f0cb474f352fa9400d9 100644 (file)
@@ -176,9 +176,44 @@ class DiaryEntryControllerTest < ActionController::TestCase
   
   def test_rss
     get :rss
-    assert_response :success
+    assert_response :success, "Should be able to get a diary RSS"
+    assert_select "rss:root", :count => 1 do
+      assert_select "channel", :count => 1 do
+        assert_select "channel>title", :count => 1
+        assert_select "image", :count => 1
+        assert_select "channel>item", :count => 2
+      end
+    end
+  end
+  
+  def test_rss_language
+    get :rss, {:language => diary_entries(:normal_user_entry_1).language_code}
+    assert_response :success, "Should be able to get a specific language diary RSS"
+    assert_select "rss>channel>item", :count => 1 #, "Diary entries should be filtered by language"
+  end
+  
+#  def test_rss_nonexisting_language
+#    get :rss, {:language => 'xx'}
+#    assert_response :not_found, "Should not be able to get a nonexisting language diary RSS"
+#  end
+
+  def test_rss_language_with_no_entries
+    get :rss, {:language => 'sl'}
+    assert_response :success, "Should be able to get a specific language diary RSS"
+    assert_select "rss>channel>item", :count => 0 #, "Diary entries should be filtered by language"
+  end
+
+  def test_rss_user
+    get :rss, {:display_name => users(:normal_user).display_name}
+    assert_response :success, "Should be able to get a specific users diary RSS"
+    assert_select "rss>channel>item", :count => 2 #, "Diary entries should be filtered by user"
   end
   
+  def test_rss_nonexisting_user
+    get :rss, {:display_name => 'fakeUsername76543'}
+    assert_response :not_found, "Should not be able to get a nonexisting users diary RSS"
+  end
+
   def test_viewing_diary_entry
     get :view, {:display_name => users(:normal_user).display_name, :id => diary_entries(:normal_user_entry_1).id}
     assert_response :success
index da30044594899f248b704e644eb96c596bb1a44c..a171c1e2e1fae307edf7d1a53b561687b718e6a7 100644 (file)
@@ -2,6 +2,6 @@ require File.dirname(__FILE__) + '/../test_helper'
 
 class LanguageTest < ActiveSupport::TestCase
   test "language count" do
-    assert_equal 2, Language.count
+    assert_equal 3, Language.count
   end
 end