homebrew-cask-versions/lib/hbc/cli/doctor.rb
Paul Hinze 5bbba24bf9 cli: [refactor] rename outdated option internally
The `Hbc.outdated` boolean was in the way of my implementation of an
`outdated` scope for `brew cask outdated`, so I took the opportunity to:

 * rename the flag internally to `cleanup_outdated`
 * move the cleanup tests over to rspec and rework them to test in a
   stubbed cleanroom environment
 * refactor the implementation of cleanup to make it a bit more
   testable - most importantly: inject the cache location and outdated
   config dependencies instead of looking them up from constants

Note that there's no change to the user-facing interface, it's still

```
brew cask cleanup --outdated
```
2015-02-07 18:06:51 -06:00

234 lines
9.3 KiB
Ruby

class Hbc::CLI::Doctor < Hbc::CLI::Base
def self.run
ohai 'OS X Release:', render_with_none_as_error( MacOS.release )
ohai 'OS X Release with Patchlevel:', render_with_none_as_error( MacOS.release_with_patchlevel )
ohai "Hardware Architecture:", render_with_none_as_error( "#{Hardware::CPU.type}-#{Hardware::CPU.bits}" )
ohai 'Ruby Version:', render_with_none_as_error( "#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}" )
ohai 'Ruby Path:', render_with_none_as_error( RbConfig.ruby )
# todo: consider removing most Homebrew constants from doctor output
ohai 'Homebrew Version:', render_with_none_as_error( homebrew_version )
ohai 'Homebrew Executable Path:', render_with_none_as_error( Hbc.homebrew_executable )
ohai 'Homebrew Cellar Path:', render_with_none_as_error( homebrew_cellar )
ohai 'Homebrew Repository Path:', render_with_none_as_error( homebrew_repository )
ohai 'Homebrew Origin:', render_with_none_as_error( homebrew_origin )
ohai 'Homebrew-cask Version:', render_with_none_as_error( HBC_VERSION )
ohai 'Homebrew-cask Install Location:', render_install_location( HBC_VERSION )
ohai 'Homebrew-cask Staging Location:', render_staging_location( Hbc.caskroom )
ohai 'Homebrew-cask Cached Downloads:', render_cached_downloads
ohai 'Homebrew-cask Default Tap Path:', render_tap_paths( fq_default_tap )
ohai 'Homebrew-cask Alternate Cask Taps:', render_tap_paths( alt_taps )
ohai 'Homebrew-cask Default Tap Cask Count:', render_with_none_as_error( default_cask_count )
ohai 'Contents of $LOAD_PATH:', render_load_path( $LOAD_PATH )
ohai 'Contents of $RUBYLIB Environment Variable:', render_env_var( 'RUBYLIB' )
ohai 'Contents of $RUBYOPT Environment Variable:', render_env_var( 'RUBYOPT' )
ohai 'Contents of $RUBYPATH Environment Variable:', render_env_var( 'RUBYPATH' )
ohai 'Contents of $RBENV_VERSION Environment Variable:', render_env_var( 'RBENV_VERSION' )
ohai 'Contents of $CHRUBY_VERSION Environment Variable:', render_env_var( 'CHRUBY_VERSION' )
ohai 'Contents of $GEM_HOME Environment Variable:', render_env_var( 'GEM_HOME' )
ohai 'Contents of $GEM_PATH Environment Variable:', render_env_var( 'GEM_PATH' )
ohai 'Contents of $BUNDLE_PATH Environment Variable:', render_env_var( 'BUNDLE_PATH' )
ohai 'Contents of $PATH Environment Variable:', render_env_var( 'PATH' )
ohai 'Contents of $SHELL Environment Variable:', render_env_var( 'SHELL' )
ohai 'Contents of Locale Environment Variables:', render_with_none( locale_variables )
ohai 'Running As Privileged User:', render_with_none_as_error( privileged_uid )
end
def self.fq_default_tap
return @fq_default_tap if @fq_default_tap
@fq_default_tap = notfound_string
begin
@fq_default_tap = homebrew_repository.join 'Library', 'Taps', Hbc.default_tap
rescue StandardError; end
@fq_default_tap
end
def self.alt_taps
alt_taps = notfound_string
begin
alt_taps = Pathname.glob(homebrew_repository.join 'Library', 'Taps', '*', '*', 'Casks').map(&:dirname) -
[fq_default_tap]
alt_taps = nil unless alt_taps.length > 0
rescue StandardError; end
alt_taps
end
def self.default_cask_count
default_cask_count = notfound_string
begin
default_cask_count = homebrew_repository.join(fq_default_tap, 'Casks').children.count(&:file?)
rescue StandardError
default_cask_count = "0 #{error_string %Q{Error reading #{fq_default_tap}}}"
end
default_cask_count
end
def self.homebrew_origin
homebrew_origin = notfound_string
begin
Dir.chdir(homebrew_repository) do
homebrew_origin = Hbc::SystemCommand.run('git',
:args => %w{config --get remote.origin.url},
:print_stderr => false).stdout.strip
end
if homebrew_origin !~ %r{\S}
homebrew_origin = "#{none_string} #{error_string}"
elsif homebrew_origin !~ %r{(mxcl|Homebrew)/homebrew(\.git)?\Z}
homebrew_origin.concat " #{error_string 'warning: nonstandard origin'}"
end
rescue StandardError
homebrew_origin = error_string 'Not Found - Error running git'
end
homebrew_origin
end
def self.homebrew_repository
homebrew_constants('repository')
end
def self.homebrew_cellar
homebrew_constants('cellar')
end
def self.homebrew_version
homebrew_constants('version')
end
def self.homebrew_libdir
@homebrew_libdir ||= if homebrew_repository.respond_to?(:join)
homebrew_repository.join('Library', 'Homebrew')
end
end
def self.homebrew_constants(name)
@homebrew_constants ||= {}
return @homebrew_constants[name] if @homebrew_constants.key?(name)
@homebrew_constants[name] = notfound_string
begin
@homebrew_constants[name] = Hbc::SystemCommand.run!(Hbc.homebrew_executable,
:args => [ "--#{name}" ],
:print_stderr => false).stdout.strip
if @homebrew_constants[name] !~ %r{\S}
@homebrew_constants[name] = "#{none_string} #{error_string}"
end
path = Pathname.new(@homebrew_constants[name])
@homebrew_constants[name] = path if path.exist?
rescue StandardError
@homebrew_constants[name] = error_string 'Not Found - Error running brew'
end
@homebrew_constants[name]
end
def self.locale_variables
ENV.keys.grep(/^(?:LC_\S+|LANG|LANGUAGE)\Z/).collect { |v| %Q{#{v}="#{ENV[v]}"} }.sort.join("\n")
end
def self.privileged_uid
privileged_uid = notfound_string
begin
privileged_uid = Process.euid == 0 ? "Yes #{error_string 'warning: not recommended'}" : 'No'
rescue StandardError; end
privileged_uid
end
def self.none_string
'<NONE>'
end
def self.legacy_tap_pattern
%r{phinze}
end
def self.notfound_string
"#{Tty.red.underline}Not Found - Unknown Error#{Tty.reset}"
end
def self.error_string(string='Error')
"#{Tty.red.underline}(#{string})#{Tty.reset}"
end
def self.render_with_none(string)
(string.nil? or not string.respond_to?(:to_s) or string.to_s.length == 0) ?
none_string :
string
end
def self.render_with_none_as_error(string)
(string.nil? or not string.respond_to?(:to_s) or string.to_s.length == 0) ?
"#{none_string} #{error_string}" :
string
end
def self.render_tap_paths(paths)
paths = [ paths ] unless paths.respond_to?(:each)
paths.collect do |dir|
if (dir.nil? or dir.to_s.length == 0) then
none_string
elsif dir.to_s.match(legacy_tap_pattern)
dir.to_s.concat(" #{error_string 'Warning: legacy tap path'}")
else
dir.to_s
end
end
end
def self.render_env_var(var)
if ENV.key?(var)
%Q{#{var}="#{ENV[var]}"}
else
none_string
end
end
# This could be done by calling into Homebrew, but the situation
# where "doctor" is needed is precisely the situation where such
# things are less dependable.
def self.render_install_location(current_version)
locations = Dir.glob(homebrew_cellar.join('brew-cask', '*')).reverse
locations.each do |l|
basename = File.basename l
l.concat %Q{ #{error_string %Q{error: old version. Run "brew cleanup".}}} unless basename == current_version
end
end
def self.render_staging_location(path)
path = Pathname.new(path)
if !path.exist?
%Q{#{path} #{error_string %Q{error: path does not exist}}}
elsif !path.writable?
%Q{#{path} #{error_string %Q{error: not writable by current user}}}
else
path
end
end
def self.render_load_path(paths)
if paths.nil? or paths.size == 0
return "#{none_string} #{error_string}"
end
copy = Array.new(paths)
unless Hbc::Utils.file_is_descendant(copy[0], homebrew_cellar)
copy[0] = "#{copy[0]} #{error_string %Q{error: should be descendant of Homebrew Cellar}}"
end
copy.map! do |elt|
elt = (homebrew_libdir and Hbc::Utils.file_is_descendant(elt, homebrew_libdir)) ?
"#{elt} #{error_string %Q{error: should not be descendant of Homebrew Library dir}}" :
elt
end
end
def self.render_cached_downloads
files = Hbc::CLI::Cleanup.default.all_cache_files
count = files.count
space = Hbc::CLI::Cleanup.default.space_in_megs files
[
HOMEBREW_CACHE,
HOMEBREW_CACHE_CASKS,
count.to_s.concat(" files").concat(count == 0 ? '' : %Q{ #{error_string %Q{warning: run "brew cask cleanup"}}}),
space.to_s.concat(" megs").concat(count == 0 ? '' : %Q{ #{error_string %Q{warning: run "brew cask cleanup"}}}),
]
end
def self.help
"checks for configuration issues"
end
end