2003-09-04 12:18:59 -04:00
|
|
|
require 'test/unit'
|
2003-10-21 23:53:41 -04:00
|
|
|
require 'envutil'
|
2003-09-04 12:18:59 -04:00
|
|
|
|
|
|
|
class TestSystem < Test::Unit::TestCase
|
2003-09-05 11:15:43 -04:00
|
|
|
def valid_syntax?(code, fname)
|
2007-08-17 23:24:32 -04:00
|
|
|
code = code.sub(/\A(?:\s*\#.*$)*(\n)?/n) {
|
|
|
|
"#$&#{"\n" if $1 && !$2}BEGIN{return true}\n"
|
|
|
|
}
|
|
|
|
eval(code, nil, fname, 0)
|
2003-09-05 11:15:43 -04:00
|
|
|
end
|
|
|
|
|
2003-09-04 12:18:59 -04:00
|
|
|
def test_system
|
2003-10-04 22:56:42 -04:00
|
|
|
ruby = EnvUtil.rubybin
|
2003-09-05 11:15:43 -04:00
|
|
|
assert_equal("foobar\n", `echo foobar`)
|
|
|
|
assert_equal('foobar', `#{ruby} -e 'print "foobar"'`)
|
|
|
|
|
2003-09-04 12:18:59 -04:00
|
|
|
tmp = open("script_tmp", "w")
|
|
|
|
tmp.print "print $zzz\n";
|
|
|
|
tmp.close
|
2003-09-05 11:15:43 -04:00
|
|
|
|
|
|
|
assert_equal('true', `#{ruby} -s script_tmp -zzz`)
|
|
|
|
assert_equal('555', `#{ruby} -s script_tmp -zzz=555`)
|
|
|
|
|
2003-09-04 12:18:59 -04:00
|
|
|
tmp = open("script_tmp", "w")
|
|
|
|
tmp.print "#! /usr/local/bin/ruby -s\n";
|
|
|
|
tmp.print "print $zzz\n";
|
|
|
|
tmp.close
|
2003-09-05 11:15:43 -04:00
|
|
|
|
|
|
|
assert_equal('678', `#{ruby} script_tmp -zzz=678`)
|
|
|
|
|
2003-09-04 12:18:59 -04:00
|
|
|
tmp = open("script_tmp", "w")
|
|
|
|
tmp.print "this is a leading junk\n";
|
|
|
|
tmp.print "#! /usr/local/bin/ruby -s\n";
|
|
|
|
tmp.print "print $zzz\n";
|
|
|
|
tmp.print "__END__\n";
|
|
|
|
tmp.print "this is a trailing junk\n";
|
|
|
|
tmp.close
|
2003-09-05 11:15:43 -04:00
|
|
|
|
2006-09-25 02:07:36 -04:00
|
|
|
assert_equal('', `#{ruby} -x script_tmp`)
|
2003-09-05 11:15:43 -04:00
|
|
|
assert_equal('555', `#{ruby} -x script_tmp -zzz=555`)
|
|
|
|
|
2003-09-04 12:18:59 -04:00
|
|
|
tmp = open("script_tmp", "w")
|
|
|
|
for i in 1..5
|
|
|
|
tmp.print i, "\n"
|
|
|
|
end
|
|
|
|
tmp.close
|
2003-09-05 11:15:43 -04:00
|
|
|
|
2005-12-29 09:54:13 -05:00
|
|
|
`#{ruby} -i.bak -pe '$_.sub!(/^[0-9]+$/){$&.to_i * 5}' script_tmp`
|
2003-09-04 12:18:59 -04:00
|
|
|
tmp = open("script_tmp", "r")
|
|
|
|
while tmp.gets
|
2003-09-05 11:15:43 -04:00
|
|
|
assert_equal(0, $_.to_i % 5)
|
2003-09-04 12:18:59 -04:00
|
|
|
end
|
|
|
|
tmp.close
|
2003-09-05 11:15:43 -04:00
|
|
|
|
2003-09-04 12:18:59 -04:00
|
|
|
File.unlink "script_tmp" or `/bin/rm -f "script_tmp"`
|
|
|
|
File.unlink "script_tmp.bak" or `/bin/rm -f "script_tmp.bak"`
|
2003-12-23 05:43:04 -05:00
|
|
|
end
|
2003-09-05 11:15:43 -04:00
|
|
|
|
2003-12-23 05:43:04 -05:00
|
|
|
def test_syntax
|
2003-12-23 02:13:59 -05:00
|
|
|
assert_nothing_raised(Exception) do
|
2003-12-23 05:43:04 -05:00
|
|
|
for script in Dir[File.expand_path("../../../{lib,sample,ext}/**/*.rb", __FILE__)]
|
2003-09-05 11:15:43 -04:00
|
|
|
valid_syntax? IO::read(script), script
|
2003-09-04 12:18:59 -04:00
|
|
|
end
|
|
|
|
end
|
2003-09-05 11:15:43 -04:00
|
|
|
end
|
2004-12-07 21:46:39 -05:00
|
|
|
|
|
|
|
def test_empty_evstr # [ruby-dev:25113]
|
|
|
|
assert_equal("", eval('"#{}"', nil, __FILE__, __LINE__))
|
|
|
|
end
|
2003-09-04 12:18:59 -04:00
|
|
|
end
|