summaryrefslogtreecommitdiff
path: root/test/-ext-/win32/test_dln.rb
blob: 40c1f533b09ffb20e35ebcf772c8d942e836618d (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
require 'test/unit'
require 'tmpdir'
require 'rbconfig'
require_relative '../../ruby/envutil'

module Bug
  module Win32
    class TestDln < Test::Unit::TestCase
      def test_check_imported
        bug = '[Bug #6303]'
        assert_in_out_err(['-r-test-/win32/dln', '-eexit'], '', [], [], bug, timeout: 10)
      end

      def test_nonascii_load
        bug9699 = '[ruby-core:61845] [Bug #9699]'
        so = "-test-/win32/dln/empty." + RbConfig::CONFIG["DLEXT"]
        so = $:.find {|d| d = File.join(d, so); break d if File.exist?(d)}
        assert_not_nil(so)
        Dir.mkdir(dir = File.join(testdir = Dir.mktmpdir("test"), "\u{30c6 30b9 30c8}"))
        File.copy_stream(so, File.join(dir, File.basename(so)))
        assert_separately(['-', bug9699, testdir, File.basename(so)], <<-'end;')
          bug, dir, so = *ARGV
          assert_nothing_raised(LoadError, bug) do
            require File.join(dir, "\u{30c6 30b9 30c8}", so)
          end
        end;
      ensure
        File.unlink(File.join(dir, File.basename(so))) rescue nil
        Dir.rmdir(dir) rescue nil
        Dir.rmdir(testdir) rescue nil
      end

    end
  end
end if /mswin|mingw/ =~ RUBY_PLATFORM