2022-11-26 23:57:50 +00:00
|
|
|
|
// Copyright 2022 The Jujutsu Authors
|
2022-06-03 22:25:56 +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.
|
2023-03-05 04:10:02 +00:00
|
|
|
|
|
|
|
|
|
use common::{get_stdout_string, TestEnvironment};
|
2022-06-03 22:25:56 +00:00
|
|
|
|
|
|
|
|
|
pub mod common;
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_obslog_with_or_without_diff() {
|
|
|
|
|
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");
|
|
|
|
|
|
|
|
|
|
std::fs::write(repo_path.join("file1"), "foo\n").unwrap();
|
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["new", "-m", "my description"]);
|
|
|
|
|
std::fs::write(repo_path.join("file1"), "foo\nbar\n").unwrap();
|
|
|
|
|
std::fs::write(repo_path.join("file2"), "foo\n").unwrap();
|
2023-09-03 03:47:23 +00:00
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["rebase", "-r", "@", "-d", "root()"]);
|
2022-06-03 22:25:56 +00:00
|
|
|
|
std::fs::write(repo_path.join("file1"), "resolved\n").unwrap();
|
|
|
|
|
|
2023-01-26 05:42:13 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["obslog"]);
|
2022-06-03 22:25:56 +00:00
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
@ rlvkpnrz test.user@example.com 2001-02-03 04:05:10.000 +07:00 66b42ad3
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 af536e5a conflict
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 6fbba7bc
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:08.000 +07:00 eac0d0da
|
2023-02-09 02:53:47 +00:00
|
|
|
|
(empty) my description
|
2022-06-03 22:25:56 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
2023-04-08 01:28:16 +00:00
|
|
|
|
// Color
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["--color=always", "obslog"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
@ [1m[38;5;13mr[38;5;8mlvkpnrz[39m [38;5;3mtest.user@example.com[39m [38;5;14m2001-02-03 04:05:10.000 +07:00[39m [38;5;12m6[38;5;8m6b42ad3[39m[0m
|
2023-04-08 01:28:16 +00:00
|
|
|
|
│ [1mmy description[0m
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ [1m[39mr[0m[38;5;8mlvkpnrz[39m hidden [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 04:05:09.000 +07:00[39m [1m[38;5;4maf[0m[38;5;8m536e5a[39m [38;5;1mconflict[39m
|
2023-04-08 01:28:16 +00:00
|
|
|
|
│ my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ [1m[39mr[0m[38;5;8mlvkpnrz[39m hidden [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 04:05:09.000 +07:00[39m [1m[38;5;4m6f[0m[38;5;8mbba7bc[39m
|
2023-04-08 01:28:16 +00:00
|
|
|
|
│ my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ [1m[39mr[0m[38;5;8mlvkpnrz[39m hidden [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 04:05:08.000 +07:00[39m [1m[38;5;4me[0m[38;5;8mac0d0da[39m
|
2023-04-08 01:28:16 +00:00
|
|
|
|
[38;5;2m(empty)[39m my description
|
|
|
|
|
"###);
|
|
|
|
|
|
2022-06-03 22:25:56 +00:00
|
|
|
|
// There should be no diff caused by the rebase because it was a pure rebase
|
|
|
|
|
// (even even though it resulted in a conflict).
|
2023-01-26 05:42:13 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["obslog", "-p"]);
|
2022-06-03 22:25:56 +00:00
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
@ rlvkpnrz test.user@example.com 2001-02-03 04:05:10.000 +07:00 66b42ad3
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ my description
|
|
|
|
|
│ Resolved conflict in file1:
|
|
|
|
|
│ 1 1: <<<<<<<resolved
|
|
|
|
|
│ 2 : %%%%%%%
|
2023-02-17 18:05:47 +00:00
|
|
|
|
│ 3 : foo
|
|
|
|
|
│ 4 : +bar
|
|
|
|
|
│ 5 : +++++++
|
|
|
|
|
│ 6 : >>>>>>>
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 af536e5a conflict
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 6fbba7bc
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ my description
|
|
|
|
|
│ Modified regular file file1:
|
|
|
|
|
│ 1 1: foo
|
|
|
|
|
│ 2: bar
|
|
|
|
|
│ Added regular file file2:
|
|
|
|
|
│ 1: foo
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:08.000 +07:00 eac0d0da
|
2023-02-09 02:53:47 +00:00
|
|
|
|
(empty) my description
|
2022-06-03 22:25:56 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
2023-08-10 09:14:54 +00:00
|
|
|
|
// Test `--limit`
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["obslog", "--limit=2"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
@ rlvkpnrz test.user@example.com 2001-02-03 04:05:10.000 +07:00 66b42ad3
|
|
|
|
|
│ my description
|
|
|
|
|
◉ rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 af536e5a conflict
|
|
|
|
|
│ my description
|
|
|
|
|
"###);
|
|
|
|
|
|
2022-06-03 22:25:56 +00:00
|
|
|
|
// Test `--no-graph`
|
2023-01-26 05:42:13 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["obslog", "--no-graph"]);
|
2022-06-03 22:25:56 +00:00
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
rlvkpnrz test.user@example.com 2001-02-03 04:05:10.000 +07:00 66b42ad3
|
2022-06-03 22:25:56 +00:00
|
|
|
|
my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 af536e5a conflict
|
2022-06-03 22:25:56 +00:00
|
|
|
|
my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 6fbba7bc
|
2022-06-03 22:25:56 +00:00
|
|
|
|
my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:08.000 +07:00 eac0d0da
|
2023-01-14 10:43:23 +00:00
|
|
|
|
(empty) my description
|
2022-06-03 22:25:56 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// Test `--git` format, and that it implies `-p`
|
2023-01-26 05:42:13 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["obslog", "--no-graph", "--git"]);
|
2022-06-03 22:25:56 +00:00
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
rlvkpnrz test.user@example.com 2001-02-03 04:05:10.000 +07:00 66b42ad3
|
2022-06-03 22:25:56 +00:00
|
|
|
|
my description
|
|
|
|
|
diff --git a/file1 b/file1
|
2023-08-26 20:19:31 +00:00
|
|
|
|
index 0000000000...2ab19ae607 100644
|
2022-06-03 22:25:56 +00:00
|
|
|
|
--- a/file1
|
|
|
|
|
+++ b/file1
|
2023-02-17 18:05:47 +00:00
|
|
|
|
@@ -1,6 +1,1 @@
|
2022-06-03 22:25:56 +00:00
|
|
|
|
-<<<<<<<
|
2022-09-20 03:31:20 +00:00
|
|
|
|
-%%%%%%%
|
2023-02-17 18:05:47 +00:00
|
|
|
|
- foo
|
2022-06-03 22:25:56 +00:00
|
|
|
|
-+bar
|
2023-02-17 18:05:47 +00:00
|
|
|
|
-+++++++
|
2022-06-03 22:25:56 +00:00
|
|
|
|
->>>>>>>
|
|
|
|
|
+resolved
|
2023-07-30 05:24:34 +00:00
|
|
|
|
rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 af536e5a conflict
|
2022-06-03 22:25:56 +00:00
|
|
|
|
my description
|
2023-07-30 05:24:34 +00:00
|
|
|
|
rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 6fbba7bc
|
2022-06-03 22:25:56 +00:00
|
|
|
|
my description
|
|
|
|
|
diff --git a/file1 b/file1
|
|
|
|
|
index 257cc5642c...3bd1f0e297 100644
|
|
|
|
|
--- a/file1
|
|
|
|
|
+++ b/file1
|
|
|
|
|
@@ -1,1 +1,2 @@
|
|
|
|
|
foo
|
|
|
|
|
+bar
|
|
|
|
|
diff --git a/file2 b/file2
|
|
|
|
|
new file mode 100644
|
|
|
|
|
index 0000000000..257cc5642c
|
|
|
|
|
--- /dev/null
|
|
|
|
|
+++ b/file2
|
|
|
|
|
@@ -1,0 +1,1 @@
|
|
|
|
|
+foo
|
2023-07-30 05:24:34 +00:00
|
|
|
|
rlvkpnrz hidden test.user@example.com 2001-02-03 04:05:08.000 +07:00 eac0d0da
|
2023-01-14 10:43:23 +00:00
|
|
|
|
(empty) my description
|
2022-06-03 22:25:56 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-05 04:10:02 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_obslog_word_wrap() {
|
|
|
|
|
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");
|
|
|
|
|
let render = |args: &[&str], columns: u32, word_wrap: bool| {
|
|
|
|
|
let mut args = args.to_vec();
|
|
|
|
|
if word_wrap {
|
|
|
|
|
args.push("--config-toml=ui.log-word-wrap=true");
|
|
|
|
|
}
|
|
|
|
|
let assert = test_env
|
|
|
|
|
.jj_cmd(&repo_path, &args)
|
|
|
|
|
.env("COLUMNS", columns.to_string())
|
|
|
|
|
.assert()
|
|
|
|
|
.success()
|
|
|
|
|
.stderr("");
|
|
|
|
|
get_stdout_string(&assert)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["describe", "-m", "first"]);
|
|
|
|
|
|
|
|
|
|
// ui.log-word-wrap option applies to both graph/no-graph outputs
|
|
|
|
|
insta::assert_snapshot!(render(&["obslog"], 40, false), @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
@ qpvuntsm test.user@example.com 2001-02-03 04:05:08.000 +07:00 69542c19
|
2023-03-05 04:10:02 +00:00
|
|
|
|
│ (empty) first
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ qpvuntsm hidden test.user@example.com 2001-02-03 04:05:07.000 +07:00 230dd059
|
2023-03-05 04:10:02 +00:00
|
|
|
|
(empty) (no description set)
|
|
|
|
|
"###);
|
|
|
|
|
insta::assert_snapshot!(render(&["obslog"], 40, true), @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
@ qpvuntsm test.user@example.com
|
2023-03-05 04:10:02 +00:00
|
|
|
|
│ 2001-02-03 04:05:08.000 +07:00
|
2023-07-30 05:24:34 +00:00
|
|
|
|
│ 69542c19
|
2023-03-05 04:10:02 +00:00
|
|
|
|
│ (empty) first
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ qpvuntsm hidden test.user@example.com
|
|
|
|
|
2001-02-03 04:05:07.000 +07:00
|
|
|
|
|
230dd059
|
2023-03-05 04:10:02 +00:00
|
|
|
|
(empty) (no description set)
|
|
|
|
|
"###);
|
|
|
|
|
insta::assert_snapshot!(render(&["obslog", "--no-graph"], 40, false), @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
qpvuntsm test.user@example.com 2001-02-03 04:05:08.000 +07:00 69542c19
|
2023-03-05 04:10:02 +00:00
|
|
|
|
(empty) first
|
2023-07-30 05:24:34 +00:00
|
|
|
|
qpvuntsm hidden test.user@example.com 2001-02-03 04:05:07.000 +07:00 230dd059
|
2023-03-05 04:10:02 +00:00
|
|
|
|
(empty) (no description set)
|
|
|
|
|
"###);
|
|
|
|
|
insta::assert_snapshot!(render(&["obslog", "--no-graph"], 40, true), @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
qpvuntsm test.user@example.com
|
|
|
|
|
2001-02-03 04:05:08.000 +07:00 69542c19
|
2023-03-05 04:10:02 +00:00
|
|
|
|
(empty) first
|
2023-07-30 05:24:34 +00:00
|
|
|
|
qpvuntsm hidden test.user@example.com
|
|
|
|
|
2001-02-03 04:05:07.000 +07:00 230dd059
|
2023-03-05 04:10:02 +00:00
|
|
|
|
(empty) (no description set)
|
|
|
|
|
"###);
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-03 22:25:56 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_obslog_squash() {
|
2022-08-28 17:28:53 +00:00
|
|
|
|
let mut test_env = TestEnvironment::default();
|
2022-06-03 22:25:56 +00:00
|
|
|
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["describe", "-m", "first"]);
|
|
|
|
|
std::fs::write(repo_path.join("file1"), "foo\n").unwrap();
|
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["new", "-m", "second"]);
|
|
|
|
|
std::fs::write(repo_path.join("file1"), "foo\nbar\n").unwrap();
|
2022-08-28 17:28:53 +00:00
|
|
|
|
|
|
|
|
|
let edit_script = test_env.set_up_fake_editor();
|
2022-11-04 04:14:41 +00:00
|
|
|
|
std::fs::write(edit_script, "write\nsquashed").unwrap();
|
2022-06-03 22:25:56 +00:00
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["squash"]);
|
|
|
|
|
|
2023-01-26 05:42:13 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["obslog", "-p", "-r", "@-"]);
|
2022-06-03 22:25:56 +00:00
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ qpvuntsm test.user@example.com 2001-02-03 04:05:10.000 +07:00 27e721a5
|
2023-02-09 02:53:47 +00:00
|
|
|
|
├─╮ squashed
|
|
|
|
|
│ │ Modified regular file file1:
|
|
|
|
|
│ │ 1 1: foo
|
|
|
|
|
│ │ 2: bar
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ │ qpvuntsm hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 9764e503
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ │ first
|
|
|
|
|
│ │ Added regular file file1:
|
|
|
|
|
│ │ 1: foo
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ │ qpvuntsm hidden test.user@example.com 2001-02-03 04:05:08.000 +07:00 69542c19
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ │ (empty) first
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ │ qpvuntsm hidden test.user@example.com 2001-02-03 04:05:07.000 +07:00 230dd059
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ (empty) (no description set)
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ kkmpptxz hidden test.user@example.com 2001-02-03 04:05:10.000 +07:00 f09a3889
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ second
|
|
|
|
|
│ Modified regular file file1:
|
|
|
|
|
│ 1 1: foo
|
|
|
|
|
│ 2: bar
|
2023-07-30 05:24:34 +00:00
|
|
|
|
◉ kkmpptxz hidden test.user@example.com 2001-02-03 04:05:09.000 +07:00 57996536
|
2023-02-09 02:53:47 +00:00
|
|
|
|
(empty) second
|
2022-06-03 22:25:56 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|