mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 d68a6b3ebe
			
		
	
	
		d68a6b3ebe
		
	
	
	
	
		
			
			Fix platform-dependent or fragile test cases added by r59734. This is a
combined patch of the three commits below:
	4fc17977350a test/test_fips: skip if setting FIPS mode fails
	b25179fbeebf test/test_asn1: fix possible failure in test_utctime
	8ed81ff4b0a8 test/test_pair: fix test_write_nonblock{,_no_exceptions}
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59751 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
	
			
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			804 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			804 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: false
 | |
| require_relative 'utils'
 | |
| 
 | |
| if defined?(OpenSSL)
 | |
| 
 | |
| class OpenSSL::TestFIPS < OpenSSL::TestCase
 | |
|   def test_fips_mode_is_reentrant
 | |
|     OpenSSL.fips_mode = false
 | |
|     OpenSSL.fips_mode = false
 | |
|   end
 | |
| 
 | |
|   def test_fips_mode_get
 | |
|     return unless OpenSSL::OPENSSL_FIPS
 | |
|     assert_separately([{ "OSSL_MDEBUG" => nil }, "-ropenssl"], <<~"end;")
 | |
|       require #{__FILE__.dump}
 | |
| 
 | |
|       begin
 | |
|         OpenSSL.fips_mode = true
 | |
|         assert OpenSSL.fips_mode == true, ".fips_mode returns true when .fips_mode=true"
 | |
| 
 | |
|         OpenSSL.fips_mode = false
 | |
|         assert OpenSSL.fips_mode == false, ".fips_mode returns false when .fips_mode=false"
 | |
|       rescue OpenSSL::OpenSSLError
 | |
|         pend "Could not set FIPS mode (OpenSSL::OpenSSLError: \#$!); skipping"
 | |
|       end
 | |
|     end;
 | |
|   end
 | |
| end
 | |
| 
 | |
| end
 |