summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi/fixnum_spec.rb
blob: aa02a0543b7a9dcad96c5a563eaf1ffa3050251e (plain)
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
require_relative 'spec_helper'

load_extension("fixnum")

describe "CApiFixnumSpecs" do
  before :each do
    @s = CApiFixnumSpecs.new
  end

  describe "FIX2INT" do
    max_int = (1 << 31) - 1
    min_int = -(1 << 31)

    it "converts a Fixnum to a native int" do
      @s.FIX2INT(42).should == 42
      @s.FIX2INT(-14).should == -14
      @s.FIX2INT(-1).should == -1
      @s.FIX2INT(1).should == 1
    end

    guard -> { fixnum_min <= min_int and max_int <= fixnum_max } do
      it "converts a Fixnum representing the minimum and maximum native int" do
        @s.FIX2INT(max_int).should == max_int
        @s.FIX2INT(min_int).should == min_int
      end
    end

    platform_is wordsize: 64 do # sizeof(long) > sizeof(int)
      it "raises a TypeError if passed nil" do
        -> { @s.FIX2INT(nil) }.should raise_error(TypeError)
      end

      it "converts a Float" do
        @s.FIX2INT(25.4567).should == 25
      end

      it "converts a negative Bignum into an signed number" do
        @s.FIX2INT(-2147442171).should == -2147442171
      end

      it "raises a RangeError if the value does not fit a native int" do
        -> { @s.FIX2INT(0x7fff_ffff+1) }.should raise_error(RangeError)
        -> { @s.FIX2INT(-(1 << 31) - 1) }.should raise_error(RangeError)
      end

      it "raises a RangeError if the value is more than 32bits" do
        -> { @s.FIX2INT(0xffff_ffff+1) }.should raise_error(RangeError)
      end

      it "raises a RangeError if the value is more than 64bits" do
        -> { @s.FIX2INT(0xffff_ffff_ffff_ffff+1) }.should raise_error(RangeError)
      end

      it "calls #to_int to coerce the value" do
        obj = mock("number")
        obj.should_receive(:to_int).and_return(2)
        @s.FIX2INT(obj).should == 2
      end
    end
  end

  describe "FIX2UINT" do
    max_uint = (1 << 32) - 1

    it "converts a Fixnum" do
      @s.FIX2UINT(0).should == 0
      @s.FIX2UINT(1).should == 1
      @s.FIX2UINT(42).should == 42
    end

    guard -> { max_uint <= fixnum_max } do
      it "converts a Fixnum representing the maximum native uint" do
        @s.FIX2UINT(max_uint).should == max_uint
      end
    end

    platform_is wordsize: 64 do # sizeof(long) > sizeof(int)
      it "raises a TypeError if passed nil" do
        -> { @s.FIX2UINT(nil) }.should raise_error(TypeError)
      end

      it "converts a Float" do
        @s.FIX2UINT(25.4567).should == 25
      end

      it "raises a RangeError if the value does not fit a native uint" do
        # Interestingly, on MRI FIX2UINT(-1) is allowed
        -> { @s.FIX2UINT(0xffff_ffff+1) }.should raise_error(RangeError)
        -> { @s.FIX2UINT(-(1 << 31) - 1) }.should raise_error(RangeError)
      end

      it "raises a RangeError if the value is more than 32bits" do
        -> { @s.FIX2UINT(0xffff_ffff+1) }.should raise_error(RangeError)
      end

      it "raises a RangeError if the value is more than 64bits" do
        -> { @s.FIX2UINT(0xffff_ffff_ffff_ffff+1) }.should raise_error(RangeError)
      end
    end
  end
end