summaryrefslogtreecommitdiff
path: root/test/shell
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-17 12:35:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-17 12:35:49 +0000
commitb56fbb9b121665ab54e3bc1b9b77d5ad3a351e4f (patch)
tree1eeab3f04e03bfda44a84f97e1a48992aabf46bf /test/shell
parentd0260aee604b9eaec090c04c27d15e604f5cac28 (diff)
command-processor.rb: return executable file only
* lib/shell/command-processor.rb (Shell::CommandProcessor#find_system_command): return executable file only, should ignore directories and unexecutable files. [ruby-core:57235] [Bug #8918] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/shell')
-rw-r--r--test/shell/test_command_processor.rb45
1 files changed, 45 insertions, 0 deletions
diff --git a/test/shell/test_command_processor.rb b/test/shell/test_command_processor.rb
new file mode 100644
index 0000000000..dfa36c047b
--- /dev/null
+++ b/test/shell/test_command_processor.rb
@@ -0,0 +1,45 @@
+require 'shell'
+require 'tmpdir'
+require_relative '../ruby/envutil'
+
+class TestShell < Test::Unit::TestCase
+end
+class TestShell::CommandProcessor < Test::Unit::TestCase
+ def setup
+ @tmpdir = Dir.mktmpdir("test_shell")
+ @shell = Shell.new
+ @shell.system_path = [@tmpdir]
+ end
+
+ def catch_command_start(tc = Object.new)
+ @shell.process_controller.singleton_class.class_eval do
+ define_method(:add_schedule) {|cmd| throw tc, cmd}
+ end
+ tc
+ end
+
+ def test_system_external
+ ext = RbConfig::CONFIG["EXECUTABLE_EXTS"][/\S+\z/]
+ path = File.join(@tmpdir, "foo#{ext}")
+ open(path, "w", 0755) {}
+
+ cmd = assert_throw(catch_command_start) {@shell.system("foo")}
+ assert_equal(path, cmd.command)
+ ensure
+ File.unlink(path)
+ end
+
+ def test_system_not_found
+ bug8918 = '[ruby-core:57235] [Bug #8918]'
+
+ path = File.join(@tmpdir, "foo")
+ open(path, "w", 0644) {}
+
+ assert_raise(Shell::Error::CommandNotFound, bug8918) {
+ catch(catch_command_start) {@shell.system("foo")}
+ }
+ ensure
+ Process.waitall
+ File.unlink(path)
+ end
+end