summaryrefslogtreecommitdiff
path: root/test/mkmf/test_find_executable.rb
blob: 87e1d03c511460d943deff50b8605f1514fc8a93 (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
require_relative 'base'

class TestMkmf
  class TestFindExecutable < TestMkmf
    class F
      def do_find_executable(name)
        find_executable(name)
      end
    end

    def test_find_executable
      bug2669 = '[ruby-core:27912]'
      path, ENV["PATH"] = ENV["PATH"], path
      ENV["PATH"] = @tmpdir
      f = F.new
      name = "foobar#{$$}#{rand(1000)}"
      if /mswin\d|mingw|cygwin/ =~ RUBY_PLATFORM
        exts = %w[.exe .com .cmd .bat]
      else
        exts = [""]
      end
      exts.each do |ext|
        full = name+ext
        begin
          open(full, "w") {|ff| ff.chmod(0755)}
          result = f.do_find_executable(name)
        ensure
          File.unlink(full)
        end
        assert_equal("#{@tmpdir}/#{name}#{ext}", result, bug2669)
      end
    ensure
      ENV["PATH"] = path
    end
  end
end