mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'test/unit'
 | |
| require 'drb'
 | |
| require 'drb/timeridconv'
 | |
| require 'drb/weakidconv'
 | |
| 
 | |
| module DRbObjectTest
 | |
|   class Foo
 | |
|     def initialize
 | |
|       @foo = 'foo'
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def teardown
 | |
|     DRb.stop_service
 | |
|     DRb::DRbConn.stop_pool
 | |
|   end
 | |
| 
 | |
|   def drb_eq(obj)
 | |
|     proxy = DRbObject.new(obj)
 | |
|     assert_equal(obj, DRb.to_obj(proxy.__drbref))
 | |
|   end
 | |
| 
 | |
|   def test_DRbObject_id_dereference
 | |
|     drb_eq(Foo.new)
 | |
|     drb_eq(Foo)
 | |
|     drb_eq(File)
 | |
|     drb_eq(Enumerable)
 | |
|     drb_eq(nil)
 | |
|     drb_eq(1)
 | |
|     drb_eq($stdout)
 | |
|     drb_eq([])
 | |
|   end
 | |
| end
 | |
| 
 | |
| class TestDRbObject < Test::Unit::TestCase
 | |
|   include DRbObjectTest
 | |
| 
 | |
|   def setup
 | |
|     DRb.start_service
 | |
|   end
 | |
| end
 | |
| 
 | |
| class TestDRbObjectTimerIdConv < Test::Unit::TestCase
 | |
|   include DRbObjectTest
 | |
| 
 | |
|   def setup
 | |
|     @idconv = DRb::TimerIdConv.new
 | |
|     DRb.start_service(nil, nil, {:idconv => @idconv})
 | |
|   end
 | |
| 
 | |
|   def teardown
 | |
|     super
 | |
|     # stop DRb::TimerIdConv::TimerHolder2#on_gc
 | |
|     @idconv.instance_eval do
 | |
|       @holder.instance_eval do
 | |
|         @expires = nil
 | |
|       end
 | |
|     end
 | |
|     GC.start
 | |
|   end
 | |
| end
 | |
| 
 | |
| class TestDRbObjectWeakIdConv < Test::Unit::TestCase
 | |
|   include DRbObjectTest
 | |
| 
 | |
|   def setup
 | |
|     DRb.start_service(nil, nil, {:idconv => DRb::WeakIdConv.new})
 | |
|   end
 | |
| end
 | 
