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
|
require File.dirname(__FILE__) + "/../spec_helper"
java_import "java_integration.fixtures.ManyArityMethodClass"
describe "Java constructors" do
it "should fail correctly when called with wrong parameters" do
expect do
java.util.HashMap.new "str"
end.to raise_error(NameError)
end
end
describe "Java instance methods" do
it "should fail correctly when called with wrong parameters" do
expect do
java.util.ArrayList.new.add_all "str"
end.to raise_error(NameError)
expect do
java.util.System.set_property 1, 2
end.to raise_error(NameError)
end
describe "with fixed arity" do
it "raises ArgumentError on arity mismatch" do
# arity zero
expect do
ManyArityMethodClass.foo0('foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo0('foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo0('foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo0('foo', 'foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
# arity one
expect do
ManyArityMethodClass.foo1()
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo1('foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo1('foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo1('foo', 'foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
# arity two
expect do
ManyArityMethodClass.foo2()
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo2('foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo2('foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo2('foo', 'foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
# arity three
expect do
ManyArityMethodClass.foo3()
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo3('foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo3('foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo3('foo', 'foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
# arity four
expect do
ManyArityMethodClass.foo4()
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo4('foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo4('foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo4('foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
end
end
describe "with variable arity" do
it "raises ArgumentError on arity mismatch" do
# arity 0 or 1
expect do
ManyArityMethodClass.foo0_1('foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo0_1('foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo0_1('foo', 'foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
# arity 1 or 2
expect do
ManyArityMethodClass.foo1_2()
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo1_2('foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo1_2('foo', 'foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
# arity 2 or 3
expect do
ManyArityMethodClass.foo2_3()
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo2_3('foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo2_3('foo', 'foo', 'foo', 'foo')
end.to raise_error(ArgumentError)
# arity 3 or 4
expect do
ManyArityMethodClass.foo3_4()
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo3_4('foo')
end.to raise_error(ArgumentError)
expect do
ManyArityMethodClass.foo3_4('foo', 'foo')
end.to raise_error(ArgumentError)
end
end
end
|