summaryrefslogtreecommitdiff
path: root/spec/mspec/lib/mspec/guards/platform.rb
blob: 875aef6c9c0c1987507d2ebd3b5aded679c20cb8 (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
require 'mspec/guards/guard'

class PlatformGuard < SpecGuard
  def self.implementation?(*args)
    args.any? do |name|
      case name
      when :rubinius
        RUBY_NAME.start_with?('rbx')
      when :ruby, :jruby, :truffleruby, :ironruby, :macruby, :maglev, :topaz, :opal
        RUBY_NAME.start_with?(name.to_s)
      else
        raise "unknown implementation #{name}"
      end
    end
  end

  def self.standard?
    implementation? :ruby
  end

  HOST_OS = begin
    require 'rbconfig'
    RbConfig::CONFIG['host_os'] || RUBY_PLATFORM
  rescue LoadError
    RUBY_PLATFORM
  end.downcase

  def self.os?(*oses)
    oses.any? do |os|
      raise ":java is not a valid OS" if os == :java
      if os == :windows
        HOST_OS =~ /(mswin|mingw)/
      else
        HOST_OS.include?(os.to_s)
      end
    end
  end

  def self.windows?
    os?(:windows)
  end

  def self.wordsize?(size)
    size == 8 * 1.size
  end

  def initialize(*args)
    if args.last.is_a?(Hash)
      @options, @platforms = args.last, args[0..-2]
    else
      @options, @platforms = {}, args
    end
    @parameters = args
  end

  def match?
    match = @platforms.empty? ? true : PlatformGuard.os?(*@platforms)
    @options.each do |key, value|
      case key
      when :os
        match &&= PlatformGuard.os?(*value)
      when :wordsize
        match &&= PlatformGuard.wordsize? value
      end
    end
    match
  end
end

class Object
  def platform_is(*args, &block)
    PlatformGuard.new(*args).run_if(:platform_is, &block)
  end

  def platform_is_not(*args, &block)
    PlatformGuard.new(*args).run_unless(:platform_is_not, &block)
  end
end