2011-01-23 08:20:58 -05:00
|
|
|
begin
|
|
|
|
require_relative 'helper'
|
|
|
|
rescue LoadError
|
|
|
|
end
|
2010-05-06 02:59:24 -04:00
|
|
|
|
|
|
|
module Fiddle
|
|
|
|
class TestClosure < Fiddle::TestCase
|
|
|
|
def test_argument_errors
|
|
|
|
assert_raises(TypeError) do
|
|
|
|
Closure.new(TYPE_INT, TYPE_INT)
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_raises(TypeError) do
|
|
|
|
Closure.new('foo', [TYPE_INT])
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_raises(TypeError) do
|
|
|
|
Closure.new(TYPE_INT, ['meow!'])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_call
|
|
|
|
closure = Class.new(Closure) {
|
|
|
|
def call
|
|
|
|
10
|
|
|
|
end
|
|
|
|
}.new(TYPE_INT, [])
|
|
|
|
|
|
|
|
func = Function.new(closure, [], TYPE_INT)
|
|
|
|
assert_equal 10, func.call
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_returner
|
|
|
|
closure = Class.new(Closure) {
|
|
|
|
def call thing
|
|
|
|
thing
|
|
|
|
end
|
|
|
|
}.new(TYPE_INT, [TYPE_INT])
|
|
|
|
|
|
|
|
func = Function.new(closure, [TYPE_INT], TYPE_INT)
|
|
|
|
assert_equal 10, func.call(10)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_block_caller
|
|
|
|
cb = Closure::BlockCaller.new(TYPE_INT, [TYPE_INT]) do |one|
|
|
|
|
one
|
|
|
|
end
|
|
|
|
func = Function.new(cb, [TYPE_INT], TYPE_INT)
|
|
|
|
assert_equal 11, func.call(11)
|
|
|
|
end
|
2010-10-29 20:09:42 -04:00
|
|
|
|
|
|
|
def test_memsize
|
|
|
|
require 'objspace'
|
|
|
|
bug = '[ruby-dev:42480]'
|
|
|
|
n = 10000
|
|
|
|
assert_equal(n, n.times {ObjectSpace.memsize_of(Closure.allocate)}, bug)
|
|
|
|
end
|
2010-05-06 02:59:24 -04:00
|
|
|
end
|
2011-01-23 08:20:58 -05:00
|
|
|
end if defined?(Fiddle)
|