forked from ruby/spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kernel_spec.rb
755 lines (625 loc) · 22.1 KB
/
kernel_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
require_relative 'spec_helper'
require_relative 'fixtures/kernel'
kernel_path = load_extension("kernel")
describe "C-API Kernel function" do
before :each do
@s = CApiKernelSpecs.new
end
describe "rb_block_given_p" do
it "returns false if no block is passed" do
@s.should_not.rb_block_given_p
end
it "returns true if a block is passed" do
(@s.rb_block_given_p { puts "FOO" } ).should == true
end
end
describe "rb_need_block" do
it "raises a LocalJumpError if no block is given" do
-> { @s.rb_need_block }.should raise_error(LocalJumpError)
end
it "does not raise a LocalJumpError if a block is given" do
@s.rb_need_block { }.should == nil
end
end
describe "rb_block_call" do
before :each do
ScratchPad.record []
end
it "calls the block with a single argument" do
ary = [1, 3, 5]
@s.rb_block_call(ary).should == [2, 4, 6]
end
it "calls the block with multiple arguments in argc / argv" do
ary = [1, 3, 5]
@s.rb_block_call_multi_arg(ary).should == 9
end
it "calls the method with no function callback and no block" do
ary = [1, 3, 5]
@s.rb_block_call_no_func(ary).should be_kind_of(Enumerator)
end
it "calls the method with no function callback and a block" do
ary = [1, 3, 5]
@s.rb_block_call_no_func(ary) do |i|
i + 1
end.should == [2, 4, 6]
end
it "can pass extra data to the function" do
ary = [3]
@s.rb_block_call_extra_data(ary).should equal(ary)
end
end
describe "rb_frame_this_func" do
it "returns the name of the method called" do
@s.rb_frame_this_func_test.should == :rb_frame_this_func_test
@s.rb_frame_this_func_test_again.should == :rb_frame_this_func_test_again
end
end
describe "rb_raise" do
it "raises an exception" do
-> { @s.rb_raise({}) }.should raise_error(TypeError)
end
it "terminates the function at the point it was called" do
h = {}
-> { @s.rb_raise(h) }.should raise_error(TypeError)
h[:stage].should == :before
end
end
describe "rb_throw" do
before :each do
ScratchPad.record []
end
it "sets the return value of the catch block to the specified value" do
catch(:foo) do
@s.rb_throw(:return_value)
end.should == :return_value
end
it "terminates the function at the point it was called" do
catch(:foo) do
ScratchPad << :before_throw
@s.rb_throw(:thrown_value)
ScratchPad << :after_throw
end.should == :thrown_value
ScratchPad.recorded.should == [:before_throw]
end
it "raises an ArgumentError if there is no catch block for the symbol" do
-> { @s.rb_throw(nil) }.should raise_error(ArgumentError)
end
end
describe "rb_throw_obj" do
before :each do
ScratchPad.record []
@tag = Object.new
end
it "sets the return value of the catch block to the specified value" do
catch(@tag) do
@s.rb_throw_obj(@tag, :thrown_value)
end.should == :thrown_value
end
it "terminates the function at the point it was called" do
catch(@tag) do
ScratchPad << :before_throw
@s.rb_throw_obj(@tag, :thrown_value)
ScratchPad << :after_throw
end.should == :thrown_value
ScratchPad.recorded.should == [:before_throw]
end
it "raises an ArgumentError if there is no catch block for the symbol" do
-> { @s.rb_throw(nil) }.should raise_error(ArgumentError)
end
end
describe "rb_warn" do
before :each do
@stderr, $stderr = $stderr, IOStub.new
@verbose = $VERBOSE
end
after :each do
$stderr = @stderr
$VERBOSE = @verbose
end
it "prints a message to $stderr if $VERBOSE evaluates to true" do
$VERBOSE = true
@s.rb_warn("This is a warning")
$stderr.should =~ /This is a warning/
end
it "prints a message to $stderr if $VERBOSE evaluates to false" do
$VERBOSE = false
@s.rb_warn("This is a warning")
$stderr.should =~ /This is a warning/
end
end
describe "rb_sys_fail" do
it "raises an exception from the value of errno" do
-> do
@s.rb_sys_fail("additional info")
end.should raise_error(SystemCallError, /additional info/)
end
it "can take a NULL message" do
-> do
@s.rb_sys_fail(nil)
end.should raise_error(Errno::EPERM)
end
end
describe "rb_syserr_fail" do
it "raises an exception from the given error" do
-> do
@s.rb_syserr_fail(Errno::EINVAL::Errno, "additional info")
end.should raise_error(Errno::EINVAL, /additional info/)
end
it "can take a NULL message" do
-> do
@s.rb_syserr_fail(Errno::EINVAL::Errno, nil)
end.should raise_error(Errno::EINVAL)
end
end
describe "rb_yield" do
it "yields passed argument" do
ret = nil
@s.rb_yield(1) { |z| ret = z }
ret.should == 1
end
it "returns the result from block evaluation" do
@s.rb_yield(1) { |z| z * 1000 }.should == 1000
end
it "raises LocalJumpError when no block is given" do
-> { @s.rb_yield(1) }.should raise_error(LocalJumpError)
end
it "rb_yield to a block that breaks does not raise an error" do
@s.rb_yield(1) { break }.should == nil
end
it "rb_yield to a block that breaks with a value returns the value" do
@s.rb_yield(1) { break 73 }.should == 73
end
platform_is_not :"solaris2.10" do # NOTE: i386-pc-solaris2.10
it "rb_yield through a callback to a block that breaks with a value returns the value" do
@s.rb_yield_indirected(1) { break 73 }.should == 73
end
end
it "rb_yield to block passed to enumerator" do
enum_class = Class.new do
include Enumerable
end
@s.rb_yield_define_each(enum_class)
res = enum_class.new.collect { |i| i * 2}
res.should == [0, 2, 4, 6]
end
end
describe "rb_yield_values" do
it "yields passed arguments" do
ret = nil
@s.rb_yield_values(1, 2) { |x, y| ret = x + y }
ret.should == 3
end
it "returns the result from block evaluation" do
@s.rb_yield_values(1, 2) { |x, y| x + y }.should == 3
end
it "raises LocalJumpError when no block is given" do
-> { @s.rb_yield_splat([1, 2]) }.should raise_error(LocalJumpError)
end
end
describe "rb_yield_values2" do
it "yields passed arguments" do
ret = nil
@s.rb_yield_values2([1, 2]) { |x, y| ret = x + y }
ret.should == 3
end
it "returns the result from block evaluation" do
@s.rb_yield_values2([1, 2]) { |x, y| x + y }.should == 3
end
end
describe "rb_yield_splat" do
it "yields with passed array's contents" do
ret = nil
@s.rb_yield_splat([1, 2]) { |x, y| ret = x + y }
ret.should == 3
end
it "returns the result from block evaluation" do
@s.rb_yield_splat([1, 2]) { |x, y| x + y }.should == 3
end
it "passes arguments to a block accepting splatted args" do
@s.rb_yield_splat([1, 2]) { |*v| v }.should == [1, 2]
end
it "raises LocalJumpError when no block is given" do
-> { @s.rb_yield_splat([1, 2]) }.should raise_error(LocalJumpError)
end
end
describe "rb_protect" do
it "will run a function with an argument" do
proof = [] # Hold proof of work performed after the yield.
res = @s.rb_protect_yield(77, proof) { |x| x + 1 }
res.should == 78
proof[0].should == 23
end
it "will allow cleanup code to run after break" do
proof = [] # Hold proof of work performed after the yield.
@s.rb_protect_yield(77, proof) { |x| break }
proof[0].should == 23
end
it "will allow cleanup code to run after break with value" do
proof = [] # Hold proof of work performed after the yield.
res = @s.rb_protect_yield(77, proof) { |x| break x + 1 }
res.should == 78
proof[0].should == 23
end
it "will allow cleanup code to run after a raise" do
proof = [] # Hold proof of work performed after the yield.
-> do
@s.rb_protect_yield(77, proof) { |x| raise NameError}
end.should raise_error(NameError)
proof[0].should == 23
end
it "will return nil if an error was raised" do
proof = [] # Hold proof of work performed after the yield.
-> do
@s.rb_protect_yield(77, proof) { |x| raise NameError}
end.should raise_error(NameError)
proof[0].should == 23
proof[1].should == nil
end
it "accepts NULL as status and returns nil if it failed" do
@s.rb_protect_null_status(42) { |x| x + 1 }.should == 43
@s.rb_protect_null_status(42) { |x| raise }.should == nil
end
it "populates errinfo with the captured exception" do
proof = []
@s.rb_protect_errinfo(77, proof) { |x| raise NameError }.class.should == NameError
proof[0].should == 23
proof[1].should == nil
end
end
describe "rb_eval_string_protect" do
it "will evaluate the given string" do
proof = []
res = @s.rb_eval_string_protect('1 + 7', proof)
proof.should == [23, 8]
end
it "will allow cleanup code to be run when an exception is raised" do
proof = []
-> do
@s.rb_eval_string_protect('raise RuntimeError', proof)
end.should raise_error(RuntimeError)
proof.should == [23, nil]
end
end
describe "rb_rescue" do
before :each do
@proc = -> x { x }
@rescue_proc_returns_sentinel = -> *_ { :rescue_proc_executed }
@rescue_proc_returns_arg = -> *a { a }
@arg_error_proc = -> *_ { raise ArgumentError, '' }
@std_error_proc = -> *_ { raise StandardError, '' }
@exc_error_proc = -> *_ { raise Exception, '' }
end
it "executes passed function" do
@s.rb_rescue(@proc, :no_exc, @rescue_proc_returns_arg, :exc).should == :no_exc
end
it "executes the passed 'rescue function' if a StandardError exception is raised" do
@s.rb_rescue(@arg_error_proc, nil, @rescue_proc_returns_sentinel, :exc).should == :rescue_proc_executed
@s.rb_rescue(@std_error_proc, nil, @rescue_proc_returns_sentinel, :exc).should == :rescue_proc_executed
end
it "passes the user supplied argument to the 'rescue function' if a StandardError exception is raised" do
arg1, _ = @s.rb_rescue(@arg_error_proc, nil, @rescue_proc_returns_arg, :exc1)
arg1.should == :exc1
arg2, _ = @s.rb_rescue(@std_error_proc, nil, @rescue_proc_returns_arg, :exc2)
arg2.should == :exc2
end
it "passes the raised exception to the 'rescue function' if a StandardError exception is raised" do
_, exc1 = @s.rb_rescue(@arg_error_proc, nil, @rescue_proc_returns_arg, :exc)
exc1.class.should == ArgumentError
_, exc2 = @s.rb_rescue(@std_error_proc, nil, @rescue_proc_returns_arg, :exc)
exc2.class.should == StandardError
end
it "raises an exception if passed function raises an exception other than StandardError" do
-> { @s.rb_rescue(@exc_error_proc, nil, @rescue_proc_returns_arg, nil) }.should raise_error(Exception)
end
it "raises an exception if any exception is raised inside the 'rescue function'" do
-> { @s.rb_rescue(@std_error_proc, nil, @std_error_proc, nil) }.should raise_error(StandardError)
end
it "makes $! available only during the 'rescue function' execution" do
@s.rb_rescue(@std_error_proc, nil, -> *_ { $! }, nil).class.should == StandardError
$!.should == nil
end
it "returns the break value if the passed function yields to a block with a break" do
def proc_caller
@s.rb_rescue(-> *_ { yield }, nil, @proc, nil)
end
proc_caller { break :value }.should == :value
end
it "returns nil if the 'rescue function' is null" do
@s.rb_rescue(@std_error_proc, nil, nil, nil).should == nil
end
end
describe "rb_rescue2" do
it "only rescues if one of the passed exceptions is raised" do
proc = -> x { x }
arg_error_proc = -> *_ { raise ArgumentError, '' }
run_error_proc = -> *_ { raise RuntimeError, '' }
type_error_proc = -> *_ { raise Exception, 'custom error' }
@s.rb_rescue2(arg_error_proc, :no_exc, proc, :exc, ArgumentError, RuntimeError).should == :exc
@s.rb_rescue2(run_error_proc, :no_exc, proc, :exc, ArgumentError, RuntimeError).should == :exc
-> {
@s.rb_rescue2(type_error_proc, :no_exc, proc, :exc, ArgumentError, RuntimeError)
}.should raise_error(Exception, 'custom error')
end
it "raises TypeError if one of the passed exceptions is not a Module" do
-> {
@s.rb_rescue2(-> *_ { raise RuntimeError, "foo" }, :no_exc, -> x { x }, :exc, Object.new, 42)
}.should raise_error(TypeError, /class or module required/)
end
end
describe "rb_catch" do
before :each do
ScratchPad.record []
end
it "executes passed function" do
@s.rb_catch("foo", -> { 1 }).should == 1
end
it "terminates the function at the point it was called" do
proc = -> do
ScratchPad << :before_throw
throw :thrown_value
ScratchPad << :after_throw
end
@s.rb_catch("thrown_value", proc).should be_nil
ScratchPad.recorded.should == [:before_throw]
end
it "raises an ArgumentError if the throw symbol isn't caught" do
-> { @s.rb_catch("foo", -> { throw :bar }) }.should raise_error(ArgumentError)
end
end
describe "rb_catch_obj" do
before :each do
ScratchPad.record []
@tag = Object.new
end
it "executes passed function" do
@s.rb_catch_obj(@tag, -> { 1 }).should == 1
end
it "terminates the function at the point it was called" do
proc = -> do
ScratchPad << :before_throw
throw @tag
ScratchPad << :after_throw
end
@s.rb_catch_obj(@tag, proc).should be_nil
ScratchPad.recorded.should == [:before_throw]
end
it "raises an ArgumentError if the throw symbol isn't caught" do
-> { @s.rb_catch("foo", -> { throw :bar }) }.should raise_error(ArgumentError)
end
end
describe "rb_ensure" do
it "executes passed function and returns its value" do
proc = -> x { x }
@s.rb_ensure(proc, :proc, proc, :ensure_proc).should == :proc
end
it "executes passed 'ensure function' when no exception is raised" do
foo = nil
proc = -> *_ { }
ensure_proc = -> x { foo = x }
@s.rb_ensure(proc, nil, ensure_proc, :foo)
foo.should == :foo
end
it "executes passed 'ensure function' when an exception is raised" do
foo = nil
raise_proc = -> { raise '' }
ensure_proc = -> x { foo = x }
@s.rb_ensure(raise_proc, nil, ensure_proc, :foo) rescue nil
foo.should == :foo
end
it "raises the same exception raised inside passed function" do
raise_proc = -> *_ { raise RuntimeError, 'foo' }
proc = -> *_ { }
-> { @s.rb_ensure(raise_proc, nil, proc, nil) }.should raise_error(RuntimeError, 'foo')
end
end
describe "rb_eval_string" do
it "evaluates a string of ruby code" do
@s.rb_eval_string("1+1").should == 2
end
it "captures local variables when called within a method" do
a = 2
@s.rb_eval_string("a+1").should == 3
end
end
describe "rb_eval_cmd_kw" do
it "evaluates a string of ruby code" do
@s.rb_eval_cmd_kw("1+1", [], 0).should == 2
end
it "calls a proc with the supplied arguments" do
@s.rb_eval_cmd_kw(-> *x { x.map { |i| i + 1 } }, [1, 3, 7], 0).should == [2, 4, 8]
end
it "calls a proc with keyword arguments if kw_splat is non zero" do
a_proc = -> *x, **y {
res = x.map { |i| i + 1 }
y.each { |k, v| res << k; res << v }
res
}
@s.rb_eval_cmd_kw(a_proc, [1, 3, 7, {a: 1, b: 2, c: 3}], 1).should == [2, 4, 8, :a, 1, :b, 2, :c, 3]
end
end
describe "rb_block_proc" do
it "converts the implicit block into a proc" do
proc = @s.rb_block_proc { 1+1 }
proc.should be_kind_of(Proc)
proc.call.should == 2
proc.should_not.lambda?
end
it "passes through an existing lambda and does not convert to a proc" do
b = -> { 1+1 }
proc = @s.rb_block_proc(&b)
proc.should equal(b)
proc.call.should == 2
proc.should.lambda?
end
end
describe "rb_block_lambda" do
it "converts the implicit block into a lambda" do
proc = @s.rb_block_lambda { 1+1 }
proc.should be_kind_of(Proc)
proc.call.should == 2
proc.should.lambda?
end
it "passes through an existing Proc and does not convert to a lambda" do
b = proc { 1+1 }
proc = @s.rb_block_lambda(&b)
proc.should equal(b)
proc.call.should == 2
proc.should_not.lambda?
end
end
describe "rb_exec_recursive" do
it "detects recursive invocations of a method and indicates as such" do
s = "hello"
@s.rb_exec_recursive(s).should == s
end
end
describe "rb_set_end_proc" do
it "runs a C function on shutdown" do
ruby_exe("require #{kernel_path.inspect}; CApiKernelSpecs.new.rb_set_end_proc(STDOUT)").should == "in write_io"
end
end
describe "rb_f_sprintf" do
it "returns a string according to format and arguments" do
@s.rb_f_sprintf(["%d %f %s", 10, 2.5, "test"]).should == "10 2.500000 test"
end
end
describe "rb_make_backtrace" do
it "returns a caller backtrace" do
backtrace = @s.rb_make_backtrace
lines = backtrace.select {|l| l =~ /#{__FILE__}/ }
lines.should_not be_empty
end
end
describe "rb_funcallv" do
def empty
42
end
def sum(a, b)
a + b
end
it "calls a method" do
@s.rb_funcallv(self, :empty, []).should == 42
@s.rb_funcallv(self, :sum, [1, 2]).should == 3
end
it "calls a private method" do
object = CApiKernelSpecs::ClassWithPrivateMethod.new
@s.rb_funcallv(object, :private_method, []).should == 0
end
it "calls a protected method" do
object = CApiKernelSpecs::ClassWithProtectedMethod.new
@s.rb_funcallv(object, :protected_method, []).should == 0
end
end
describe "rb_funcallv_kw" do
it "passes keyword arguments to the callee" do
def m(*args, **kwargs)
[args, kwargs]
end
@s.rb_funcallv_kw(self, :m, [{}]).should == [[], {}]
@s.rb_funcallv_kw(self, :m, [{a: 1}]).should == [[], {a: 1}]
@s.rb_funcallv_kw(self, :m, [{b: 2}, {a: 1}]).should == [[{b: 2}], {a: 1}]
@s.rb_funcallv_kw(self, :m, [{b: 2}, {}]).should == [[{b: 2}], {}]
end
it "calls a private method" do
object = CApiKernelSpecs::ClassWithPrivateMethod.new
@s.rb_funcallv_kw(object, :private_method, [{}]).should == 0
end
it "calls a protected method" do
object = CApiKernelSpecs::ClassWithProtectedMethod.new
@s.rb_funcallv_kw(object, :protected_method, [{}]).should == 0
end
it "raises TypeError if the last argument is not a Hash" do
def m(*args, **kwargs)
[args, kwargs]
end
-> {
@s.rb_funcallv_kw(self, :m, [42])
}.should raise_error(TypeError, 'no implicit conversion of Integer into Hash')
end
end
describe "rb_keyword_given_p" do
it "returns whether keywords were given to the C extension method" do
h = {a: 1}
empty = {}
@s.rb_keyword_given_p(a: 1).should == true
@s.rb_keyword_given_p("foo" => "bar").should == true
@s.rb_keyword_given_p(**h).should == true
@s.rb_keyword_given_p(h).should == false
@s.rb_keyword_given_p().should == false
@s.rb_keyword_given_p(**empty).should == false
@s.rb_funcallv_kw(@s, :rb_keyword_given_p, [{a: 1}]).should == true
@s.rb_funcallv_kw(@s, :rb_keyword_given_p, [{}]).should == false
end
end
describe "rb_funcallv_public" do
before :each do
@obj = Object.new
class << @obj
def method_public; :method_public end
def method_private; :method_private end
private :method_private
end
end
it "calls a public method" do
@s.rb_funcallv_public(@obj, :method_public).should == :method_public
end
it "does not call a private method" do
-> { @s.rb_funcallv_public(@obj, :method_private) }.should raise_error(NoMethodError, /private/)
end
end
describe 'rb_funcall' do
before :each do
@obj = Object.new
class << @obj
def many_args(*args)
args
end
end
end
it "can call a public method with 15 arguments" do
@s.rb_funcall_many_args(@obj, :many_args).should == 15.downto(1).to_a
end
end
describe 'rb_funcall_with_block' do
it "calls a method with block" do
@obj = Object.new
class << @obj
def method_public(*args); [args, yield] end
end
@s.rb_funcall_with_block(@obj, :method_public, [1, 2], proc { :result }).should == [[1, 2], :result]
end
it "does not call a private method" do
object = CApiKernelSpecs::ClassWithPrivateMethod.new
-> {
@s.rb_funcall_with_block(object, :private_method, [], proc { })
}.should raise_error(NoMethodError, /private/)
end
it "does not call a protected method" do
object = CApiKernelSpecs::ClassWithProtectedMethod.new
-> {
@s.rb_funcall_with_block(object, :protected_method, [], proc { })
}.should raise_error(NoMethodError, /protected/)
end
end
describe 'rb_funcall_with_block_kw' do
it "calls a method with keyword arguments and a block" do
@obj = Object.new
class << @obj
def method_public(*args, **kw, &block); [args, kw, block.call] end
end
@s.rb_funcall_with_block_kw(@obj, :method_public, [1, 2, {a: 2}], proc { :result }).should == [[1, 2], {a: 2}, :result]
end
it "does not call a private method" do
object = CApiKernelSpecs::ClassWithPrivateMethod.new
-> {
@s.rb_funcall_with_block_kw(object, :private_method, [{}], proc { })
}.should raise_error(NoMethodError, /private/)
end
it "does not call a protected method" do
object = CApiKernelSpecs::ClassWithProtectedMethod.new
-> {
@s.rb_funcall_with_block_kw(object, :protected_method, [{}], proc { })
}.should raise_error(NoMethodError, /protected/)
end
end
end