Class: Mutineer::CLI
- Inherits:
-
Object
- Object
- Mutineer::CLI
- Defined in:
- lib/mutineer/cli.rb
Overview
Command-line entry point. start is the single public method called by
bin/mutineer; it parses argv, acts, and exits with a pinned code.
Exit codes (taxonomy consistent across M1–M5):
0 success / requested output (--version, --help, score >= threshold)
1 survivors below threshold, or a runtime error
2 usage / flag error (unknown subcommand, invalid flag, unknown operator,
out-of-range threshold)
Constant Summary collapse
- BANNER =
<<~USAGE Usage: mutineer [options] <command> [args] Commands: run [options] <source...> --test <test...> Mutate, run, and report run --dry-run [options] <source...> Print candidate mutations only Run options: --test FILE Test file covering the sources (repeatable) --operators LIST Comma-separated operator names (default: Tier 1 set) --threshold FLOAT Fail (exit 1) when score < FLOAT (default: 0 = off) --baseline FILE Fail (exit 1) on NEW survivors / score drop vs a prior --format json run (CI delta gate) --baseline-epsilon FLOAT Score-drop tolerance for --baseline (default: 0) --only NAME Restrict to one fully-qualified subject --since REF Only mutate lines changed since git REF (e.g. origin/main) --jobs N Parallel worker count (default: processor count) --strategy NAME reload (whole-file) or redefine (surgical); default: reload --framework NAME minitest or rspec (default: auto-detect from --test names) --boot FILE Require FILE once in the parent to boot the app env, then fork per mutant (Rails apps; requires --test) --rails Sugar for --boot config/environment --strategy redefine --format human|json Report format (default: human) --output FILE Write the report to FILE instead of stdout --dry-run List mutations without executing --verbose Surface the real error when a fork capture fails (alias: --debug) Options: --list-operators List available operators (default vs optional) and exit --version Print version and exit --help Print this help and exit USAGE
- PRECEDENCE_FLAGS =
Field symbols whose config-file value is suppressed when the flag is typed.
%i[operators jobs threshold only].freeze
- STRATEGY_ALIASES =
Deprecated internal strategy names, mapped to their canonical equivalents.
{ "7a" => "reload", "7b" => "redefine" }.freeze
Class Method Summary collapse
-
.autopair!(config, explicit) ⇒ Object
#11: auto-pair sources to tests by path convention when no --test was given (explicit --test wins — R5).
- .dry_run(config) ⇒ Object
- .execute(config) ⇒ Object
- .list_operators ⇒ Object
-
.preflight_baseline!(path) ⇒ Object
#13: a missing/unreadable/unparseable baseline is a usage error (exit 2), mirroring --output/--since preflight, so CI sees "bad invocation," not a backtrace mid-run.
- .preflight_output!(path) ⇒ Object
- .run(config, explicit = Set.new) ⇒ Object
- .start(argv) ⇒ Object
-
.tier2_hint(active) ⇒ Object
The tier-2 operators not in the active set, as a one-line hint (or nil when they're all already enabled).
-
.validate!(config, explicit = Set.new) ⇒ Object
Flag validation: every flag/usage failure exits 2 (C7), consistent with the taxonomy above — CI can tell "mistyped flag" from "tests too weak.".
-
.validate_paths!(config) ⇒ Object
R5: validate path existence up front so a typo is a clean usage error (exit 2), not an Errno::ENOENT backtrace from deep in the run.
-
.validate_since!(config) ⇒ Object
--since needs a real git repo and a resolvable ref; either failure is a usage error (exit 2) so CI sees "bad invocation," not "tests too weak.".
Class Method Details
.autopair!(config, explicit) ⇒ Object
#11: auto-pair sources to tests by path convention when no --test was given (explicit --test wins — R5). Each source with an inferred test on disk joins the run; a source with none is dropped with a one-line stderr warning (R3) and the run continues with the rest. If every source is dropped: in boot mode the dedicated --boot/--rails-requires-test check reports it; otherwise exit 2 with a usage message. The framework is re-detected from the inferred set unless it was set explicitly (a spec-only project loads/reports as rspec).
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
# File 'lib/mutineer/cli.rb', line 271 def self.autopair!(config, explicit) return unless config.tests.empty? paired = config.sources.filter_map do |s| t = Pairing.infer_test(s, project_root: config.project_root, prefer: config.framework) [s, t] if t end (config.sources - paired.map(&:first)).each do |s| warn "[mutineer] no test found by convention for #{s}; skipping" end config.sources = paired.map(&:first) config.tests = paired.map(&:last).uniq config.framework = Config.detect_framework(config.tests) unless explicit.include?(:framework) return unless config.sources.empty? return if config.boot # let the --boot/--rails-requires-test check report it warn "mutineer: no test files found by convention; pass --test or add tests" exit 2 end |
.dry_run(config) ⇒ Object
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 |
# File 'lib/mutineer/cli.rb', line 352 def self.dry_run(config) operator_classes = MutatorRegistry.resolve(config.operators || MutatorRegistry::DEFAULT_NAMES) sources = {} per_operator = Hash.new(0) skipped = 0 # --since narrows the preview to changed lines too, so `--dry-run --since` # shows exactly what a real `--since` run would mutate. changed = if config.since ChangedLines.for(ref: config.since, files: config.sources, project_root: config.project_root) end Project.discover(config.sources, only: config.only).each do |subject| source = (sources[subject.file] ||= Parser.parse_file(subject.file).source.source) operator_classes.each do |klass| klass.new.mutations_for(subject, source).each do |mutation| unless mutation.valid?(source) skipped += 1 next end if changed line = source.byteslice(0, mutation.start_offset).count("\n") + 1 next unless changed[File.(subject.file, config.project_root)]&.include?(line) end per_operator[mutation.operator] += 1 original = source.byteslice(mutation.start_offset...mutation.end_offset) line = source.byteslice(0, mutation.start_offset).count("\n") + 1 puts "[#{mutation.operator}] #{subject.qualified_name} " \ "#{subject.file}:#{line} `#{original}` -> `#{mutation.replacement}`" end end end total = per_operator.values.sum breakdown = per_operator.map { |op, n| "#{op}: #{n}" }.join(", ") summary = breakdown.empty? ? "" : "#{breakdown} — " puts "#{summary}#{total} mutations (dry run, not executed); #{skipped} skipped (invalid)" exit 0 end |
.execute(config) ⇒ Object
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 |
# File 'lib/mutineer/cli.rb', line 312 def self.execute(config) if config.tests.empty? warn "mutineer: run requires at least one --test file (or use --dry-run)" exit 2 end aggregate, source_map = Runner.execute(config) reporter = Reporter.new(aggregate, source_map) # #13: diff the current run against the baseline (preflighted above) by the # stable survivor id. The delta is rendered inline (human section / additive # json block) and gates exit independently of --threshold. delta = (Baseline.load(config.baseline).diff(aggregate, epsilon: config.baseline_epsilon) if config.baseline) reporter.report(out: $stdout, err: $stderr, threshold: config.threshold, format: config.format, output: config.output, baseline: delta) # #14: nudge toward the opt-in tier-2 operators (human report only — never # pollute JSON output). if config.format != "json" && (hint = tier2_hint(config.operators)) puts hint end # #13/KTD-4: --baseline and --threshold are independent gates OR'd together. # `max` of two 0/1 codes is the OR; usage (2) is handled earlier and wins. baseline_exit = delta&.regressed ? 1 : 0 exit [reporter.exit_code(threshold: config.threshold), baseline_exit].max end |
.list_operators ⇒ Object
143 144 145 146 147 148 149 |
# File 'lib/mutineer/cli.rb', line 143 def self.list_operators MutatorRegistry::ALL.each_key do |name| state = MutatorRegistry.default?(name) ? "default" : "disabled" puts format("%-20s tier %d %-9s %s", name, MutatorRegistry.tier(name), state, MutatorRegistry::DESCRIPTIONS[name]) end end |
.preflight_baseline!(path) ⇒ Object
#13: a missing/unreadable/unparseable baseline is a usage error (exit 2), mirroring --output/--since preflight, so CI sees "bad invocation," not a backtrace mid-run. Validating up front = attempting the load (it raises ConfigError/SystemCallError; the actual diff reloads in execute).
296 297 298 299 300 301 |
# File 'lib/mutineer/cli.rb', line 296 def self.preflight_baseline!(path) Baseline.load(path) rescue Mutineer::ConfigError, SystemCallError => e warn "mutineer: #{e.}" exit 2 end |
.preflight_output!(path) ⇒ Object
303 304 305 306 307 308 309 310 |
# File 'lib/mutineer/cli.rb', line 303 def self.preflight_output!(path) dir = File.dirname(File.(path)) return if File.directory?(dir) && File.writable?(dir) reason = File.directory?(dir) ? "directory is not writable" : "no such directory" warn "mutineer: cannot write to #{path}: #{reason}" exit 2 end |
.run(config, explicit = Set.new) ⇒ Object
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 |
# File 'lib/mutineer/cli.rb', line 151 def self.run(config, explicit = Set.new) if config.sources.empty? warn "mutineer: run requires at least one source file" exit 2 end validate!(config, explicit) config.dry_run ? dry_run(config) : execute(config) rescue ArgumentError => e # Unknown --operators value surfaces here; no backtrace reaches the user. warn "mutineer: #{e.}" exit 2 rescue SystemCallError => e # R5: a missing/unreadable path reaches here as Errno::ENOENT etc. — a plain # message and usage exit, never a raw backtrace. warn "mutineer: #{e.}" exit 2 rescue SyntaxError => e # A syntactically invalid source file surfaces when `require`d; report it # cleanly rather than dumping a backtrace. warn "mutineer: cannot load source: #{e.}" exit 1 rescue Mutineer::ParseError => e warn "mutineer: error reading: #{e.}" exit 1 end |
.start(argv) ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/mutineer/cli.rb', line 66 def self.start(argv) opts = {} # symbol => value, the CLI-provided Config fields explicit = Set.new # precedence keys the user typed (KTD3) show_operators = false parser = OptionParser.new do |o| o. = BANNER o.on("--version") do puts Mutineer::VERSION exit 0 end o.on("--help") do puts BANNER exit 0 end o.on("--list-operators") { show_operators = true } o.on("--dry-run") { opts[:dry_run] = true } o.on("--only NAME") { |v| opts[:only] = v; explicit << :only } o.on("--since REF") { |v| opts[:since] = v; explicit << :since } o.on("--test FILE") { |v| (opts[:tests] ||= []) << v } o.on("--operators LIST") { |v| opts[:operators] = v.split(",").map(&:strip); explicit << :operators } o.on("--threshold FLOAT") { |v| opts[:threshold] = v.to_f; explicit << :threshold } o.on("--jobs N") { |v| opts[:jobs] = v; explicit << :jobs } o.on("--strategy STRAT") { |v| opts[:strategy] = v; explicit << :strategy } o.on("--framework NAME") { |v| opts[:framework] = v; explicit << :framework } o.on("--boot FILE") { |v| opts[:boot] = v; explicit << :boot } o.on("--rails") { opts[:rails] = true } o.on("--verbose") { opts[:verbose] = true } o.on("--debug") { opts[:verbose] = true } # alias of --verbose o.on("--format FORMAT") { |v| opts[:format] = v } o.on("--output FILE") { |v| opts[:output] = v } # #13: --baseline is also a .mutineer.yml key, so mark it explicit when # typed (CLI wins over the file). --baseline-epsilon is CLI-only. o.on("--baseline FILE") { |v| opts[:baseline] = v; explicit << :baseline } o.on("--baseline-epsilon FLOAT") { |v| opts[:baseline_epsilon] = v.to_f } end begin parser.parse!(argv) rescue OptionParser::InvalidOption, OptionParser::MissingArgument => e warn "mutineer: #{e.}" exit 2 end if show_operators list_operators exit 0 end if argv.empty? puts BANNER exit 0 end begin file_path = Config.find_file file_hash = file_path ? Config.from_file(file_path) : {} config = Config.resolve(opts, file_hash, explicit) rescue Mutineer::ConfigError => e # R8: the lib layer raises instead of killing the host; the CLI maps a # config (usage) error to exit 2. warn "mutineer: #{e.}" exit 2 end case argv.first when "run" # #11: a directory source expands to its **/*.rb files; literal files pass # through. Test inference (when --test is omitted) happens in validate!. config.sources = Pairing.(argv[1..], project_root: config.project_root) run(config, explicit) else warn "mutineer: unknown command '#{argv.first}'" exit 2 end end |
.tier2_hint(active) ⇒ Object
The tier-2 operators not in the active set, as a one-line hint (or nil when
they're all already enabled). active nil means the default (Tier-1) set.
343 344 345 346 347 348 349 350 |
# File 'lib/mutineer/cli.rb', line 343 def self.tier2_hint(active) active ||= MutatorRegistry::DEFAULT_NAMES unused = MutatorRegistry::TIER2_NAMES - active return if unused.empty? "#{unused.size} tier-2 operators available (#{unused.join(', ')}) — " \ "enable with --operators <list>." end |
.validate!(config, explicit = Set.new) ⇒ Object
Flag validation: every flag/usage failure exits 2 (C7), consistent with the taxonomy above — CI can tell "mistyped flag" from "tests too weak."
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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/mutineer/cli.rb', line 180 def self.validate!(config, explicit = Set.new) unless (0.0..100.0).cover?(config.threshold) warn "mutineer: --threshold must be between 0 and 100" exit 2 end jobs = Integer(config.jobs.to_s, exception: false) if jobs.nil? || jobs < 1 warn "mutineer: --jobs requires a positive integer (got: #{config.jobs})" exit 2 end config.jobs = jobs unless %w[human json].include?(config.format) warn %(mutineer: unknown format "#{config.format}". Expected: human, json) exit 2 end # Canonical strategies are reload|redefine; 7a/7b are accepted as deprecated # aliases. Normalize to canonical so the rest of the pipeline sees one name. config.strategy = STRATEGY_ALIASES.fetch(config.strategy, config.strategy) unless %w[reload redefine].include?(config.strategy) warn %(mutineer: unknown strategy "#{config.strategy}". Expected: reload, redefine) exit 2 end unless %w[minitest rspec].include?(config.framework) warn %(mutineer: unknown framework "#{config.framework}". Expected: minitest, rspec) exit 2 end validate_since!(config) if config.since preflight_output!(config.output) if config.output preflight_baseline!(config.baseline) if config.baseline # #11: when --test is omitted, infer each source's test by convention so the # boot-once/fork-per-test core (which pairs empirically by coverage) gets a # populated config.tests. Runs after every flag/usage check above so a # mistyped flag still reports the flag; skipped under --dry-run (no tests # needed). validate_paths! then sees the inferred (real) tests. autopair!(config, explicit) unless config.dry_run # Boot mode does no coverage selection — every mutant runs the given tests — # so at least one --test file is mandatory (there is nothing to select from). if config.boot && config.tests.empty? warn "mutineer: --boot/--rails requires at least one --test file" exit 2 end validate_paths!(config) end |
.validate_paths!(config) ⇒ Object
R5: validate path existence up front so a typo is a clean usage error (exit 2), not an Errno::ENOENT backtrace from deep in the run. Flag checks run first so a bad flag still reports the flag, not the missing file.
255 256 257 258 259 260 261 262 |
# File 'lib/mutineer/cli.rb', line 255 def self.validate_paths!(config) missing = (config.sources + config.tests) .reject { |p| File.exist?(File.(p, config.project_root)) } return if missing.empty? warn "mutineer: no such file: #{missing.join(', ')}" exit 2 end |
.validate_since!(config) ⇒ Object
--since needs a real git repo and a resolvable ref; either failure is a usage error (exit 2) so CI sees "bad invocation," not "tests too weak."
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/mutineer/cli.rb', line 234 def self.validate_since!(config) _out, _err, status = Open3.capture3( "git", "-C", config.project_root, "rev-parse", "--verify", "--quiet", "#{config.since}^{commit}" ) return if status.success? inside, = Open3.capture3( "git", "-C", config.project_root, "rev-parse", "--is-inside-work-tree" ) msg = inside.strip == "true" ? "unknown git ref: #{config.since}" : "--since requires a git repository" warn "mutineer: #{msg}" exit 2 rescue Errno::ENOENT warn "mutineer: --since requires git on PATH" exit 2 end |