# # This file is part of ruby-ffi. # # This code is free software: you can redistribute it and/or modify it under # the terms of the GNU Lesser General Public License version 3 only, as # published by the Free Software Foundation. # # This code is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License # version 3 for more details. # # You should have received a copy of the GNU Lesser General Public License # version 3 along with this work. If not, see . # require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper")) require 'java' if RUBY_PLATFORM =~ /java/ describe "Managed Struct" do include FFI module ManagedStructTestLib extend FFI::Library ffi_lib TestLibrary::PATH attach_function :ptr_from_address, [ FFI::Platform::ADDRESS_SIZE == 32 ? :uint : :ulong_long ], :pointer end it "should raise an error if release() is not defined" do class NoRelease < FFI::ManagedStruct ; layout :i, :int; end lambda { NoRelease.new(ManagedStructTestLib.ptr_from_address(0x12345678)) }.should raise_error(NoMethodError) end it "should be the right class" do class WhatClassAmI < FFI::ManagedStruct layout :i, :int def self.release end end WhatClassAmI.new(ManagedStructTestLib.ptr_from_address(0x12345678)).class.should eq WhatClassAmI end it "should release memory properly" do class PleaseReleaseMe < FFI::ManagedStruct layout :i, :int @@count = 0 def self.release @@count += 1 end def self.wait_gc(count) loop = 5 while loop > 0 && @@count < count loop -= 1 if RUBY_PLATFORM =~ /java/ java.lang.System.gc else GC.start end sleep 0.05 if @@count < count end end end loop_count = 30 wiggle_room = 5 PleaseReleaseMe.should_receive(:release).at_least(loop_count-wiggle_room).times loop_count.times do PleaseReleaseMe.new(ManagedStructTestLib.ptr_from_address(0x12345678)) end PleaseReleaseMe.wait_gc loop_count end end