From d331a2812f3ee81b8f03377e6612616ddb4080b9 Mon Sep 17 00:00:00 2001 From: yugui Date: Fri, 27 Nov 2009 02:54:46 +0000 Subject: merges r25017 from trunk into ruby_1_9_1 and a test for it. -- * ossl_config.c (ossl_config_add_value_m, ossl_config_set_section): Check if frozen (or untrusted for $SECURE >= 4) [ruby-core:18377] -- * test/openssl/test_config.rb (OpenSSL::TestConfig): new test case. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@25945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/openssl/test_config.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/openssl/test_config.rb (limited to 'test') diff --git a/test/openssl/test_config.rb b/test/openssl/test_config.rb new file mode 100644 index 000000000..9578bb254 --- /dev/null +++ b/test/openssl/test_config.rb @@ -0,0 +1,15 @@ +require 'openssl' +require "test/unit" + +class OpenSSL::TestConfig < Test::Unit::TestCase + def test_freeze + c = OpenSSL::Config.new + c['foo'] = [['key', 'value']] + c.freeze + + # [ruby-core:18377] + assert_raise(RuntimeError, /frozen/) do + c['foo'] = [['key', 'wrong']] + end + end +end -- cgit