aboutsummaryrefslogtreecommitdiffstats
path: root/spec/mspec/lib/mspec/helpers/numeric.rb
blob: ff30cf2b83b9b3bedb8555909103e8faf419a413 (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
require 'mspec/guards/platform'

class Object
  def nan_value
    0/0.0
  end

  def infinity_value
    1/0.0
  end

  def bignum_value(plus=0)
    0x8000_0000_0000_0000 + plus
  end

  # This is a bit hairy, but we need to be able to write specs that cover the
  # boundary between Fixnum and Bignum for operations like Fixnum#<<. Since
  # this boundary is implementation-dependent, we use these helpers to write
  # specs based on the relationship between values rather than specific
  # values.
  if PlatformGuard.standard? or PlatformGuard.implementation? :topaz
    if PlatformGuard.wordsize? 32
      def fixnum_max
        (2**30) - 1
      end

      def fixnum_min
        -(2**30)
      end
    elsif PlatformGuard.wordsize? 64
      def fixnum_max
        (2**62) - 1
      end

      def fixnum_min
        -(2**62)
      end
    end
  elsif PlatformGuard.implementation? :opal
    def fixnum_max
      Integer::MAX
    end

    def fixnum_min
      Integer::MIN
    end
  elsif PlatformGuard.implementation? :rubinius
    def fixnum_max
      Fixnum::MAX
    end

    def fixnum_min
      Fixnum::MIN
    end
  elsif PlatformGuard.implementation?(:jruby) || PlatformGuard.implementation?(:truffleruby)
    def fixnum_max
      9223372036854775807
    end

    def fixnum_min
      -9223372036854775808
    end
  else
    def fixnum_max
      raise "unknown implementation for fixnum_max() helper"
    end

    def fixnum_min
      raise "unknown implementation for fixnum_min() helper"
    end
  end
end