2003-09-04 16:18:59 +00:00
|
|
|
require 'test/unit'
|
2007-09-28 16:51:41 +00:00
|
|
|
require 'tmpdir'
|
2008-02-18 08:09:05 +00:00
|
|
|
require_relative 'envutil'
|
2003-09-04 16:18:59 +00:00
|
|
|
|
|
|
|
class TestSystem < Test::Unit::TestCase
|
|
|
|
def test_system
|
2003-10-05 02:56:42 +00:00
|
|
|
ruby = EnvUtil.rubybin
|
2003-09-05 15:15:43 +00:00
|
|
|
assert_equal("foobar\n", `echo foobar`)
|
|
|
|
assert_equal('foobar', `#{ruby} -e 'print "foobar"'`)
|
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
Dir.mktmpdir("ruby_script_tmp") {|tmpdir|
|
|
|
|
tmpfilename = "#{tmpdir}/ruby_script_tmp.#{$$}"
|
2007-09-28 16:51:41 +00:00
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
tmp = open(tmpfilename, "w")
|
|
|
|
tmp.print "print $zzz\n";
|
|
|
|
tmp.close
|
2003-09-05 15:15:43 +00:00
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
assert_equal('true', `#{ruby} -s #{tmpfilename} -zzz`)
|
|
|
|
assert_equal('555', `#{ruby} -s #{tmpfilename} -zzz=555`)
|
2003-09-05 15:15:43 +00:00
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
tmp = open(tmpfilename, "w")
|
|
|
|
tmp.print "#! /usr/local/bin/ruby -s\n";
|
|
|
|
tmp.print "print $zzz\n";
|
|
|
|
tmp.close
|
2003-09-05 15:15:43 +00:00
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
assert_equal('678', `#{ruby} #{tmpfilename} -zzz=678`)
|
2003-09-05 15:15:43 +00:00
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
tmp = open(tmpfilename, "w")
|
|
|
|
tmp.print "this is a leading junk\n";
|
|
|
|
tmp.print "#! /usr/local/bin/ruby -s\n";
|
2010-01-27 12:04:17 +00:00
|
|
|
tmp.print "print $zzz if defined? $zzz\n";
|
2007-09-28 18:22:23 +00:00
|
|
|
tmp.print "__END__\n";
|
|
|
|
tmp.print "this is a trailing junk\n";
|
|
|
|
tmp.close
|
2003-09-05 15:15:43 +00:00
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
assert_equal('', `#{ruby} -x #{tmpfilename}`)
|
|
|
|
assert_equal('555', `#{ruby} -x #{tmpfilename} -zzz=555`)
|
2003-09-05 15:15:43 +00:00
|
|
|
|
2009-08-05 10:19:18 +00:00
|
|
|
tmp = open(tmpfilename, "w")
|
|
|
|
tmp.print "#! /non/exist\\interpreter?/./to|be:ignored\n";
|
|
|
|
tmp.print "this is a leading junk\n";
|
|
|
|
tmp.print "#! /usr/local/bin/ruby -s\n";
|
2010-01-27 12:04:17 +00:00
|
|
|
tmp.print "print $zzz if defined? $zzz\n";
|
2009-08-05 10:19:18 +00:00
|
|
|
tmp.print "__END__\n";
|
|
|
|
tmp.print "this is a trailing junk\n";
|
|
|
|
tmp.close
|
|
|
|
|
|
|
|
assert_equal('', `#{ruby} #{tmpfilename}`)
|
|
|
|
assert_equal('555', `#{ruby} #{tmpfilename} -zzz=555`)
|
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
tmp = open(tmpfilename, "w")
|
|
|
|
for i in 1..5
|
|
|
|
tmp.print i, "\n"
|
|
|
|
end
|
|
|
|
tmp.close
|
2003-09-05 15:15:43 +00:00
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
`#{ruby} -i.bak -pe '$_.sub!(/^[0-9]+$/){$&.to_i * 5}' #{tmpfilename}`
|
|
|
|
tmp = open(tmpfilename, "r")
|
|
|
|
while tmp.gets
|
|
|
|
assert_equal(0, $_.to_i % 5)
|
|
|
|
end
|
|
|
|
tmp.close
|
2003-09-05 15:15:43 +00:00
|
|
|
|
2007-09-28 18:22:23 +00:00
|
|
|
File.unlink tmpfilename or `/bin/rm -f "#{tmpfilename}"`
|
|
|
|
File.unlink "#{tmpfilename}.bak" or `/bin/rm -f "#{tmpfilename}.bak"`
|
2009-06-29 09:56:03 +00:00
|
|
|
|
|
|
|
if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
testname = '[ruby-dev:38588]'
|
|
|
|
batch = "batch_tmp.#{$$}"
|
|
|
|
tmpfilename = "#{tmpdir}/#{batch}.bat"
|
|
|
|
open(tmpfilename, "wb") {|f| f.print "\r\n"}
|
|
|
|
assert(system(tmpfilename), testname)
|
|
|
|
assert(system("#{tmpdir}/#{batch}"), testname)
|
|
|
|
assert(system(tmpfilename, "1"), testname)
|
|
|
|
assert(system("#{tmpdir}/#{batch}", "1"), testname)
|
|
|
|
begin
|
|
|
|
path = ENV["PATH"]
|
|
|
|
ENV["PATH"] = "#{tmpdir.tr(File::SEPARATOR, File::ALT_SEPARATOR)}#{File::PATH_SEPARATOR + path if path}"
|
|
|
|
assert(system("#{batch}.bat"), testname)
|
|
|
|
assert(system(batch), testname)
|
|
|
|
assert(system("#{batch}.bat", "1"), testname)
|
|
|
|
assert(system(batch, "1"), testname)
|
|
|
|
ensure
|
|
|
|
ENV["PATH"] = path
|
|
|
|
end
|
|
|
|
File.unlink tmpfilename
|
|
|
|
end
|
2007-09-28 18:22:23 +00:00
|
|
|
}
|
2003-12-23 10:43:04 +00:00
|
|
|
end
|
2003-09-05 15:15:43 +00:00
|
|
|
|
2011-02-14 08:30:00 +00:00
|
|
|
def test_system_at
|
|
|
|
if /mswin|mingw/ =~ RUBY_PLATFORM
|
2011-02-20 15:39:53 +00:00
|
|
|
bug4393 = '[ruby-core:35218]'
|
2011-02-14 08:49:55 +00:00
|
|
|
|
|
|
|
# @ + builtin command
|
2011-02-20 15:39:53 +00:00
|
|
|
assert_equal("foo\n", `@echo foo`, bug4393);
|
|
|
|
assert_equal("foo\n", `@@echo foo`, bug4393);
|
|
|
|
assert_equal("@@foo\n", `@@echo @@foo`, bug4393);
|
|
|
|
|
2011-03-07 08:44:45 +00:00
|
|
|
# @ + non builtin command
|
2011-02-14 08:49:55 +00:00
|
|
|
Dir.mktmpdir("ruby_script_tmp") {|tmpdir|
|
|
|
|
tmpfilename = "#{tmpdir}/ruby_script_tmp.#{$$}"
|
|
|
|
|
|
|
|
tmp = open(tmpfilename, "w")
|
2011-02-20 15:39:53 +00:00
|
|
|
tmp.print "foo\nbar\nbaz\n@foo";
|
2011-02-14 08:49:55 +00:00
|
|
|
tmp.close
|
2011-02-20 15:39:53 +00:00
|
|
|
|
|
|
|
assert_match(/\Abar\nbaz\n?\z/, `@@findstr "ba" #{tmpfilename.gsub("/", "\\")}`, bug4393);
|
2011-02-14 08:49:55 +00:00
|
|
|
}
|
2011-02-14 08:30:00 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-07 08:44:45 +00:00
|
|
|
def test_system_redirect_win
|
|
|
|
if /mswin|mingw/ !~ RUBY_PLATFORM
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
cmd = "%WINDIR%/system32/ping.exe \"BFI3CHL671\" > out.txt 2>NUL"
|
|
|
|
assert_equal(false, system(cmd), '[ruby-talk:258939]');
|
|
|
|
|
|
|
|
cmd = "\"%WINDIR%/system32/ping.exe BFI3CHL671\" > out.txt 2>NUL"
|
|
|
|
assert_equal(false, system(cmd), '[ruby-talk:258939]');
|
|
|
|
end
|
|
|
|
|
2007-11-18 07:18:56 +00:00
|
|
|
def test_empty_evstr
|
|
|
|
assert_equal("", eval('"#{}"', nil, __FILE__, __LINE__), "[ruby-dev:25113]")
|
2004-12-08 02:46:39 +00:00
|
|
|
end
|
2010-11-04 16:21:38 +00:00
|
|
|
|
|
|
|
def test_fallback_to_sh
|
|
|
|
Dir.mktmpdir("ruby_script_tmp") {|tmpdir|
|
|
|
|
tmpfilename = "#{tmpdir}/ruby_script_tmp.#{$$}"
|
|
|
|
open(tmpfilename, "w") {|f|
|
|
|
|
f.puts ": ;"
|
|
|
|
f.chmod(0755)
|
|
|
|
}
|
|
|
|
assert_equal(true, system(tmpfilename), '[ruby-core:32745]')
|
|
|
|
}
|
2010-11-05 03:23:10 +00:00
|
|
|
end if File.executable?("/bin/sh")
|
2003-09-04 16:18:59 +00:00
|
|
|
end
|