From b111b41d131fd5d90d88052bb6e95676c29a9d8d Mon Sep 17 00:00:00 2001 From: Guillermo Iguaran Date: Sat, 8 Oct 2011 15:24:52 -0500 Subject: Test utf8 assets filenames with request instead of manifest lookup --- railties/test/application/assets_test.rb | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'railties/test/application/assets_test.rb') diff --git a/railties/test/application/assets_test.rb b/railties/test/application/assets_test.rb index 3a8add3d3e..2c9ebbf327 100644 --- a/railties/test/application/assets_test.rb +++ b/railties/test/application/assets_test.rb @@ -289,20 +289,16 @@ module ApplicationTests end test "precompile should handle utf8 filenames" do - if `uname` =~ /Darwin/ - skip 'Asset lookup with Unicode filenames is a problematic due to different normalization forms. Mac uses NKD for filenames; Windows and Linux use NFC. So your asset lookups may mysteriously fail. Sprockets should handle these platform issues transparently.' - end - filename = "レイルズ.png" app_file "app/assets/images/#{filename}", "not a image really" add_to_config "config.assets.precompile = [ /\.png$$/, /application.(css|js)$/ ]" precompile! - assert File.exists?("#{app_path}/public/assets/#{filename}") + require "#{app_path}/config/environment" - manifest = "#{app_path}/public/assets/manifest.yml" - assets = YAML.load_file(manifest) - assert_equal filename, assets[filename], assets.inspect + get "/assets/#{URI.escape(filename)}" + assert_match "not a image really", last_response.body + assert File.exists?("#{app_path}/public/assets/#{filename}") end test "assets are cleaned up properly" do -- cgit v1.2.3