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 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
|
require_relative '../../spec_helper'
require_relative 'fixtures/classes'
class DefineMethodSpecClass
end
describe "passed { |a, b = 1| } creates a method that" do
before :each do
@klass = Class.new do
define_method(:m) { |a, b = 1| return a, b }
end
end
it "raises an ArgumentError when passed zero arguments" do
-> { @klass.new.m }.should raise_error(ArgumentError)
end
it "has a default value for b when passed one argument" do
@klass.new.m(1).should == [1, 1]
end
it "overrides the default argument when passed two arguments" do
@klass.new.m(1, 2).should == [1, 2]
end
it "raises an ArgumentError when passed three arguments" do
-> { @klass.new.m(1, 2, 3) }.should raise_error(ArgumentError)
end
end
describe "Module#define_method when given an UnboundMethod" do
it "passes the given arguments to the new method" do
klass = Class.new do
def test_method(arg1, arg2)
[arg1, arg2]
end
define_method(:another_test_method, instance_method(:test_method))
end
klass.new.another_test_method(1, 2).should == [1, 2]
end
it "adds the new method to the methods list" do
klass = Class.new do
def test_method(arg1, arg2)
[arg1, arg2]
end
define_method(:another_test_method, instance_method(:test_method))
end
klass.new.should have_method(:another_test_method)
end
describe "defining a method on a singleton class" do
before do
klass = Class.new
class << klass
def test_method
:foo
end
end
child = Class.new(klass)
sc = class << child; self; end
sc.send :define_method, :another_test_method, klass.method(:test_method).unbind
@class = child
end
it "doesn't raise TypeError when calling the method" do
@class.another_test_method.should == :foo
end
end
it "sets the new method's visibility to the current frame's visibility" do
foo = Class.new do
def ziggy
'piggy'
end
private :ziggy
# make sure frame visibility is public
public
define_method :piggy, instance_method(:ziggy)
end
-> { foo.new.ziggy }.should raise_error(NoMethodError)
foo.new.piggy.should == 'piggy'
end
end
describe "Module#define_method" do
describe "when the default definee is not the same as the module" do
it "sets the visibility of the method to public" do
klass = Class.new
class << klass
private
define_method(:meta) do
define_method(:foo) { :foo }
end
end
klass.send :meta
klass.new.foo.should == :foo
end
end
end
describe "Module#define_method when name is not a special private name" do
describe "given an UnboundMethod" do
describe "and called from the target module" do
it "sets the visibility of the method to the current visibility" do
klass = Class.new do
define_method(:bar, ModuleSpecs::EmptyFooMethod)
private
define_method(:baz, ModuleSpecs::EmptyFooMethod)
end
klass.should have_public_instance_method(:bar)
klass.should have_private_instance_method(:baz)
end
end
describe "and called from another module" do
it "sets the visibility of the method to public" do
klass = Class.new
Class.new do
klass.send(:define_method, :bar, ModuleSpecs::EmptyFooMethod)
private
klass.send(:define_method, :baz, ModuleSpecs::EmptyFooMethod)
end
klass.should have_public_instance_method(:bar)
klass.should have_public_instance_method(:baz)
end
end
it "sets the method owner for a dynamically added method with a different original owner" do
mixin_module = Module.new do
def bar; end
end
foo = Object.new
foo.singleton_class.define_method(:bar, mixin_module.instance_method(:bar))
foo.method(:bar).owner.should == foo.singleton_class
end
end
describe "passed a block" do
describe "and called from the target module" do
it "sets the visibility of the method to the current visibility" do
klass = Class.new do
define_method(:bar) {}
private
define_method(:baz) {}
end
klass.should have_public_instance_method(:bar)
klass.should have_private_instance_method(:baz)
end
end
describe "and called from another module" do
it "sets the visibility of the method to public" do
klass = Class.new
Class.new do
klass.send(:define_method, :bar) {}
private
klass.send(:define_method, :baz) {}
end
klass.should have_public_instance_method(:bar)
klass.should have_public_instance_method(:baz)
end
end
end
end
describe "Module#define_method when name is :initialize" do
describe "passed a block" do
it "sets visibility to private when method name is :initialize" do
klass = Class.new do
define_method(:initialize) { }
end
klass.should have_private_instance_method(:initialize)
end
end
describe "given an UnboundMethod" do
it "sets the visibility to private when method is named :initialize" do
klass = Class.new do
def test_method
end
define_method(:initialize, instance_method(:test_method))
end
klass.should have_private_instance_method(:initialize)
end
end
end
describe "Module#define_method" do
it "defines the given method as an instance method with the given name in self" do
class DefineMethodSpecClass
def test1
"test"
end
define_method(:another_test, instance_method(:test1))
end
o = DefineMethodSpecClass.new
o.test1.should == o.another_test
end
it "calls #method_added after the method is added to the Module" do
DefineMethodSpecClass.should_receive(:method_added).with(:test_ma)
class DefineMethodSpecClass
define_method(:test_ma) { true }
end
end
it "defines a new method with the given name and the given block as body in self" do
class DefineMethodSpecClass
define_method(:block_test1) { self }
define_method(:block_test2, &-> { self })
end
o = DefineMethodSpecClass.new
o.block_test1.should == o
o.block_test2.should == o
end
it "raises TypeError if name cannot converted to String" do
-> {
Class.new { define_method(1001, -> {}) }
}.should raise_error(TypeError, /is not a symbol nor a string/)
-> {
Class.new { define_method([], -> {}) }
}.should raise_error(TypeError, /is not a symbol nor a string/)
end
it "converts non-String name to String with #to_str" do
obj = Object.new
def obj.to_str() "foo" end
new_class = Class.new { define_method(obj, -> { :called }) }
new_class.new.foo.should == :called
end
it "raises TypeError when #to_str called on non-String name returns non-String value" do
obj = Object.new
def obj.to_str() [] end
-> {
Class.new { define_method(obj, -> {}) }
}.should raise_error(TypeError, /can't convert Object to String/)
end
it "raises a TypeError when the given method is no Method/Proc" do
-> {
Class.new { define_method(:test, "self") }
}.should raise_error(TypeError, "wrong argument type String (expected Proc/Method/UnboundMethod)")
-> {
Class.new { define_method(:test, 1234) }
}.should raise_error(TypeError, "wrong argument type Integer (expected Proc/Method/UnboundMethod)")
-> {
Class.new { define_method(:test, nil) }
}.should raise_error(TypeError, "wrong argument type NilClass (expected Proc/Method/UnboundMethod)")
end
it "uses provided Method/Proc even if block is specified" do
new_class = Class.new do
define_method(:test, -> { :method_is_called }) do
:block_is_called
end
end
new_class.new.test.should == :method_is_called
end
it "raises an ArgumentError when no block is given" do
-> {
Class.new { define_method(:test) }
}.should raise_error(ArgumentError)
end
it "does not use the caller block when no block is given" do
o = Object.new
def o.define(name)
self.class.class_eval do
define_method(name)
end
end
-> {
o.define(:foo) { raise "not used" }
}.should raise_error(ArgumentError)
end
it "does not change the arity check style of the original proc" do
class DefineMethodSpecClass
prc = Proc.new { || true }
define_method("proc_style_test", &prc)
end
obj = DefineMethodSpecClass.new
-> { obj.proc_style_test :arg }.should raise_error(ArgumentError)
end
it "raises a FrozenError if frozen" do
-> {
Class.new { freeze; define_method(:foo) {} }
}.should raise_error(FrozenError)
end
it "accepts a Method (still bound)" do
class DefineMethodSpecClass
attr_accessor :data
def inspect_data
"data is #{@data}"
end
end
o = DefineMethodSpecClass.new
o.data = :foo
m = o.method(:inspect_data)
m.should be_an_instance_of(Method)
klass = Class.new(DefineMethodSpecClass)
klass.send(:define_method,:other_inspect, m)
c = klass.new
c.data = :bar
c.other_inspect.should == "data is bar"
->{o.other_inspect}.should raise_error(NoMethodError)
end
it "raises a TypeError when a Method from a singleton class is defined on another class" do
c = Class.new do
class << self
def foo
end
end
end
m = c.method(:foo)
-> {
Class.new { define_method :bar, m }
}.should raise_error(TypeError, /can't bind singleton method to a different class/)
end
it "raises a TypeError when a Method from one class is defined on an unrelated class" do
c = Class.new do
def foo
end
end
m = c.new.method(:foo)
-> {
Class.new { define_method :bar, m }
}.should raise_error(TypeError)
end
it "accepts an UnboundMethod from an attr_accessor method" do
class DefineMethodSpecClass
attr_accessor :accessor_method
end
m = DefineMethodSpecClass.instance_method(:accessor_method)
o = DefineMethodSpecClass.new
DefineMethodSpecClass.send(:undef_method, :accessor_method)
-> { o.accessor_method }.should raise_error(NoMethodError)
DefineMethodSpecClass.send(:define_method, :accessor_method, m)
o.accessor_method = :abc
o.accessor_method.should == :abc
end
it "accepts a proc from a method" do
class ProcFromMethod
attr_accessor :data
def cool_method
"data is #{@data}"
end
end
object1 = ProcFromMethod.new
object1.data = :foo
method_proc = object1.method(:cool_method).to_proc
klass = Class.new(ProcFromMethod)
klass.send(:define_method, :other_cool_method, &method_proc)
object2 = klass.new
object2.data = :bar
object2.other_cool_method.should == "data is foo"
end
it "accepts a proc from a Symbol" do
symbol_proc = :+.to_proc
klass = Class.new do
define_method :foo, &symbol_proc
end
klass.new.foo(1, 2).should == 3
end
it "maintains the Proc's scope" do
class DefineMethodByProcClass
in_scope = true
method_proc = proc { in_scope }
define_method(:proc_test, &method_proc)
end
o = DefineMethodByProcClass.new
o.proc_test.should be_true
end
it "accepts a String method name" do
klass = Class.new do
define_method("string_test") do
"string_test result"
end
end
klass.new.string_test.should == "string_test result"
end
it "is a public method" do
Module.should have_public_instance_method(:define_method)
end
it "returns its symbol" do
class DefineMethodSpecClass
method = define_method("return_test") { true }
method.should == :return_test
end
end
it "allows an UnboundMethod from a module to be defined on a class" do
klass = Class.new {
define_method :bar, ModuleSpecs::UnboundMethodTest.instance_method(:foo)
}
klass.new.should respond_to(:bar)
end
it "allows an UnboundMethod from a parent class to be defined on a child class" do
parent = Class.new { define_method(:foo) { :bar } }
child = Class.new(parent) {
define_method :baz, parent.instance_method(:foo)
}
child.new.should respond_to(:baz)
end
it "allows an UnboundMethod from a module to be defined on another unrelated module" do
mod = Module.new {
define_method :bar, ModuleSpecs::UnboundMethodTest.instance_method(:foo)
}
klass = Class.new { include mod }
klass.new.should respond_to(:bar)
end
it "allows an UnboundMethod of a Kernel method retrieved from Object to defined on a BasicObject subclass" do
klass = Class.new(BasicObject) do
define_method :instance_of?, ::Object.instance_method(:instance_of?)
end
klass.new.instance_of?(klass).should == true
end
it "raises a TypeError when an UnboundMethod from a child class is defined on a parent class" do
-> {
ParentClass = Class.new { define_method(:foo) { :bar } }
ChildClass = Class.new(ParentClass) { define_method(:foo) { :baz } }
ParentClass.send :define_method, :foo, ChildClass.instance_method(:foo)
}.should raise_error(TypeError, /bind argument must be a subclass of ChildClass/)
end
it "raises a TypeError when an UnboundMethod from one class is defined on an unrelated class" do
-> {
DestinationClass = Class.new {
define_method :bar, ModuleSpecs::InstanceMeth.instance_method(:foo)
}
}.should raise_error(TypeError, /bind argument must be a subclass of ModuleSpecs::InstanceMeth/)
end
it "raises a TypeError when an UnboundMethod from a singleton class is defined on another class" do
c = Class.new do
class << self
def foo
end
end
end
m = c.method(:foo).unbind
-> {
Class.new { define_method :bar, m }
}.should raise_error(TypeError, /can't bind singleton method to a different class/)
end
it "defines a new method with public visibility when a Method passed and the class/module of the context isn't equal to the receiver of #define_method" do
c = Class.new do
private def foo
"public"
end
end
object = c.new
object.singleton_class.define_method(:bar, object.method(:foo))
object.bar.should == "public"
end
it "defines the new method according to the scope visibility when a Method passed and the class/module of the context is equal to the receiver of #define_method" do
c = Class.new do
def foo; end
end
object = c.new
object.singleton_class.class_eval do
private
define_method(:bar, c.new.method(:foo))
end
-> { object.bar }.should raise_error(NoMethodError)
end
end
describe "Module#define_method" do
describe "passed { } creates a method that" do
before :each do
@klass = Class.new do
define_method(:m) { :called }
end
end
it "returns the value computed by the block when passed zero arguments" do
@klass.new.m().should == :called
end
it "raises an ArgumentError when passed one argument" do
-> { @klass.new.m 1 }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed two arguments" do
-> { @klass.new.m 1, 2 }.should raise_error(ArgumentError)
end
end
describe "passed { || } creates a method that" do
before :each do
@klass = Class.new do
define_method(:m) { || :called }
end
end
it "returns the value computed by the block when passed zero arguments" do
@klass.new.m().should == :called
end
it "raises an ArgumentError when passed one argument" do
-> { @klass.new.m 1 }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed two arguments" do
-> { @klass.new.m 1, 2 }.should raise_error(ArgumentError)
end
end
describe "passed { |a| } creates a method that" do
before :each do
@klass = Class.new do
define_method(:m) { |a| a }
end
end
it "raises an ArgumentError when passed zero arguments" do
-> { @klass.new.m }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed zero arguments and a block" do
-> { @klass.new.m { :computed } }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed two arguments" do
-> { @klass.new.m 1, 2 }.should raise_error(ArgumentError)
end
it "receives the value passed as the argument when passed one argument" do
@klass.new.m(1).should == 1
end
end
describe "passed { |a,| } creates a method that" do
before :each do
@klass = Class.new do
define_method(:m) { |a,| a }
end
end
it "raises an ArgumentError when passed zero arguments" do
-> { @klass.new.m }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed zero arguments and a block" do
-> { @klass.new.m { :computed } }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed two arguments" do
-> { @klass.new.m 1, 2 }.should raise_error(ArgumentError)
end
it "receives the value passed as the argument when passed one argument" do
@klass.new.m(1).should == 1
end
it "does not destructure the passed argument" do
@klass.new.m([1, 2]).should == [1, 2]
# for comparison:
proc { |a,| a }.call([1, 2]).should == 1
end
end
describe "passed { |*a| } creates a method that" do
before :each do
@klass = Class.new do
define_method(:m) { |*a| a }
end
end
it "receives an empty array as the argument when passed zero arguments" do
@klass.new.m().should == []
end
it "receives the value in an array when passed one argument" do
@klass.new.m(1).should == [1]
end
it "receives the values in an array when passed two arguments" do
@klass.new.m(1, 2).should == [1, 2]
end
end
describe "passed { |a, *b| } creates a method that" do
before :each do
@klass = Class.new do
define_method(:m) { |a, *b| return a, b }
end
end
it "raises an ArgumentError when passed zero arguments" do
-> { @klass.new.m }.should raise_error(ArgumentError)
end
it "returns the value computed by the block when passed one argument" do
@klass.new.m(1).should == [1, []]
end
it "returns the value computed by the block when passed two arguments" do
@klass.new.m(1, 2).should == [1, [2]]
end
it "returns the value computed by the block when passed three arguments" do
@klass.new.m(1, 2, 3).should == [1, [2, 3]]
end
end
describe "passed { |a, b| } creates a method that" do
before :each do
@klass = Class.new do
define_method(:m) { |a, b| return a, b }
end
end
it "returns the value computed by the block when passed two arguments" do
@klass.new.m(1, 2).should == [1, 2]
end
it "raises an ArgumentError when passed zero arguments" do
-> { @klass.new.m }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed one argument" do
-> { @klass.new.m 1 }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed one argument and a block" do
-> { @klass.new.m(1) { } }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed three arguments" do
-> { @klass.new.m 1, 2, 3 }.should raise_error(ArgumentError)
end
end
describe "passed { |a, b, *c| } creates a method that" do
before :each do
@klass = Class.new do
define_method(:m) { |a, b, *c| return a, b, c }
end
end
it "raises an ArgumentError when passed zero arguments" do
-> { @klass.new.m }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed one argument" do
-> { @klass.new.m 1 }.should raise_error(ArgumentError)
end
it "raises an ArgumentError when passed one argument and a block" do
-> { @klass.new.m(1) { } }.should raise_error(ArgumentError)
end
it "receives an empty array as the third argument when passed two arguments" do
@klass.new.m(1, 2).should == [1, 2, []]
end
it "receives the third argument in an array when passed three arguments" do
@klass.new.m(1, 2, 3).should == [1, 2, [3]]
end
end
end
describe "Module#define_method when passed a Method object" do
before :each do
@klass = Class.new do
def m(a, b, *c)
:m
end
end
@obj = @klass.new
m = @obj.method :m
@klass.class_exec do
define_method :n, m
end
end
it "defines a method with the same #arity as the original" do
@obj.method(:n).arity.should == @obj.method(:m).arity
end
it "defines a method with the same #parameters as the original" do
@obj.method(:n).parameters.should == @obj.method(:m).parameters
end
end
describe "Module#define_method when passed an UnboundMethod object" do
before :each do
@klass = Class.new do
def m(a, b, *c)
:m
end
end
@obj = @klass.new
m = @klass.instance_method :m
@klass.class_exec do
define_method :n, m
end
end
it "defines a method with the same #arity as the original" do
@obj.method(:n).arity.should == @obj.method(:m).arity
end
it "defines a method with the same #parameters as the original" do
@obj.method(:n).parameters.should == @obj.method(:m).parameters
end
end
describe "Module#define_method when passed a Proc object" do
describe "and a method is defined inside" do
it "defines the nested method in the default definee where the Proc was created" do
prc = nil
t = Class.new do
prc = -> {
def nested_method_in_proc_for_define_method
42
end
}
end
c = Class.new do
define_method(:test, prc)
end
o = c.new
o.test
o.should_not have_method :nested_method_in_proc_for_define_method
t.new.nested_method_in_proc_for_define_method.should == 42
end
end
end
describe "Module#define_method when passed a block" do
describe "behaves exactly like a lambda" do
it "for return" do
Class.new do
define_method(:foo) do
return 42
end
end.new.foo.should == 42
end
it "for break" do
Class.new do
define_method(:foo) do
break 42
end
end.new.foo.should == 42
end
it "for next" do
Class.new do
define_method(:foo) do
next 42
end
end.new.foo.should == 42
end
it "for redo" do
Class.new do
result = []
define_method(:foo) do
if result.empty?
result << :first
redo
else
result << :second
result
end
end
end.new.foo.should == [:first, :second]
end
end
end
|