Files
copilotkit__copilotkit/showcase/bin/spec/test_cli_parsing.rb
Jordan Ritter c03270135e fix(showcase): promote resolves staging tag to GHCR digest before pinning prod
The showcase deploy model is STAGING = mutable :latest tag, PROD = immutable
@sha256: digest (P6 enforces both shapes). SnapshotCommand#build_snapshot
stored the raw serviceInstance.source.image, so for staging svc["image"] was
the :latest TAG. execute_promotion was pinning THAT mutable tag to prod via
serviceInstanceUpdate, defeating the immutable-prod invariant before
pin_and_verify raised on the nil expected_digest.

Fix: add PromoteCommand#resolved_prod_image — returns the staging svc as
@sha256:-pinned (pass-through if already pinned; resolves the tag via the
shared GHCR client otherwise; returns nil if the tag cannot be resolved).
execute_promotion now refuses (P0) rather than pin a mutable tag, and
check_p1_ghcr_digests verifies the resolved digest (it previously SKIPPED
tag-form images entirely, so :latest was never P1-checked).

Also:
- P2 race-check guards latest["meta"] when Railway returns a JSON String
  (deserialized as Ruby String, not Hash) — .dig used to crash with
  NoMethodError. SUCCESS status remains the real gate.
- Remove dead --include-startcommand flag (never read; doubly inert because
  P6 REFUSEs on any startCommand divergence).
- Spec hygiene: P3 skip-test raises if probe runs under --no-require-staging-
  green; P6 warn-proceed stubs execute_promotion to isolate the gate and
  asserts rc==0; test_ghcr_token teardown unconditionally deletes
  GITHUB_TOKEN/GHCR_TOKEN/RAILWAY_TOKEN before restoring priors.

70 runs, 204 assertions, 0 failures (up from 66/188 baseline).
2026-05-29 11:45:13 -07:00

113 lines
3.6 KiB
Ruby

# frozen_string_literal: true
require_relative "spec_helper"
require "stringio"
class CLIParsingTest < Minitest::Test
def test_usage_lists_all_nine_subcommands
out = Railway.usage
%w[snapshot restore rollback rollback-commit promote pin env-diff
resolve-digest lint-prod].each do |sub|
assert_includes out, sub, "usage missing subcommand: #{sub}"
end
end
def test_help_returns_zero
rc = nil
silence_io { rc = Railway.run(["--help"]) }
assert_equal 0, rc
end
def test_version_returns_zero
rc = nil
silence_io { rc = Railway.run(["--version"]) }
assert_equal 0, rc
end
def test_unknown_subcommand_returns_2
rc = nil
silence_io { rc = Railway.run(["definitely-not-a-cmd"]) }
assert_equal 2, rc
end
def test_snapshot_command_parses_env_and_output
c = Railway::SnapshotCommand.new(["--env", "staging", "--output", "/tmp/x.yaml"])
c.parser.parse!(c.argv)
assert_equal "staging", c.options[:env]
assert_equal "/tmp/x.yaml", c.options[:output]
end
def test_restore_command_requires_env_and_snapshot
c = Railway::RestoreCommand.new([])
ex = nil
silence_io { ex = assert_raises(SystemExit) { c.run } }
assert_equal 2, ex.status
end
def test_rollback_command_parses_to_flag
c = Railway::RollbackCommand.new(["--env", "staging", "--service", "showcase-shell", "--to", "dep-123"])
c.parser.parse!(c.argv)
assert_equal "dep-123", c.options[:to]
end
def test_envdiff_requires_two_args
c = Railway::EnvDiffCommand.new(["staging"])
ex = nil
silence_io { ex = assert_raises(SystemExit) { c.run } }
assert_equal 2, ex.status
end
def test_promote_flags_parse
c = Railway::PromoteCommand.new(["--confirm-divergence", "--yes", "--dry-run"])
c.parser.parse!(c.argv)
assert c.options[:confirm_divergence]
assert c.options[:yes]
assert c.options[:dry_run]
end
def test_resolve_digest_requires_arg
c = Railway::ResolveDigestCommand.new([])
ex = nil
silence_io { ex = assert_raises(SystemExit) { c.run } }
assert_equal 2, ex.status
end
def test_lint_prod_parses_format_and_exit_zero
c = Railway::LintProdCommand.new(["--exit-zero", "--format", "json"])
c.parser.parse!(c.argv)
assert_equal true, c.instance_variable_get(:@exit_zero)
assert_equal "json", c.instance_variable_get(:@format)
end
def test_lint_prod_rejects_invalid_format
c = Railway::LintProdCommand.new(["--format", "yaml"])
assert_raises(OptionParser::InvalidArgument) { c.parser.parse!(c.argv) }
end
def test_lint_prod_defaults_format_to_text
c = Railway::LintProdCommand.new([])
c.parser.parse!(c.argv)
assert_equal "text", c.instance_variable_get(:@format)
assert_equal false, c.instance_variable_get(:@exit_zero)
end
def test_env_id_for_resolves_aliases
assert_equal Railway::PRODUCTION_ENV_ID, Railway.env_id_for("production")
assert_equal Railway::PRODUCTION_ENV_ID, Railway.env_id_for("prod")
assert_equal Railway::STAGING_ENV_ID, Railway.env_id_for("staging")
assert_equal Railway::STAGING_ENV_ID, Railway.env_id_for("stage")
end
private
def silence_io
orig_stdout, orig_stderr = $stdout, $stderr
$stdout = StringIO.new
$stderr = StringIO.new
yield
ensure
$stdout = orig_stdout
$stderr = orig_stderr
end
end