-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_git_colocated.rs: demo bug with undoing branch creation after a …
…push This reveals another bug I found.
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -357,6 +357,70 @@ fn test_git_colocated_squash_push_undo() { | |
"###); | ||
} | ||
|
||
// TODO: Fix the BUG this reveals. It may be sufficient to make `jj git import` | ||
// use the "last seen git refs" file. | ||
#[test] | ||
fn test_git_colocated_undo_branch_creation() { | ||
let test_env = TestEnvironment::default(); | ||
let source_path = test_env.env_root().join("source"); | ||
git2::Repository::init_bare(&source_path).unwrap(); | ||
let repo_path = test_env.env_root().join("repo"); | ||
git2::Repository::clone(&source_path.as_os_str().to_string_lossy(), &repo_path).unwrap(); | ||
test_env.jj_cmd_success(&repo_path, &["init", "--git-repo=."]); | ||
test_env.jj_cmd_success(&repo_path, &["ci", "-m=0"]); | ||
test_env.jj_cmd_success(&repo_path, &["describe", "-m=A"]); | ||
test_env.jj_cmd_success(&repo_path, &["branch", "set", "master"]); | ||
test_env.jj_cmd_success(&repo_path, &["new", "-m=B"]); | ||
|
||
// Test the setup | ||
insta::assert_snapshot!(get_log_output_divergence(&test_env, &repo_path), @r###" | ||
@ mzvwutvlkqwt bc15ec74b27a B | ||
◉ rlvkpnrzqnoo 3495bd79af6e A master | ||
◉ qpvuntsmwlqt a56846756248 0 | ||
◉ zzzzzzzzzzzz 000000000000 | ||
"###); | ||
|
||
// Undo the branch creation | ||
test_env.jj_cmd_success(&repo_path, &["branch", "set", "branch"]); | ||
insta::assert_snapshot!(get_log_output_divergence(&test_env, &repo_path), @r###" | ||
@ mzvwutvlkqwt bc15ec74b27a B branch | ||
◉ rlvkpnrzqnoo 3495bd79af6e A master | ||
◉ qpvuntsmwlqt a56846756248 0 | ||
◉ zzzzzzzzzzzz 000000000000 | ||
"###); | ||
test_env.jj_cmd_success(&repo_path, &["op", "undo"]); | ||
insta::assert_snapshot!(get_log_output_divergence(&test_env, &repo_path), @r###" | ||
@ mzvwutvlkqwt bc15ec74b27a B | ||
◉ rlvkpnrzqnoo 3495bd79af6e A master | ||
◉ qpvuntsmwlqt a56846756248 0 | ||
◉ zzzzzzzzzzzz 000000000000 | ||
"###); | ||
|
||
// Undo both branch creation and a push | ||
test_env.jj_cmd_success(&repo_path, &["branch", "set", "branch"]); | ||
test_env.jj_cmd_success(&repo_path, &["git", "push", "--all"]); | ||
let stdout = get_truncated_op_log(&test_env, &repo_path, 9); | ||
insta::assert_snapshot!(stdout, @r###" | ||
@ 639dbe50ca03 [email protected] 22 years ago, lasted less than a microsecond | ||
│ push all branches to git remote origin | ||
│ args: jj git push --all | ||
◉ ba43271cb5a5 [email protected] 22 years ago, lasted less than a microsecond | ||
│ point branch branch to commit bc15ec74b27a6d49c2fed80fe9af240c5962ae47 | ||
│ args: jj branch set branch | ||
◉ 5ea649735d7b [email protected] 22 years ago, lasted less than a microsecond | ||
│ undo operation 021f54e02ac6e604d7790db9144e12e4328fa67ab649abfb96fc9f6df4fc3ef5a55aae9a8c7ece1e77318cde59fcab92197cd5aae3f8afb48983f3a5e869281a | ||
│ args: jj op undo | ||
"###); | ||
test_env.jj_cmd_success(&repo_path, &["op", "restore", "@--"]); | ||
// BUG: Branch shouldn't be there. | ||
insta::assert_snapshot!(get_log_output_divergence(&test_env, &repo_path), @r###" | ||
@ mzvwutvlkqwt bc15ec74b27a B branch | ||
◉ rlvkpnrzqnoo 3495bd79af6e A master | ||
◉ qpvuntsmwlqt a56846756248 0 | ||
◉ zzzzzzzzzzzz 000000000000 | ||
"###); | ||
} | ||
|
||
fn get_truncated_op_log(test_env: &TestEnvironment, repo_path: &Path, lines: usize) -> String { | ||
let result = test_env.jj_cmd_success(repo_path, &["op", "log"]); | ||
result.lines().take(lines).join("\n") | ||
|