class PuppetlabsSpecHelper::Tasks::CheckSymlinks

Helpers for validating symlinks.

Constants

DEFAULT_IGNORED
IGNORE_LIST_FILES

Public Instance Methods

check(dir = Dir.pwd) click to toggle source
# File lib/puppetlabs_spec_helper/tasks/check_symlinks.rb, line 20
def check(dir = Dir.pwd)
  dir = Pathname.new(dir) unless dir.is_a?(Pathname)
  results = []

  dir.each_child(true) do |child|
    next if ignored?(child.to_s)

    if child.symlink?
      results << child
    elsif child.directory? && child.basename.to_s !~ /^(\.git|\.?bundle)$/
      results.concat(check(child))
    end
  end

  results
end
ignore_pathspec() click to toggle source
# File lib/puppetlabs_spec_helper/tasks/check_symlinks.rb, line 43
def ignore_pathspec
  @ignore_pathspec ||= PathSpec.new(DEFAULT_IGNORED).tap do |pathspec|
    IGNORE_LIST_FILES.each do |f|
      next unless File.file?(f) && File.readable?(f)

      File.open(f, 'r') { |fd| pathspec.add(fd) }
    end
  end
end
ignored?(path) click to toggle source
# File lib/puppetlabs_spec_helper/tasks/check_symlinks.rb, line 37
def ignored?(path)
  path = "#{path}/" if File.directory?(path)

  !ignore_pathspec.match_paths([path], Dir.pwd).empty?
end