mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 fb2008a73a
			
		
	
	
		fb2008a73a
		
	
	
	
	
		
			
			* test/lib/find_executable.rb: Ditto. * test/lib/memory_status.rb: Ditto. * test/lib/test/unit.rb: require envutil. * test/: Don't require envutil in test files. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			68 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'shell'
 | |
| require 'tmpdir'
 | |
| 
 | |
| 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 teardown
 | |
|     Dir.rmdir(@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 exeext
 | |
|     RbConfig::CONFIG["EXECUTABLE_EXTS"][/\S+\z/]
 | |
|   end
 | |
| 
 | |
|   def test_system_external
 | |
|     name = "foo#{exeext}"
 | |
|     path = File.join(@tmpdir, name)
 | |
|     open(path, "w", 0755) {}
 | |
| 
 | |
|     cmd = assert_throw(catch_command_start) {@shell.system(name)}
 | |
|     assert_equal(path, cmd.command)
 | |
|   ensure
 | |
|     File.unlink(path)
 | |
|   end
 | |
| 
 | |
|   def test_system_not_found
 | |
|     bug8918 = '[ruby-core:57235] [Bug #8918]'
 | |
| 
 | |
|     name = "foo"
 | |
|     path = File.join(@tmpdir, name)
 | |
|     open(path, "w", 0644) {}
 | |
| 
 | |
|     assert_raise(Shell::Error::CommandNotFound, bug8918) {
 | |
|       catch(catch_command_start) {@shell.system(name)}
 | |
|     }
 | |
|   ensure
 | |
|     Process.waitall
 | |
|     File.unlink(path)
 | |
|   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
 |