Removed obsolete bin scripts.
[rbx.git] / test / rubygems / test_gem_commands_pristine_command.rb
blobcd1d3500aeead20af5301bb5d1496808e0835a39
1 require 'test/unit'
2 require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
3 require 'rubygems/commands/pristine_command'
5 class TestGemCommandsPristineCommand < RubyGemTestCase
7   def setup
8     super
9     @cmd = Gem::Commands::PristineCommand.new
10   end
12   def test_execute
13     a = quick_gem 'a' do |s| s.executables = %w[foo] end
14     FileUtils.mkdir_p File.join(@tempdir, 'bin')
15     File.open File.join(@tempdir, 'bin', 'foo'), 'w' do |fp|
16       fp.puts "#!/usr/bin/ruby"
17     end
19     install_gem a
21     @cmd.options[:args] = %w[a]
23     use_ui @ui do
24       @cmd.execute
25     end
27     out = @ui.output.split "\n"
29     assert_equal "Restoring gem(s) to pristine condition...", out.shift
30     assert_equal "#{a.full_name} is in pristine condition", out.shift
31     assert out.empty?, out.inspect
32   end
34   def test_execute_all
35     a = quick_gem 'a' do |s| s.executables = %w[foo] end
36     FileUtils.mkdir_p File.join(@tempdir, 'bin')
37     File.open File.join(@tempdir, 'bin', 'foo'), 'w' do |fp|
38       fp.puts "#!/usr/bin/ruby"
39     end
41     install_gem a
43     gem_bin = File.join @gemhome, 'gems', "#{a.full_name}", 'bin', 'foo'
45     FileUtils.rm gem_bin
47     @cmd.handle_options %w[--all]
49     use_ui @ui do
50       @cmd.execute
51     end
53     out = @ui.output.split "\n"
55     assert_equal "Restoring gem(s) to pristine condition...", out.shift
56     assert_equal "Restoring 1 file to #{a.full_name}...", out.shift
57     assert_equal "  #{gem_bin}", out.shift
58     assert out.empty?, out.inspect
59   end
61   def test_execute_missing_cache_gem
62     a = quick_gem 'a' do |s| s.executables = %w[foo] end
63     FileUtils.mkdir_p File.join(@tempdir, 'bin')
64     File.open File.join(@tempdir, 'bin', 'foo'), 'w' do |fp|
65       fp.puts "#!/usr/bin/ruby"
66     end
68     install_gem a
70     FileUtils.rm File.join(@gemhome, 'cache', "#{a.full_name}.gem")
72     @cmd.options[:args] = %w[a]
74     use_ui @ui do
75       @cmd.execute
76     end
78     out = @ui.output.split "\n"
80     assert_equal "Restoring gem\(s\) to pristine condition...", out.shift
81     assert out.empty?, out.inspect
83     assert_equal "ERROR:  Cached gem for #{a.full_name} not found, use `gem install` to restore\n",
84                  @ui.error
85   end
87   def test_execute_no_gem
88     @cmd.options[:args] = %w[]
90     e = assert_raise Gem::CommandLineError do
91       use_ui @ui do
92         @cmd.execute
93       end
94     end
96     assert_match %r|specify a gem name|, e.message
97   end
99 end