mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
test_command_processor.rb: fix for mswin/mingw and test for directory
* test/shell/test_command_processor.rb (test_system_external): fix for mswin and mingw. one of EXECUTABLE_EXTS is needed but shell.rb does not support it. * test/shell/test_command_processor.rb (test_system_directory): test not to find directory. [ruby-core:57235] [Bug #8918] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d12d47c4be
commit
b328a43fa6
1 changed files with 25 additions and 5 deletions
|
@ -18,12 +18,16 @@ class TestShell::CommandProcessor < Test::Unit::TestCase
|
||||||
tc
|
tc
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def exeext
|
||||||
|
RbConfig::CONFIG["EXECUTABLE_EXTS"][/\S+\z/]
|
||||||
|
end
|
||||||
|
|
||||||
def test_system_external
|
def test_system_external
|
||||||
ext = RbConfig::CONFIG["EXECUTABLE_EXTS"][/\S+\z/]
|
name = "foo#{exeext}"
|
||||||
path = File.join(@tmpdir, "foo#{ext}")
|
path = File.join(@tmpdir, name)
|
||||||
open(path, "w", 0755) {}
|
open(path, "w", 0755) {}
|
||||||
|
|
||||||
cmd = assert_throw(catch_command_start) {@shell.system("foo")}
|
cmd = assert_throw(catch_command_start) {@shell.system(name)}
|
||||||
assert_equal(path, cmd.command)
|
assert_equal(path, cmd.command)
|
||||||
ensure
|
ensure
|
||||||
File.unlink(path)
|
File.unlink(path)
|
||||||
|
@ -32,14 +36,30 @@ class TestShell::CommandProcessor < Test::Unit::TestCase
|
||||||
def test_system_not_found
|
def test_system_not_found
|
||||||
bug8918 = '[ruby-core:57235] [Bug #8918]'
|
bug8918 = '[ruby-core:57235] [Bug #8918]'
|
||||||
|
|
||||||
path = File.join(@tmpdir, "foo")
|
name = "foo"
|
||||||
|
path = File.join(@tmpdir, name)
|
||||||
open(path, "w", 0644) {}
|
open(path, "w", 0644) {}
|
||||||
|
|
||||||
assert_raise(Shell::Error::CommandNotFound, bug8918) {
|
assert_raise(Shell::Error::CommandNotFound, bug8918) {
|
||||||
catch(catch_command_start) {@shell.system("foo")}
|
catch(catch_command_start) {@shell.system(name)}
|
||||||
}
|
}
|
||||||
ensure
|
ensure
|
||||||
Process.waitall
|
Process.waitall
|
||||||
File.unlink(path)
|
File.unlink(path)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_system_directory
|
||||||
|
bug8918 = '[ruby-core:57235] [Bug #8918]'
|
||||||
|
|
||||||
|
name = "foo#{exeext}"
|
||||||
|
path = File.join(@tmpdir, name)
|
||||||
|
Dir.mkdir(path)
|
||||||
|
|
||||||
|
assert_raise(Shell::Error::CommandNotFound, bug8918) {
|
||||||
|
catch(catch_command_start) {@shell.system(name)}
|
||||||
|
}
|
||||||
|
ensure
|
||||||
|
Process.waitall
|
||||||
|
Dir.rmdir(path)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue