Class: PDK::Validate::BaseValidator
- Inherits:
-
Object
- Object
- PDK::Validate::BaseValidator
- Defined in:
- lib/pdk/validate/base_validator.rb
Direct Known Subclasses
MetadataJSONLint, MetadataSyntax, MetadataValidator, PuppetEPP, PuppetLint, PuppetSyntax, PuppetValidator, Rubocop, RubyValidator, Tasks::MetadataLint, Tasks::Name, TasksValidator, YAML::Syntax, YAMLValidator
Constant Summary collapse
- INVOKE_STYLE =
Controls how many times the validator is invoked.
:once - The validator will be invoked once and passed all the targets. :per_target - The validator will be invoked for each target separately.
:once
- ALLOW_EMPTY_TARGETS =
Controls how the validator behaves if not passed any targets.
true - PDK will not pass the globbed targets to the validator command and it will instead rely on the underlying tool to find its own default targets. false - PDK will pass the globbed targets to the validator command.
false
- IGNORE_DOTFILES =
true
Class Method Summary collapse
- .allow_empty_targets? ⇒ Boolean
- .cmd_path ⇒ Object
- .ignore_dotfiles? ⇒ Boolean
- .ignore_pathspec ⇒ Object
- .invoke(report, options = {}) ⇒ Object
- .parse_options(_options, targets) ⇒ Object
-
.parse_targets(options) ⇒ Object
Parses the target strings provided from the CLI.
- .process_invalid(report, invalid = []) ⇒ Object
- .process_skipped(report, skipped = []) ⇒ Object
- .spinner_text(_targets = nil) ⇒ Object
Class Method Details
.allow_empty_targets? ⇒ Boolean
134 135 136 |
# File 'lib/pdk/validate/base_validator.rb', line 134 def self.allow_empty_targets? self::ALLOW_EMPTY_TARGETS == true end |
.cmd_path ⇒ Object
26 27 28 |
# File 'lib/pdk/validate/base_validator.rb', line 26 def self.cmd_path File.join(PDK::Util.module_root, 'bin', cmd) end |
.ignore_dotfiles? ⇒ Boolean
96 97 98 |
# File 'lib/pdk/validate/base_validator.rb', line 96 def self.ignore_dotfiles? self::IGNORE_DOTFILES end |
.ignore_pathspec ⇒ Object
84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/pdk/validate/base_validator.rb', line 84 def self.ignore_pathspec ignore_pathspec = PDK::Module.default_ignored_pathspec(ignore_dotfiles?) if respond_to?(:pattern_ignore) Array(pattern_ignore).each do |pattern| ignore_pathspec.add(pattern) end end ignore_pathspec end |
.invoke(report, options = {}) ⇒ Object
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/pdk/validate/base_validator.rb', line 138 def self.invoke(report, = {}) targets, skipped, invalid = parse_targets() process_skipped(report, skipped) process_invalid(report, invalid) return 0 if targets.empty? PDK::Util::Bundler.ensure_binstubs!(cmd) # If invoking :per_target, split the targets array into an array of # single element arrays (one per target). If invoking :once, wrap the # targets array in another array. This is so we can loop through the # invokes with the same logic, regardless of which invoke style is # needed. # if self::INVOKE_STYLE == :per_target targets = targets.combination(1).to_a else targets = targets.each_slice(1000).to_a [:split_exec] = PDK::CLI::ExecGroup.new(spinner_text(targets), parallel: false) end if .fetch(:targets, []).empty? && allow_empty_targets? targets = [[]] end exit_codes = [] targets.each do |invokation_targets| cmd_argv = (, invokation_targets).unshift(cmd_path).compact cmd_argv.unshift(File.join(PDK::Util::RubyVersion.bin_path, 'ruby.exe'), '-W0') if Gem.win_platform? command = PDK::CLI::Exec::Command.new(*cmd_argv).tap do |c| c.context = :module c.environment = { 'PUPPET_GEM_VERSION' => [:puppet] } if [:puppet] unless [:split_exec] exec_group = [:exec_group] if exec_group sub_spinner = exec_group.add_spinner(spinner_text(invokation_targets)) c.register_spinner(sub_spinner) else c.add_spinner(spinner_text(invokation_targets)) end end end if [:split_exec] [:split_exec].register do result = command.execute! begin parse_output(report, result, invokation_targets.compact) rescue PDK::Validate::ParseOutputError => e $stderr.puts e. end result[:exit_code] end else result = command.execute! exit_codes << result[:exit_code] begin parse_output(report, result, invokation_targets.compact) rescue PDK::Validate::ParseOutputError => e $stderr.puts e. end end end .key?(:split_exec) ? [:split_exec].exit_code : exit_codes.max end |
.parse_options(_options, targets) ⇒ Object
100 101 102 |
# File 'lib/pdk/validate/base_validator.rb', line 100 def self.(, targets) targets end |
.parse_targets(options) ⇒ Object
Parses the target strings provided from the CLI
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/pdk/validate/base_validator.rb', line 41 def self.parse_targets() # If no targets are specified, then we will run validations from the # base module directory. targets = .fetch(:targets, []).empty? ? [PDK::Util.module_root] : [:targets] targets.map! { |r| r.gsub(File::ALT_SEPARATOR, File::SEPARATOR) } if File::ALT_SEPARATOR skipped = [] invalid = [] matched = targets.map { |target| if respond_to?(:pattern) if PDK::Util::Filesystem.directory?(target) target_root = PDK::Util.module_root pattern_glob = Array(pattern).map { |p| PDK::Util::Filesystem.glob(File.join(target_root, p), File::FNM_DOTMATCH) } target_list = pattern_glob.flatten .select { |glob| PDK::Util::Filesystem.fnmatch(File.join(PDK::Util::Filesystem.(PDK::Util.canonical_path(target)), '*'), glob, File::FNM_DOTMATCH) } .map { |glob| Pathname.new(glob).relative_path_from(Pathname.new(PDK::Util.module_root)).to_s } ignore_list = ignore_pathspec target_list = target_list.reject { |file| ignore_list.match(file) } skipped << target if target_list.flatten.empty? target_list elsif PDK::Util::Filesystem.file?(target) if Array(pattern).include? target target elsif Array(pattern).any? { |p| PDK::Util::Filesystem.fnmatch(PDK::Util::Filesystem.(p), PDK::Util::Filesystem.(target), File::FNM_DOTMATCH) } target else skipped << target next end else invalid << target next end else target end }.compact.flatten [matched, skipped, invalid] end |
.process_invalid(report, invalid = []) ⇒ Object
121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/pdk/validate/base_validator.rb', line 121 def self.process_invalid(report, invalid = []) invalid.each do |invalid_target| PDK.logger.debug(_('%{validator}: Skipped \'%{target}\'. Target file not found.') % { validator: name, target: invalid_target }) report.add_event( file: invalid_target, source: name, message: _('File does not exist.'), severity: :error, state: :error, ) end end |
.process_skipped(report, skipped = []) ⇒ Object
108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/pdk/validate/base_validator.rb', line 108 def self.process_skipped(report, skipped = []) skipped.each do |skipped_target| PDK.logger.debug(_('%{validator}: Skipped \'%{target}\'. Target does not contain any files to validate (%{pattern}).') % { validator: name, target: skipped_target, pattern: pattern }) report.add_event( file: skipped_target, source: name, message: _('Target does not contain any files to validate (%{pattern}).') % { pattern: pattern }, severity: :info, state: :skipped, ) end end |
.spinner_text(_targets = nil) ⇒ Object
104 105 106 |
# File 'lib/pdk/validate/base_validator.rb', line 104 def self.spinner_text(_targets = nil) _('Invoking %{cmd}') % { cmd: cmd } end |