mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
Stop writing scratch final.patch files now that diffs are projected from run state, and remove the unused cache/artifacts/values plumbing while keeping runtime/blobs materialization intact. Update tests and run-directory docs to match the current scratch contract.
157 lines
4.3 KiB
Rust
157 lines
4.3 KiB
Rust
use fabro_test::{fabro_snapshot, test_context};
|
|
|
|
use super::support::{git_filters, setup_git_backed_changed_run, setup_git_backed_noop_run};
|
|
|
|
#[test]
|
|
fn help() {
|
|
let context = test_context!();
|
|
let mut cmd = context.command();
|
|
cmd.args(["diff", "--help"]);
|
|
fabro_snapshot!(context.filters(), cmd, @"
|
|
success: true
|
|
exit_code: 0
|
|
----- stdout -----
|
|
Show the diff of changes from a workflow run
|
|
|
|
Usage: fabro diff [OPTIONS] <RUN>
|
|
|
|
Arguments:
|
|
<RUN> Run ID or prefix
|
|
|
|
Options:
|
|
--json Output as JSON [env: FABRO_JSON=]
|
|
--server <SERVER> Fabro server target: http(s) URL or absolute Unix socket path [env: FABRO_SERVER=]
|
|
--debug Enable DEBUG-level logging (default is INFO) [env: FABRO_DEBUG=]
|
|
--node <NODE> Show diff for a specific node
|
|
--no-upgrade-check Disable automatic upgrade check [env: FABRO_NO_UPGRADE_CHECK=true]
|
|
--quiet Suppress non-essential output [env: FABRO_QUIET=]
|
|
--verbose Enable verbose output [env: FABRO_VERBOSE=]
|
|
-h, --help Print help
|
|
----- stderr -----
|
|
");
|
|
}
|
|
|
|
#[test]
|
|
fn diff_completed_run_without_changes_reports_no_patch() {
|
|
let context = test_context!();
|
|
let setup = setup_git_backed_noop_run(&context);
|
|
let mut cmd = context.command();
|
|
cmd.args(["diff", &setup.run.run_id]);
|
|
|
|
fabro_snapshot!(git_filters(&context), cmd, @"
|
|
success: false
|
|
exit_code: 1
|
|
----- stdout -----
|
|
----- stderr -----
|
|
error: Run completed but no stored diff exists — the run may not have produced any changes
|
|
");
|
|
}
|
|
|
|
#[test]
|
|
fn diff_missing_node_diff_reports_helpful_error() {
|
|
let context = test_context!();
|
|
let setup = setup_git_backed_changed_run(&context);
|
|
let mut cmd = context.command();
|
|
cmd.args(["diff", &setup.run.run_id, "--node", "missing"]);
|
|
|
|
fabro_snapshot!(git_filters(&context), cmd, @"
|
|
success: false
|
|
exit_code: 1
|
|
----- stdout -----
|
|
----- stderr -----
|
|
error: No diff found for node 'missing' — check the node ID and try again
|
|
");
|
|
}
|
|
|
|
#[test]
|
|
fn diff_completed_run_with_changes_prints_patch() {
|
|
let context = test_context!();
|
|
let setup = setup_git_backed_changed_run(&context);
|
|
let mut cmd = context.command();
|
|
cmd.args(["diff", &setup.run.run_id]);
|
|
|
|
fabro_snapshot!(git_filters(&context), cmd, @"
|
|
success: true
|
|
exit_code: 0
|
|
----- stdout -----
|
|
diff --git a/story.txt b/story.txt
|
|
index [SHA]..[SHA] 100644
|
|
--- a/story.txt
|
|
+++ b/story.txt
|
|
@@ -1 +1,3 @@
|
|
line 1
|
|
+line 2
|
|
+line 3
|
|
----- stderr -----
|
|
");
|
|
}
|
|
|
|
#[test]
|
|
fn diff_completed_run_reads_store_final_patch_without_disk_file() {
|
|
let context = test_context!();
|
|
let setup = setup_git_backed_changed_run(&context);
|
|
let _ = std::fs::remove_file(setup.run.run_dir.join("final.patch"));
|
|
|
|
let mut cmd = context.command();
|
|
cmd.args(["diff", &setup.run.run_id]);
|
|
|
|
fabro_snapshot!(git_filters(&context), cmd, @"
|
|
success: true
|
|
exit_code: 0
|
|
----- stdout -----
|
|
diff --git a/story.txt b/story.txt
|
|
index [SHA]..[SHA] 100644
|
|
--- a/story.txt
|
|
+++ b/story.txt
|
|
@@ -1 +1,3 @@
|
|
line 1
|
|
+line 2
|
|
+line 3
|
|
----- stderr -----
|
|
");
|
|
}
|
|
|
|
#[test]
|
|
fn diff_node_outputs_specific_patch() {
|
|
let context = test_context!();
|
|
let setup = setup_git_backed_changed_run(&context);
|
|
let mut cmd = context.command();
|
|
cmd.args(["diff", &setup.run.run_id, "--node", "step_one"]);
|
|
|
|
fabro_snapshot!(git_filters(&context), cmd, @"
|
|
success: true
|
|
exit_code: 0
|
|
----- stdout -----
|
|
diff --git a/story.txt b/story.txt
|
|
index [SHA]..[SHA] 100644
|
|
--- a/story.txt
|
|
+++ b/story.txt
|
|
@@ -1 +1,2 @@
|
|
line 1
|
|
+line 2
|
|
----- stderr -----
|
|
");
|
|
}
|
|
|
|
#[test]
|
|
fn diff_node_reads_store_patch_without_disk_file() {
|
|
let context = test_context!();
|
|
let setup = setup_git_backed_changed_run(&context);
|
|
|
|
let mut cmd = context.command();
|
|
cmd.args(["diff", &setup.run.run_id, "--node", "step_one"]);
|
|
|
|
fabro_snapshot!(git_filters(&context), cmd, @"
|
|
success: true
|
|
exit_code: 0
|
|
----- stdout -----
|
|
diff --git a/story.txt b/story.txt
|
|
index [SHA]..[SHA] 100644
|
|
--- a/story.txt
|
|
+++ b/story.txt
|
|
@@ -1 +1,2 @@
|
|
line 1
|
|
+line 2
|
|
----- stderr -----
|
|
");
|
|
}
|