summaryrefslogtreecommitdiff
path: root/spec/lib/rake/compiler_config_spec.rb
blob: 22b1f7f396d81e91c6e0b59fae801ed55b58ba14 (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
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')

require 'rake/extensiontask'
require 'rbconfig'
require 'tempfile'

describe Rake::CompilerConfig do
  def config_file(contents)
    Tempfile.new.tap do |tf|
      tf.write(contents)
      tf.close
    end
  end

  it "returns the matching config for exact platform match" do
    cc = Rake::CompilerConfig.new(config_file(<<~CONFIG))
      ---
      rbconfig-x86_64-linux-3.0.0: "/path/to/aaa/rbconfig.rb"
      rbconfig-x86_64-darwin-3.1.0: "/path/to/bbb/rbconfig.rb"
      rbconfig-x86_64-linux-3.1.0: "/path/to/ccc/rbconfig.rb"
    CONFIG

    expect(cc.find("3.0.0", "x86_64-linux")).to eq("/path/to/aaa/rbconfig.rb")
    expect(cc.find("3.1.0", "x86_64-darwin")).to eq("/path/to/bbb/rbconfig.rb")
    expect(cc.find("3.1.0", "x86_64-linux")).to eq("/path/to/ccc/rbconfig.rb")

    expect(cc.find("2.7.0", "x86_64-linux")).to be_nil
    expect(cc.find("3.1.0", "arm64-linux")).to be_nil
  end

  it "returns the matching config for inexact platform match" do
    cc = Rake::CompilerConfig.new(config_file(<<~CONFIG))
      ---
      rbconfig-x86_64-linux-gnu-3.0.0: "/path/to/aaa/rbconfig.rb"
      rbconfig-x86_64-linux-musl-3.1.0: "/path/to/bbb/rbconfig.rb"
    CONFIG

    expect(cc.find("3.0.0", "x86_64-linux")).to eq("/path/to/aaa/rbconfig.rb")
    expect(cc.find("3.1.0", "x86_64-linux")).to eq("/path/to/bbb/rbconfig.rb")
  end

  it "does not match the other way around" do
    if Gem::Version.new(Gem::VERSION) < Gem::Version.new("3.3.21")
      skip "rubygems 3.3.21+ only"
    end

    cc = Rake::CompilerConfig.new(config_file(<<~CONFIG))
      ---
      rbconfig-x86_64-linux-3.1.0: "/path/to/bbb/rbconfig.rb"
    CONFIG

    expect(cc.find("3.1.0", "x86_64-linux-musl")).to be_nil
  end
end