2022-11-26 23:57:50 +00:00
|
|
|
// Copyright 2022 The Jujutsu Authors
|
2022-04-13 13:43:54 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
use crate::common::TestEnvironment;
|
|
|
|
|
|
|
|
pub mod common;
|
|
|
|
|
|
|
|
fn create_commit(test_env: &TestEnvironment, repo_path: &Path, name: &str, parents: &[&str]) {
|
|
|
|
if parents.is_empty() {
|
2022-11-05 01:49:56 +00:00
|
|
|
test_env.jj_cmd_success(repo_path, &["new", "root", "-m", name]);
|
2022-04-13 13:43:54 +00:00
|
|
|
} else {
|
2022-08-31 05:39:32 +00:00
|
|
|
let mut args = vec!["new", "-m", name];
|
2022-04-13 13:43:54 +00:00
|
|
|
args.extend(parents);
|
|
|
|
test_env.jj_cmd_success(repo_path, &args);
|
|
|
|
}
|
2022-11-04 04:14:41 +00:00
|
|
|
std::fs::write(repo_path.join(name), format!("{name}\n")).unwrap();
|
2022-06-06 03:23:01 +00:00
|
|
|
test_env.jj_cmd_success(repo_path, &["branch", "create", name]);
|
2022-04-13 13:43:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rebase_invalid() {
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
create_commit(&test_env, &repo_path, "a", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "b", &["a"]);
|
|
|
|
|
|
|
|
// Missing destination
|
2022-11-18 20:50:39 +00:00
|
|
|
let stderr = test_env.jj_cmd_cli_error(&repo_path, &["rebase"]);
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
|
|
|
error: The following required arguments were not provided:
|
|
|
|
--destination <DESTINATION>
|
|
|
|
|
|
|
|
Usage: jj rebase --destination <DESTINATION>
|
|
|
|
|
|
|
|
For more information try '--help'
|
|
|
|
"###);
|
2022-04-13 13:43:54 +00:00
|
|
|
|
|
|
|
// Both -r and -s
|
2022-11-18 20:50:39 +00:00
|
|
|
let stderr =
|
|
|
|
test_env.jj_cmd_cli_error(&repo_path, &["rebase", "-r", "a", "-s", "a", "-d", "b"]);
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
|
|
|
error: The argument '--revision <REVISION>' cannot be used with '--source <SOURCE>'
|
|
|
|
|
|
|
|
Usage: jj rebase --destination <DESTINATION> --revision <REVISION>
|
|
|
|
|
|
|
|
For more information try '--help'
|
|
|
|
"###);
|
2022-04-13 13:43:54 +00:00
|
|
|
|
2022-04-13 17:53:50 +00:00
|
|
|
// Both -b and -s
|
2022-11-18 20:50:39 +00:00
|
|
|
let stderr =
|
|
|
|
test_env.jj_cmd_cli_error(&repo_path, &["rebase", "-b", "a", "-s", "a", "-d", "b"]);
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
|
|
|
error: The argument '--branch <BRANCH>' cannot be used with '--source <SOURCE>'
|
|
|
|
|
|
|
|
Usage: jj rebase --destination <DESTINATION> --branch <BRANCH>
|
|
|
|
|
|
|
|
For more information try '--help'
|
|
|
|
"###);
|
2022-04-13 17:53:50 +00:00
|
|
|
|
2022-04-13 13:43:54 +00:00
|
|
|
// Rebase onto descendant with -r
|
|
|
|
let stderr = test_env.jj_cmd_failure(&repo_path, &["rebase", "-r", "a", "-d", "b"]);
|
2022-04-28 23:32:18 +00:00
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
2022-12-21 04:47:10 +00:00
|
|
|
Error: Cannot rebase 2443ea76b0b1 onto descendant 1394f625cbbd
|
2022-04-28 23:32:18 +00:00
|
|
|
"###);
|
2022-04-13 13:43:54 +00:00
|
|
|
|
|
|
|
// Rebase onto descendant with -s
|
|
|
|
let stderr = test_env.jj_cmd_failure(&repo_path, &["rebase", "-s", "a", "-d", "b"]);
|
2022-04-28 23:32:18 +00:00
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
2022-12-21 04:47:10 +00:00
|
|
|
Error: Cannot rebase 2443ea76b0b1 onto descendant 1394f625cbbd
|
2022-04-28 23:32:18 +00:00
|
|
|
"###);
|
2022-04-13 13:43:54 +00:00
|
|
|
}
|
|
|
|
|
2022-04-13 17:53:50 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rebase_branch() {
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
create_commit(&test_env, &repo_path, "a", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "b", &["a"]);
|
|
|
|
create_commit(&test_env, &repo_path, "c", &["b"]);
|
|
|
|
create_commit(&test_env, &repo_path, "d", &["b"]);
|
|
|
|
create_commit(&test_env, &repo_path, "e", &["a"]);
|
|
|
|
// Test the setup
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ e
|
2022-04-13 17:53:50 +00:00
|
|
|
| o d
|
|
|
|
| | o c
|
|
|
|
| |/
|
|
|
|
| o b
|
|
|
|
|/
|
|
|
|
o a
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-b", "c", "-d", "e"]);
|
2022-04-28 23:32:18 +00:00
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
Rebased 3 commits
|
|
|
|
"###);
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-04-13 17:53:50 +00:00
|
|
|
o d
|
|
|
|
| o c
|
|
|
|
|/
|
|
|
|
o b
|
2022-11-05 01:49:56 +00:00
|
|
|
@ e
|
2022-04-13 17:53:50 +00:00
|
|
|
o a
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rebase_branch_with_merge() {
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
create_commit(&test_env, &repo_path, "a", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "b", &["a"]);
|
|
|
|
create_commit(&test_env, &repo_path, "c", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "d", &["c"]);
|
|
|
|
create_commit(&test_env, &repo_path, "e", &["a", "d"]);
|
|
|
|
// Test the setup
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ e
|
2022-04-13 17:53:50 +00:00
|
|
|
|\
|
|
|
|
o | d
|
|
|
|
o | c
|
|
|
|
| | o b
|
|
|
|
| |/
|
|
|
|
| o a
|
|
|
|
|/
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-b", "d", "-d", "b"]);
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
Rebased 3 commits
|
2022-12-21 04:47:10 +00:00
|
|
|
Working copy now at: 391c91a7defa e
|
2022-04-13 17:53:50 +00:00
|
|
|
Added 1 files, modified 0 files, removed 0 files
|
|
|
|
"###);
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ e
|
2022-04-13 17:53:50 +00:00
|
|
|
o d
|
|
|
|
o c
|
|
|
|
o b
|
|
|
|
o a
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["undo"]);
|
2022-04-14 06:53:35 +00:00
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-d", "b"]);
|
2022-04-13 17:53:50 +00:00
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
Rebased 3 commits
|
2022-12-21 04:47:10 +00:00
|
|
|
Working copy now at: 040ae3a6d358 e
|
2022-04-13 17:53:50 +00:00
|
|
|
Added 1 files, modified 0 files, removed 0 files
|
|
|
|
"###);
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ e
|
2022-04-13 17:53:50 +00:00
|
|
|
o d
|
|
|
|
o c
|
|
|
|
o b
|
|
|
|
o a
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
|
2022-04-13 13:43:54 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rebase_single_revision() {
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
create_commit(&test_env, &repo_path, "a", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "b", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "c", &["a", "b"]);
|
|
|
|
create_commit(&test_env, &repo_path, "d", &["c"]);
|
|
|
|
// Test the setup
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ d
|
2022-04-13 13:43:54 +00:00
|
|
|
o c
|
|
|
|
|\
|
|
|
|
o | b
|
|
|
|
| o a
|
|
|
|
|/
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
|
Fix `rebase -r` of a parent of a merge commit
Previously, using `rebase -r` on the parent of a merge commit
turned it into a non-merge commit. In other words, starting
with
```
o d
|\
o | c
o | b
| o a
|/
o
```
and doing `rebase -r c -d a` resulted in
```
o d
o b
| o c
| o a
|/
o
```
where `d` is no longer a merge commit.
For reference, here's a complete test that passed before this commit (but should NOT pass; see the diff for a test that should pass):
```
#[test]
fn test_rebase_single_revision_merge_parent() {
let test_env = TestEnvironment::default();
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
let repo_path = test_env.env_root().join("repo");
create_commit(&test_env, &repo_path, "a", &[]);
create_commit(&test_env, &repo_path, "b", &[]);
create_commit(&test_env, &repo_path, "c", &["b"]);
create_commit(&test_env, &repo_path, "d", &["a", "c"]);
// Test the setup
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
|\
o | c
o | b
| o a
|/
o
"###);
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "a"]);
insta::assert_snapshot!(stdout, @r###"
Also rebased 2 descendant commits onto parent of rebased commit
Working copy now at: 3e176b54d680 (no description set)
Added 0 files, modified 0 files, removed 2 files
"###);
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
| o c
o | b
| o a
|/
o
"###);
}
```
2022-09-11 21:23:46 +00:00
|
|
|
// Descendants of the rebased commit "b" should be rebased onto parents. First
|
|
|
|
// we test with a non-merge commit. Normally, the descendant "c" would still
|
|
|
|
// have 2 parents afterwards: the parent of "b" -- the root commit -- and
|
|
|
|
// "a". However, since the root commit is an ancestor of "a", we don't
|
|
|
|
// actually want both to be parents of the same commit. So, only "a" becomes
|
|
|
|
// a parent.
|
2022-04-13 17:53:50 +00:00
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "b", "-d", "a"]);
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
Also rebased 2 descendant commits onto parent of rebased commit
|
2022-12-21 04:47:10 +00:00
|
|
|
Working copy now at: 7e15b97a447f d
|
Fix `rebase -r` of a parent of a merge commit
Previously, using `rebase -r` on the parent of a merge commit
turned it into a non-merge commit. In other words, starting
with
```
o d
|\
o | c
o | b
| o a
|/
o
```
and doing `rebase -r c -d a` resulted in
```
o d
o b
| o c
| o a
|/
o
```
where `d` is no longer a merge commit.
For reference, here's a complete test that passed before this commit (but should NOT pass; see the diff for a test that should pass):
```
#[test]
fn test_rebase_single_revision_merge_parent() {
let test_env = TestEnvironment::default();
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
let repo_path = test_env.env_root().join("repo");
create_commit(&test_env, &repo_path, "a", &[]);
create_commit(&test_env, &repo_path, "b", &[]);
create_commit(&test_env, &repo_path, "c", &["b"]);
create_commit(&test_env, &repo_path, "d", &["a", "c"]);
// Test the setup
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
|\
o | c
o | b
| o a
|/
o
"###);
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "a"]);
insta::assert_snapshot!(stdout, @r###"
Also rebased 2 descendant commits onto parent of rebased commit
Working copy now at: 3e176b54d680 (no description set)
Added 0 files, modified 0 files, removed 2 files
"###);
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
| o c
o | b
| o a
|/
o
"###);
}
```
2022-09-11 21:23:46 +00:00
|
|
|
Added 0 files, modified 0 files, removed 1 files
|
2022-04-13 17:53:50 +00:00
|
|
|
"###);
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ d
|
2022-04-13 13:43:54 +00:00
|
|
|
o c
|
|
|
|
| o b
|
|
|
|
|/
|
Fix `rebase -r` of a parent of a merge commit
Previously, using `rebase -r` on the parent of a merge commit
turned it into a non-merge commit. In other words, starting
with
```
o d
|\
o | c
o | b
| o a
|/
o
```
and doing `rebase -r c -d a` resulted in
```
o d
o b
| o c
| o a
|/
o
```
where `d` is no longer a merge commit.
For reference, here's a complete test that passed before this commit (but should NOT pass; see the diff for a test that should pass):
```
#[test]
fn test_rebase_single_revision_merge_parent() {
let test_env = TestEnvironment::default();
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
let repo_path = test_env.env_root().join("repo");
create_commit(&test_env, &repo_path, "a", &[]);
create_commit(&test_env, &repo_path, "b", &[]);
create_commit(&test_env, &repo_path, "c", &["b"]);
create_commit(&test_env, &repo_path, "d", &["a", "c"]);
// Test the setup
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
|\
o | c
o | b
| o a
|/
o
"###);
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "a"]);
insta::assert_snapshot!(stdout, @r###"
Also rebased 2 descendant commits onto parent of rebased commit
Working copy now at: 3e176b54d680 (no description set)
Added 0 files, modified 0 files, removed 2 files
"###);
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
| o c
o | b
| o a
|/
o
"###);
}
```
2022-09-11 21:23:46 +00:00
|
|
|
o a
|
2022-04-13 13:43:54 +00:00
|
|
|
o
|
|
|
|
"###);
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["undo"]);
|
Fix `rebase -r` of a parent of a merge commit
Previously, using `rebase -r` on the parent of a merge commit
turned it into a non-merge commit. In other words, starting
with
```
o d
|\
o | c
o | b
| o a
|/
o
```
and doing `rebase -r c -d a` resulted in
```
o d
o b
| o c
| o a
|/
o
```
where `d` is no longer a merge commit.
For reference, here's a complete test that passed before this commit (but should NOT pass; see the diff for a test that should pass):
```
#[test]
fn test_rebase_single_revision_merge_parent() {
let test_env = TestEnvironment::default();
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
let repo_path = test_env.env_root().join("repo");
create_commit(&test_env, &repo_path, "a", &[]);
create_commit(&test_env, &repo_path, "b", &[]);
create_commit(&test_env, &repo_path, "c", &["b"]);
create_commit(&test_env, &repo_path, "d", &["a", "c"]);
// Test the setup
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
|\
o | c
o | b
| o a
|/
o
"###);
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "a"]);
insta::assert_snapshot!(stdout, @r###"
Also rebased 2 descendant commits onto parent of rebased commit
Working copy now at: 3e176b54d680 (no description set)
Added 0 files, modified 0 files, removed 2 files
"###);
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
| o c
o | b
| o a
|/
o
"###);
}
```
2022-09-11 21:23:46 +00:00
|
|
|
|
|
|
|
// Now, let's try moving the merge commit. After, both parents of "c" ("a" and
|
|
|
|
// "b") should become parents of "d".
|
2022-04-13 17:53:50 +00:00
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "root"]);
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
Also rebased 1 descendant commits onto parent of rebased commit
|
2022-12-21 04:47:10 +00:00
|
|
|
Working copy now at: bf87078f4560 d
|
2022-04-13 17:53:50 +00:00
|
|
|
Added 0 files, modified 0 files, removed 1 files
|
|
|
|
"###);
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ d
|
2022-04-13 13:43:54 +00:00
|
|
|
|\
|
|
|
|
| | o c
|
|
|
|
o | | b
|
|
|
|
| |/
|
|
|
|
|/|
|
|
|
|
| o a
|
|
|
|
|/
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
|
Fix `rebase -r` of a parent of a merge commit
Previously, using `rebase -r` on the parent of a merge commit
turned it into a non-merge commit. In other words, starting
with
```
o d
|\
o | c
o | b
| o a
|/
o
```
and doing `rebase -r c -d a` resulted in
```
o d
o b
| o c
| o a
|/
o
```
where `d` is no longer a merge commit.
For reference, here's a complete test that passed before this commit (but should NOT pass; see the diff for a test that should pass):
```
#[test]
fn test_rebase_single_revision_merge_parent() {
let test_env = TestEnvironment::default();
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
let repo_path = test_env.env_root().join("repo");
create_commit(&test_env, &repo_path, "a", &[]);
create_commit(&test_env, &repo_path, "b", &[]);
create_commit(&test_env, &repo_path, "c", &["b"]);
create_commit(&test_env, &repo_path, "d", &["a", "c"]);
// Test the setup
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
|\
o | c
o | b
| o a
|/
o
"###);
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "a"]);
insta::assert_snapshot!(stdout, @r###"
Also rebased 2 descendant commits onto parent of rebased commit
Working copy now at: 3e176b54d680 (no description set)
Added 0 files, modified 0 files, removed 2 files
"###);
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
| o c
o | b
| o a
|/
o
"###);
}
```
2022-09-11 21:23:46 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rebase_single_revision_merge_parent() {
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
create_commit(&test_env, &repo_path, "a", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "b", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "c", &["b"]);
|
|
|
|
create_commit(&test_env, &repo_path, "d", &["a", "c"]);
|
|
|
|
// Test the setup
|
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ d
|
Fix `rebase -r` of a parent of a merge commit
Previously, using `rebase -r` on the parent of a merge commit
turned it into a non-merge commit. In other words, starting
with
```
o d
|\
o | c
o | b
| o a
|/
o
```
and doing `rebase -r c -d a` resulted in
```
o d
o b
| o c
| o a
|/
o
```
where `d` is no longer a merge commit.
For reference, here's a complete test that passed before this commit (but should NOT pass; see the diff for a test that should pass):
```
#[test]
fn test_rebase_single_revision_merge_parent() {
let test_env = TestEnvironment::default();
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
let repo_path = test_env.env_root().join("repo");
create_commit(&test_env, &repo_path, "a", &[]);
create_commit(&test_env, &repo_path, "b", &[]);
create_commit(&test_env, &repo_path, "c", &["b"]);
create_commit(&test_env, &repo_path, "d", &["a", "c"]);
// Test the setup
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
|\
o | c
o | b
| o a
|/
o
"###);
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "a"]);
insta::assert_snapshot!(stdout, @r###"
Also rebased 2 descendant commits onto parent of rebased commit
Working copy now at: 3e176b54d680 (no description set)
Added 0 files, modified 0 files, removed 2 files
"###);
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
| o c
o | b
| o a
|/
o
"###);
}
```
2022-09-11 21:23:46 +00:00
|
|
|
|\
|
|
|
|
o | c
|
|
|
|
o | b
|
|
|
|
| o a
|
|
|
|
|/
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
|
|
|
|
// Descendants of the rebased commit should be rebased onto parents, and if
|
|
|
|
// the descendant is a merge commit, it shouldn't forget its other parents.
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "a"]);
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
Also rebased 1 descendant commits onto parent of rebased commit
|
2022-12-21 04:47:10 +00:00
|
|
|
Working copy now at: c62d0789e7c7 d
|
Fix `rebase -r` of a parent of a merge commit
Previously, using `rebase -r` on the parent of a merge commit
turned it into a non-merge commit. In other words, starting
with
```
o d
|\
o | c
o | b
| o a
|/
o
```
and doing `rebase -r c -d a` resulted in
```
o d
o b
| o c
| o a
|/
o
```
where `d` is no longer a merge commit.
For reference, here's a complete test that passed before this commit (but should NOT pass; see the diff for a test that should pass):
```
#[test]
fn test_rebase_single_revision_merge_parent() {
let test_env = TestEnvironment::default();
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
let repo_path = test_env.env_root().join("repo");
create_commit(&test_env, &repo_path, "a", &[]);
create_commit(&test_env, &repo_path, "b", &[]);
create_commit(&test_env, &repo_path, "c", &["b"]);
create_commit(&test_env, &repo_path, "d", &["a", "c"]);
// Test the setup
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
|\
o | c
o | b
| o a
|/
o
"###);
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "a"]);
insta::assert_snapshot!(stdout, @r###"
Also rebased 2 descendant commits onto parent of rebased commit
Working copy now at: 3e176b54d680 (no description set)
Added 0 files, modified 0 files, removed 2 files
"###);
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
| o c
o | b
| o a
|/
o
"###);
}
```
2022-09-11 21:23:46 +00:00
|
|
|
Added 0 files, modified 0 files, removed 1 files
|
|
|
|
"###);
|
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ d
|
Fix `rebase -r` of a parent of a merge commit
Previously, using `rebase -r` on the parent of a merge commit
turned it into a non-merge commit. In other words, starting
with
```
o d
|\
o | c
o | b
| o a
|/
o
```
and doing `rebase -r c -d a` resulted in
```
o d
o b
| o c
| o a
|/
o
```
where `d` is no longer a merge commit.
For reference, here's a complete test that passed before this commit (but should NOT pass; see the diff for a test that should pass):
```
#[test]
fn test_rebase_single_revision_merge_parent() {
let test_env = TestEnvironment::default();
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
let repo_path = test_env.env_root().join("repo");
create_commit(&test_env, &repo_path, "a", &[]);
create_commit(&test_env, &repo_path, "b", &[]);
create_commit(&test_env, &repo_path, "c", &["b"]);
create_commit(&test_env, &repo_path, "d", &["a", "c"]);
// Test the setup
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
|\
o | c
o | b
| o a
|/
o
"###);
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "c", "-d", "a"]);
insta::assert_snapshot!(stdout, @r###"
Also rebased 2 descendant commits onto parent of rebased commit
Working copy now at: 3e176b54d680 (no description set)
Added 0 files, modified 0 files, removed 2 files
"###);
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
@
o d
| o c
o | b
| o a
|/
o
"###);
}
```
2022-09-11 21:23:46 +00:00
|
|
|
|\
|
|
|
|
| | o c
|
|
|
|
| |/
|
|
|
|
o | b
|
|
|
|
| o a
|
|
|
|
|/
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
|
2022-04-13 13:43:54 +00:00
|
|
|
#[test]
|
|
|
|
fn test_rebase_multiple_destinations() {
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
create_commit(&test_env, &repo_path, "a", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "b", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "c", &[]);
|
|
|
|
// Test the setup
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ c
|
2022-04-13 13:43:54 +00:00
|
|
|
| o b
|
|
|
|
|/
|
|
|
|
| o a
|
|
|
|
|/
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
|
2022-04-13 17:53:50 +00:00
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "a", "-d", "b", "-d", "c"]);
|
|
|
|
insta::assert_snapshot!(stdout, @r###""###);
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-04-13 13:43:54 +00:00
|
|
|
o a
|
|
|
|
|\
|
2022-11-05 01:49:56 +00:00
|
|
|
@ | c
|
2022-04-13 13:43:54 +00:00
|
|
|
| o b
|
|
|
|
|/
|
|
|
|
o
|
|
|
|
"###);
|
2022-09-12 09:45:16 +00:00
|
|
|
|
2022-11-18 20:50:39 +00:00
|
|
|
let stderr =
|
|
|
|
test_env.jj_cmd_failure(&repo_path, &["rebase", "-r", "a", "-d", "b", "-d", "root"]);
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
|
|
|
Error: Cannot merge with root revision
|
|
|
|
"###);
|
2022-04-13 13:43:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_rebase_with_descendants() {
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
create_commit(&test_env, &repo_path, "a", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "b", &[]);
|
|
|
|
create_commit(&test_env, &repo_path, "c", &["a", "b"]);
|
|
|
|
create_commit(&test_env, &repo_path, "d", &["c"]);
|
|
|
|
// Test the setup
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ d
|
2022-04-13 13:43:54 +00:00
|
|
|
o c
|
|
|
|
|\
|
|
|
|
o | b
|
|
|
|
| o a
|
|
|
|
|/
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
|
2022-04-13 17:53:50 +00:00
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["rebase", "-s", "b", "-d", "a"]);
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
Rebased 3 commits
|
2022-12-21 04:47:10 +00:00
|
|
|
Working copy now at: 309336ffce22 d
|
2022-04-13 17:53:50 +00:00
|
|
|
"###);
|
2022-05-29 23:46:47 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path), @r###"
|
2022-11-05 01:49:56 +00:00
|
|
|
@ d
|
2022-04-13 13:43:54 +00:00
|
|
|
o c
|
|
|
|
o b
|
|
|
|
o a
|
|
|
|
o
|
|
|
|
"###);
|
|
|
|
}
|
2022-05-29 23:46:47 +00:00
|
|
|
|
|
|
|
fn get_log_output(test_env: &TestEnvironment, repo_path: &Path) -> String {
|
|
|
|
test_env.jj_cmd_success(repo_path, &["log", "-T", "branches"])
|
|
|
|
}
|