aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-11 07:47:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-11 07:47:44 +0000
commitda47bbd1db646794fba94449d4d226d35ec2b2ff (patch)
tree4438039d7593722c3312dbe5bbf347d6b6d82a08 /test/ruby
parent073e6ccc7ba29e1391865107f105b8069352ee52 (diff)
downloadruby-da47bbd1db646794fba94449d4d226d35ec2b2ff.tar.gz
* hash.c (ruby_setenv): raise if putenv and SetEnvironmentVariable
failed, because of the restriction of the size on Windows. based on a patch from Peter Weldon at [ruby-core:32304]. fix: Bug#3812, [ruby-core:32250] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29225 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_env.rb12
-rw-r--r--test/ruby/test_require.rb15
2 files changed, 22 insertions, 5 deletions
diff --git a/test/ruby/test_env.rb b/test/ruby/test_env.rb
index 785b6bb067..97bf8fa476 100644
--- a/test/ruby/test_env.rb
+++ b/test/ruby/test_env.rb
@@ -374,4 +374,16 @@ class TestEnv < Test::Unit::TestCase
ENV.update({"baz"=>"quux","a"=>"b"}) {|k, v1, v2| v1 ? k + "_" + v1 + "_" + v2 : v2 }
check(ENV.to_hash.to_a, [%w(foo bar), %w(baz baz_qux_quux), %w(a b)])
end
+
+ def test_huge_value
+ huge_value = "bar" * 40960
+ ENV["foo"] = "bar"
+ if /mswin|mingw/ =~ RUBY_PLATFORM
+ assert_raise(Errno::EINVAL) { ENV["foo"] = huge_value }
+ assert_equal("bar", ENV["foo"])
+ else
+ assert_nothing_raised { ENV["foo"] = huge_value }
+ assert_equal(huge_value, ENV["foo"])
+ end
+ end
end
diff --git a/test/ruby/test_require.rb b/test/ruby/test_require.rb
index f87de90ab9..aef7f7b527 100644
--- a/test/ruby/test_require.rb
+++ b/test/ruby/test_require.rb
@@ -29,7 +29,7 @@ class TestRequire < Test::Unit::TestCase
INPUT
begin
- assert_in_out_err(["-S", "foo/" * 10000 + "foo"], "") do |r, e|
+ assert_in_out_err(["-S", "foo/" * 2500 + "foo"], "") do |r, e|
assert_equal([], r)
assert_operator(2, :<=, e.size)
assert_equal("openpath: pathname too long (ignored)", e.first)
@@ -48,19 +48,24 @@ class TestRequire < Test::Unit::TestCase
def test_require_path_home
env_rubypath, env_home = ENV["RUBYPATH"], ENV["HOME"]
+ pathname_too_long = /pathname too long \(ignored\).*\(LoadError\)/m
ENV["RUBYPATH"] = "~"
- ENV["HOME"] = "/foo" * 10000
- assert_in_out_err(%w(-S test_ruby_test_require), "", [], /^.+$/)
+ ENV["HOME"] = "/foo" * 2500
+ assert_in_out_err(%w(-S test_ruby_test_require), "", [], pathname_too_long)
- ENV["RUBYPATH"] = "~" + "/foo" * 10000
+ ENV["RUBYPATH"] = "~" + "/foo" * 2500
ENV["HOME"] = "/foo"
- assert_in_out_err(%w(-S test_ruby_test_require), "", [], /^.+$/)
+ assert_in_out_err(%w(-S test_ruby_test_require), "", [], pathname_too_long)
t = Tempfile.new(["test_ruby_test_require", ".rb"])
t.puts "p :ok"
t.close
+
ENV["RUBYPATH"] = "~"
+ ENV["HOME"] = t.path
+ assert_in_out_err(%w(-S test_ruby_test_require), "", [], /\(LoadError\)/)
+
ENV["HOME"], name = File.split(t.path)
assert_in_out_err(["-S", name], "", %w(:ok), [])