]> source.dussan.org Git - redmine.git/commitdiff
Rails3: test: scm: filesystem: use "repository_path_hash" for path param
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 23 Feb 2012 06:12:44 +0000 (06:12 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 23 Feb 2012 06:12:44 +0000 (06:12 +0000)
Rails3 new route format returns path param as string not array.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8925 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/repositories_filesystem_controller_test.rb

index fceb27cf32019bc2f0abbe4242425e5cad4e4445..dc9b98041c923170178629aabb1db6c5c05b000a 100644 (file)
@@ -68,7 +68,7 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
     end
 
     def test_show_no_extension
-      get :entry, :id => PRJ_ID, :path => ['test']
+      get :entry, :id => PRJ_ID, :path => repository_path_hash(['test'])[:param]
       assert_response :success
       assert_template 'entry'
       assert_tag :tag => 'th',
@@ -78,14 +78,16 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
     end
 
     def test_entry_download_no_extension
-      get :entry, :id => PRJ_ID, :path => ['test'], :format => 'raw'
+      get :entry, :id => PRJ_ID, :path => repository_path_hash(['test'])[:param],
+          :format => 'raw'
       assert_response :success
       assert_equal 'application/octet-stream', @response.content_type
     end
 
     def test_show_non_ascii_contents
       with_settings :repositories_encodings => 'UTF-8,EUC-JP' do
-        get :entry, :id => PRJ_ID, :path => ['japanese', 'euc-jp.txt']
+        get :entry, :id => PRJ_ID,
+            :path => repository_path_hash(['japanese', 'euc-jp.txt'])[:param]
         assert_response :success
         assert_template 'entry'
         assert_tag :tag => 'th',
@@ -109,7 +111,8 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
 
     def test_show_utf16
       with_settings :repositories_encodings => 'UTF-16' do
-        get :entry, :id => PRJ_ID, :path => ['japanese', 'utf-16.txt']
+        get :entry, :id => PRJ_ID,
+            :path => repository_path_hash(['japanese', 'utf-16.txt'])[:param]
         assert_response :success
         assert_tag :tag => 'th',
                    :content => '2',
@@ -120,7 +123,8 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
 
     def test_show_text_file_should_send_if_too_big
       with_settings :file_max_size_displayed => 1 do
-        get :entry, :id => PRJ_ID, :path => ['japanese', 'big-file.txt']
+        get :entry, :id => PRJ_ID,
+            :path => repository_path_hash(['japanese', 'big-file.txt'])[:param]
         assert_response :success
         assert_equal 'text/plain', @response.content_type
       end