2023-01-08 17:22:08 +00:00
|
|
|
|
// Copyright 2023 The Jujutsu Authors
|
|
|
|
|
//
|
|
|
|
|
// 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 regex::Regex;
|
|
|
|
|
|
2024-02-02 07:55:24 +00:00
|
|
|
|
use crate::common::TestEnvironment;
|
2023-01-08 17:22:08 +00:00
|
|
|
|
|
2023-03-06 12:02:57 +00:00
|
|
|
|
#[test]
|
2023-03-19 12:13:47 +00:00
|
|
|
|
fn test_log_parents() {
|
2023-03-06 12:02:57 +00:00
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2023-03-06 12:02:57 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
2023-10-10 11:59:18 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "@-"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "@", "@-"]);
|
2023-03-06 12:02:57 +00:00
|
|
|
|
|
2024-02-29 04:17:04 +00:00
|
|
|
|
let template =
|
|
|
|
|
r#"commit_id ++ "\nP: " ++ parents.len() ++ " " ++ parents.map(|c| c.commit_id()) ++ "\n""#;
|
2023-03-06 12:02:57 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
@ c067170d4ca1bc6162b64f7550617ec809647f84
|
2024-02-29 04:17:04 +00:00
|
|
|
|
├─╮ P: 2 4db490c88528133d579540b6900b8098f0c17701 230dd059e1b059aefc0da06a2e5a7dbf22362f22
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ │ 4db490c88528133d579540b6900b8098f0c17701
|
2024-02-29 04:17:04 +00:00
|
|
|
|
├─╯ P: 1 230dd059e1b059aefc0da06a2e5a7dbf22362f22
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ 230dd059e1b059aefc0da06a2e5a7dbf22362f22
|
2024-02-29 04:17:04 +00:00
|
|
|
|
│ P: 1 0000000000000000000000000000000000000000
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ 0000000000000000000000000000000000000000
|
2024-02-29 04:17:04 +00:00
|
|
|
|
P: 0
|
2023-03-06 12:02:57 +00:00
|
|
|
|
"###);
|
2023-03-07 10:55:28 +00:00
|
|
|
|
|
2023-03-19 12:13:47 +00:00
|
|
|
|
let template = r#"parents.map(|c| c.commit_id().shortest(4))"#;
|
2023-03-07 10:55:28 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&["log", "-T", template, "-r@", "--color=always"],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m@[0m [1m[38;5;4m4[0m[38;5;8mdb4[39m [1m[38;5;4m2[0m[38;5;8m30d[39m
|
2023-03-07 10:55:28 +00:00
|
|
|
|
│
|
|
|
|
|
~
|
|
|
|
|
"###);
|
2023-03-19 12:13:47 +00:00
|
|
|
|
|
|
|
|
|
// Commit object isn't printable
|
|
|
|
|
let stderr = test_env.jj_cmd_failure(&repo_path, &["log", "-T", "parents"]);
|
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
2024-04-24 11:02:50 +00:00
|
|
|
|
Error: Failed to parse template: Expected expression of type "Template", but actual type is "List<Commit>"
|
2024-03-25 15:54:39 +00:00
|
|
|
|
Caused by: --> 1:1
|
2023-03-19 12:13:47 +00:00
|
|
|
|
|
|
|
|
|
|
1 | parents
|
|
|
|
|
| ^-----^
|
|
|
|
|
|
|
2024-04-24 11:02:50 +00:00
|
|
|
|
= Expected expression of type "Template", but actual type is "List<Commit>"
|
2023-03-19 12:13:47 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// Redundant argument passed to keyword method
|
|
|
|
|
let template = r#"parents.map(|c| c.commit_id(""))"#;
|
|
|
|
|
let stderr = test_env.jj_cmd_failure(&repo_path, &["log", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
2024-03-26 11:28:50 +00:00
|
|
|
|
Error: Failed to parse template: Function "commit_id": Expected 0 arguments
|
2024-03-25 15:54:39 +00:00
|
|
|
|
Caused by: --> 1:29
|
2023-03-19 12:13:47 +00:00
|
|
|
|
|
|
|
|
|
|
1 | parents.map(|c| c.commit_id(""))
|
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
|
|
= Function "commit_id": Expected 0 arguments
|
|
|
|
|
"###);
|
2023-03-06 12:02:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-08 17:22:08 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_author_timestamp() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2023-01-08 17:22:08 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
2023-10-10 11:59:18 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["describe", "-m", "first"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-m", "second"]);
|
2023-01-08 17:22:08 +00:00
|
|
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-T", "author.timestamp()"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2023-02-09 02:53:47 +00:00
|
|
|
|
@ 2001-02-03 04:05:09.000 +07:00
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ 2001-02-03 04:05:08.000 +07:00
|
|
|
|
|
◆ 1970-01-01 00:00:00.000 +00:00
|
2023-01-08 17:22:08 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_author_timestamp_ago() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2023-01-08 17:22:08 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
2023-10-10 11:59:18 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["describe", "-m", "first"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-m", "second"]);
|
2023-01-08 17:22:08 +00:00
|
|
|
|
|
2023-02-28 11:30:57 +00:00
|
|
|
|
let template = r#"author.timestamp().ago() ++ "\n""#;
|
2023-02-28 10:43:14 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "--no-graph", "-T", template]);
|
2023-02-09 10:53:59 +00:00
|
|
|
|
let line_re = Regex::new(r"[0-9]+ years ago").unwrap();
|
2023-01-08 17:22:08 +00:00
|
|
|
|
assert!(
|
|
|
|
|
stdout.lines().all(|x| line_re.is_match(x)),
|
|
|
|
|
"expected every line to match regex"
|
|
|
|
|
);
|
|
|
|
|
}
|
2023-01-07 23:09:07 +00:00
|
|
|
|
|
2023-08-11 20:31:47 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_author_timestamp_utc() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2023-08-11 20:31:47 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-T", "author.timestamp().utc()"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
@ 2001-02-02 21:05:07.000 +00:00
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ 1970-01-01 00:00:00.000 +00:00
|
2023-08-11 20:31:47 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-12 07:09:33 +00:00
|
|
|
|
#[cfg(unix)]
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_author_timestamp_local() {
|
|
|
|
|
let mut test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2024-02-12 07:09:33 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
|
|
test_env.add_env_var("TZ", "UTC-05:30");
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-T", "author.timestamp().local()"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-02-12 07:26:19 +00:00
|
|
|
|
@ 2001-02-03 08:05:07.000 +11:00
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ 1970-01-01 11:00:00.000 +11:00
|
2024-02-12 07:09:33 +00:00
|
|
|
|
"###);
|
|
|
|
|
test_env.add_env_var("TZ", "UTC+10:00");
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-T", "author.timestamp().local()"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-02-12 07:26:19 +00:00
|
|
|
|
@ 2001-02-03 08:05:07.000 +11:00
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ 1970-01-01 11:00:00.000 +11:00
|
2024-02-12 07:09:33 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-04 15:43:59 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_mine_is_true_when_author_is_user() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2024-04-04 15:43:59 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
test_env.jj_cmd_ok(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&[
|
|
|
|
|
"--config-toml=user.email='johndoe@example.com'",
|
|
|
|
|
"--config-toml=user.name='John Doe'",
|
|
|
|
|
"new",
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&[
|
|
|
|
|
"log",
|
|
|
|
|
"-T",
|
|
|
|
|
r#"coalesce(if(mine, "mine"), author.email(), email_placeholder)"#,
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
@ johndoe@example.com
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ mine
|
|
|
|
|
◆ (no email set)
|
2024-04-04 15:43:59 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-07 23:09:07 +00:00
|
|
|
|
#[test]
|
2023-01-10 06:16:47 +00:00
|
|
|
|
fn test_log_default() {
|
2023-01-07 23:09:07 +00:00
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2023-01-07 23:09:07 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
2023-01-10 06:16:47 +00:00
|
|
|
|
std::fs::write(repo_path.join("file1"), "foo\n").unwrap();
|
2023-10-10 11:59:18 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["describe", "-m", "add a file"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-m", "description 1"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["branch", "create", "my-branch"]);
|
2023-01-10 06:16:47 +00:00
|
|
|
|
|
|
|
|
|
// Test default log output format
|
2023-01-22 06:50:58 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-06-23 22:20:33 +00:00
|
|
|
|
@ kkmpptxz test.user@example.com 2001-02-03 08:05:09 my-branch bac9ff9e
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ (empty) description 1
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ qpvuntsm test.user@example.com 2001-02-03 08:05:08 aa2015d7
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ add a file
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ zzzzzzzz root() 00000000
|
2023-01-10 06:16:47 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// Color
|
2023-01-07 23:09:07 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "--color=always"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m@[0m [1m[38;5;13mk[38;5;8mkmpptxz[39m [38;5;3mtest.user@example.com[39m [38;5;14m2001-02-03 08:05:09[39m [38;5;13mmy-branch[39m [38;5;12mb[38;5;8mac9ff9e[39m[0m
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ [1m[38;5;10m(empty)[39m description 1[0m
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ [1m[38;5;5mq[0m[38;5;8mpvuntsm[39m [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 08:05:08[39m [1m[38;5;4ma[0m[38;5;8ma2015d7[39m
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ add a file
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;14m◆[0m [1m[38;5;5mz[0m[38;5;8mzzzzzzz[39m [38;5;2mroot()[39m [1m[38;5;4m0[0m[38;5;8m0000000[39m
|
2023-01-07 23:09:07 +00:00
|
|
|
|
"###);
|
2023-01-11 00:42:03 +00:00
|
|
|
|
|
|
|
|
|
// Color without graph
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "--color=always", "--no-graph"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-06-23 22:20:33 +00:00
|
|
|
|
[1m[38;5;13mk[38;5;8mkmpptxz[39m [38;5;3mtest.user@example.com[39m [38;5;14m2001-02-03 08:05:09[39m [38;5;13mmy-branch[39m [38;5;12mb[38;5;8mac9ff9e[39m[0m
|
2023-02-03 06:11:25 +00:00
|
|
|
|
[1m[38;5;10m(empty)[39m description 1[0m
|
2024-06-23 22:20:33 +00:00
|
|
|
|
[1m[38;5;5mq[0m[38;5;8mpvuntsm[39m [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 08:05:08[39m [1m[38;5;4ma[0m[38;5;8ma2015d7[39m
|
2023-01-11 00:42:03 +00:00
|
|
|
|
add a file
|
2023-09-03 03:47:23 +00:00
|
|
|
|
[1m[38;5;5mz[0m[38;5;8mzzzzzzz[39m [38;5;2mroot()[39m [1m[38;5;4m0[0m[38;5;8m0000000[39m
|
2023-01-11 00:42:03 +00:00
|
|
|
|
"###);
|
2023-01-07 23:09:07 +00:00
|
|
|
|
}
|
2023-01-10 06:26:19 +00:00
|
|
|
|
|
2023-04-13 17:30:48 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_builtin_templates() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2023-04-13 17:30:48 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
2024-03-13 13:36:03 +00:00
|
|
|
|
// Render without graph and append "[EOF]" marker to test line ending
|
|
|
|
|
let render = |template| {
|
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["log", "-T", template, "--no-graph"]) + "[EOF]\n"
|
|
|
|
|
};
|
2023-04-13 17:30:48 +00:00
|
|
|
|
|
2023-08-26 05:59:50 +00:00
|
|
|
|
test_env.jj_cmd_ok(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&[
|
|
|
|
|
"--config-toml=user.email=''",
|
|
|
|
|
"--config-toml=user.name=''",
|
|
|
|
|
"new",
|
|
|
|
|
],
|
|
|
|
|
);
|
2024-01-11 02:04:15 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["branch", "create", "my-branch"]);
|
2023-08-26 05:59:50 +00:00
|
|
|
|
|
2023-04-13 17:30:48 +00:00
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_oneline"#), @r###"
|
2024-02-12 07:26:19 +00:00
|
|
|
|
rlvkpnrz (no email set) 2001-02-03 08:05:08 my-branch dc315397 (empty) (no description set)
|
|
|
|
|
qpvuntsm test.user 2001-02-03 08:05:07 230dd059 (empty) (no description set)
|
2024-03-13 13:36:03 +00:00
|
|
|
|
zzzzzzzz root() 00000000
|
|
|
|
|
[EOF]
|
2023-04-13 17:30:48 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_compact"#), @r###"
|
2024-02-12 07:26:19 +00:00
|
|
|
|
rlvkpnrz (no email set) 2001-02-03 08:05:08 my-branch dc315397
|
2024-03-13 13:36:03 +00:00
|
|
|
|
(empty) (no description set)
|
2024-02-12 07:26:19 +00:00
|
|
|
|
qpvuntsm test.user@example.com 2001-02-03 08:05:07 230dd059
|
2024-03-13 13:36:03 +00:00
|
|
|
|
(empty) (no description set)
|
|
|
|
|
zzzzzzzz root() 00000000
|
|
|
|
|
[EOF]
|
2023-04-13 17:30:48 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_comfortable"#), @r###"
|
2024-02-12 07:26:19 +00:00
|
|
|
|
rlvkpnrz (no email set) 2001-02-03 08:05:08 my-branch dc315397
|
2024-03-13 13:36:03 +00:00
|
|
|
|
(empty) (no description set)
|
|
|
|
|
|
2024-02-12 07:26:19 +00:00
|
|
|
|
qpvuntsm test.user@example.com 2001-02-03 08:05:07 230dd059
|
2024-03-13 13:36:03 +00:00
|
|
|
|
(empty) (no description set)
|
|
|
|
|
|
|
|
|
|
zzzzzzzz root() 00000000
|
|
|
|
|
|
|
|
|
|
[EOF]
|
2023-04-13 17:30:48 +00:00
|
|
|
|
"###);
|
2023-04-22 03:28:02 +00:00
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_detailed"#), @r###"
|
2024-03-13 13:36:03 +00:00
|
|
|
|
Commit ID: dc31539712c7294d1d712cec63cef4504b94ca74
|
|
|
|
|
Change ID: rlvkpnrzqnoowoytxnquwvuryrwnrmlp
|
|
|
|
|
Branches: my-branch
|
2024-02-12 07:26:19 +00:00
|
|
|
|
Author: (no name set) <(no email set)> (2001-02-03 08:05:08)
|
|
|
|
|
Committer: (no name set) <(no email set)> (2001-02-03 08:05:08)
|
2024-03-13 13:36:03 +00:00
|
|
|
|
|
|
|
|
|
(no description set)
|
|
|
|
|
|
|
|
|
|
Commit ID: 230dd059e1b059aefc0da06a2e5a7dbf22362f22
|
|
|
|
|
Change ID: qpvuntsmwlqtpsluzzsnyyzlmlwvmlnu
|
2024-02-12 07:26:19 +00:00
|
|
|
|
Author: Test User <test.user@example.com> (2001-02-03 08:05:07)
|
|
|
|
|
Committer: Test User <test.user@example.com> (2001-02-03 08:05:07)
|
2024-03-13 13:36:03 +00:00
|
|
|
|
|
|
|
|
|
(no description set)
|
|
|
|
|
|
|
|
|
|
Commit ID: 0000000000000000000000000000000000000000
|
|
|
|
|
Change ID: zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
|
2024-02-12 07:26:19 +00:00
|
|
|
|
Author: (no name set) <(no email set)> (1970-01-01 11:00:00)
|
|
|
|
|
Committer: (no name set) <(no email set)> (1970-01-01 11:00:00)
|
2023-04-22 03:28:02 +00:00
|
|
|
|
|
2024-03-13 13:36:03 +00:00
|
|
|
|
(no description set)
|
2023-04-22 03:28:02 +00:00
|
|
|
|
|
2024-03-13 13:36:03 +00:00
|
|
|
|
[EOF]
|
2023-04-22 03:28:02 +00:00
|
|
|
|
"###);
|
2023-04-13 17:30:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 04:30:20 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_builtin_templates_colored() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2023-08-30 04:30:20 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
let render =
|
|
|
|
|
|template| test_env.jj_cmd_success(&repo_path, &["--color=always", "log", "-T", template]);
|
|
|
|
|
|
|
|
|
|
test_env.jj_cmd_ok(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&[
|
|
|
|
|
"--config-toml=user.email=''",
|
|
|
|
|
"--config-toml=user.name=''",
|
|
|
|
|
"new",
|
|
|
|
|
],
|
|
|
|
|
);
|
2024-01-11 02:04:15 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["branch", "create", "my-branch"]);
|
2023-08-30 04:30:20 +00:00
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_oneline"#), @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m@[0m [1m[38;5;13mr[38;5;8mlvkpnrz[39m [38;5;9m(no email set)[39m [38;5;14m2001-02-03 08:05:08[39m [38;5;13mmy-branch[39m [38;5;12md[38;5;8mc315397[39m [38;5;10m(empty)[39m [38;5;10m(no description set)[39m[0m
|
|
|
|
|
○ [1m[38;5;5mq[0m[38;5;8mpvuntsm[39m [38;5;3mtest.user[39m [38;5;6m2001-02-03 08:05:07[39m [1m[38;5;4m2[0m[38;5;8m30dd059[39m [38;5;2m(empty)[39m [38;5;2m(no description set)[39m
|
|
|
|
|
[1m[38;5;14m◆[0m [1m[38;5;5mz[0m[38;5;8mzzzzzzz[39m [38;5;2mroot()[39m [1m[38;5;4m0[0m[38;5;8m0000000[39m
|
2023-08-30 04:30:20 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_compact"#), @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m@[0m [1m[38;5;13mr[38;5;8mlvkpnrz[39m [38;5;9m(no email set)[39m [38;5;14m2001-02-03 08:05:08[39m [38;5;13mmy-branch[39m [38;5;12md[38;5;8mc315397[39m[0m
|
2023-08-30 04:30:20 +00:00
|
|
|
|
│ [1m[38;5;10m(empty)[39m [38;5;10m(no description set)[39m[0m
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ [1m[38;5;5mq[0m[38;5;8mpvuntsm[39m [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 08:05:07[39m [1m[38;5;4m2[0m[38;5;8m30dd059[39m
|
2023-08-30 04:30:20 +00:00
|
|
|
|
│ [38;5;2m(empty)[39m [38;5;2m(no description set)[39m
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;14m◆[0m [1m[38;5;5mz[0m[38;5;8mzzzzzzz[39m [38;5;2mroot()[39m [1m[38;5;4m0[0m[38;5;8m0000000[39m
|
2023-08-30 04:30:20 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_comfortable"#), @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m@[0m [1m[38;5;13mr[38;5;8mlvkpnrz[39m [38;5;9m(no email set)[39m [38;5;14m2001-02-03 08:05:08[39m [38;5;13mmy-branch[39m [38;5;12md[38;5;8mc315397[39m[0m
|
2023-08-30 04:30:20 +00:00
|
|
|
|
│ [1m[38;5;10m(empty)[39m [38;5;10m(no description set)[39m[0m
|
|
|
|
|
│
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ [1m[38;5;5mq[0m[38;5;8mpvuntsm[39m [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 08:05:07[39m [1m[38;5;4m2[0m[38;5;8m30dd059[39m
|
2023-08-30 04:30:20 +00:00
|
|
|
|
│ [38;5;2m(empty)[39m [38;5;2m(no description set)[39m
|
|
|
|
|
│
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;14m◆[0m [1m[38;5;5mz[0m[38;5;8mzzzzzzz[39m [38;5;2mroot()[39m [1m[38;5;4m0[0m[38;5;8m0000000[39m
|
|
|
|
|
|
2023-08-30 04:30:20 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_detailed"#), @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m@[0m Commit ID: [38;5;4mdc31539712c7294d1d712cec63cef4504b94ca74[39m
|
2023-08-30 04:30:20 +00:00
|
|
|
|
│ Change ID: [38;5;5mrlvkpnrzqnoowoytxnquwvuryrwnrmlp[39m
|
2024-01-11 02:04:15 +00:00
|
|
|
|
│ Branches: [38;5;5mmy-branch[39m
|
2024-02-12 07:26:19 +00:00
|
|
|
|
│ Author: [38;5;1m(no name set)[39m <[38;5;1m(no email set)[39m> ([38;5;6m2001-02-03 08:05:08[39m)
|
|
|
|
|
│ Committer: [38;5;1m(no name set)[39m <[38;5;1m(no email set)[39m> ([38;5;6m2001-02-03 08:05:08[39m)
|
2023-08-30 04:30:20 +00:00
|
|
|
|
│
|
|
|
|
|
│ [38;5;2m (no description set)[39m
|
|
|
|
|
│
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ Commit ID: [38;5;4m230dd059e1b059aefc0da06a2e5a7dbf22362f22[39m
|
2023-08-30 04:30:20 +00:00
|
|
|
|
│ Change ID: [38;5;5mqpvuntsmwlqtpsluzzsnyyzlmlwvmlnu[39m
|
2024-02-12 07:26:19 +00:00
|
|
|
|
│ Author: Test User <[38;5;3mtest.user@example.com[39m> ([38;5;6m2001-02-03 08:05:07[39m)
|
|
|
|
|
│ Committer: Test User <[38;5;3mtest.user@example.com[39m> ([38;5;6m2001-02-03 08:05:07[39m)
|
2023-08-30 04:30:20 +00:00
|
|
|
|
│
|
|
|
|
|
│ [38;5;2m (no description set)[39m
|
|
|
|
|
│
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;14m◆[0m Commit ID: [38;5;4m0000000000000000000000000000000000000000[39m
|
2023-08-30 04:30:20 +00:00
|
|
|
|
Change ID: [38;5;5mzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz[39m
|
2024-02-12 07:26:19 +00:00
|
|
|
|
Author: [38;5;1m(no name set)[39m <[38;5;1m(no email set)[39m> ([38;5;6m1970-01-01 11:00:00[39m)
|
|
|
|
|
Committer: [38;5;1m(no name set)[39m <[38;5;1m(no email set)[39m> ([38;5;6m1970-01-01 11:00:00[39m)
|
2023-08-30 04:30:20 +00:00
|
|
|
|
|
|
|
|
|
[38;5;2m (no description set)[39m
|
|
|
|
|
|
|
|
|
|
"###);
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-06 16:23:36 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_builtin_templates_colored_debug() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2024-05-06 16:23:36 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
let render =
|
|
|
|
|
|template| test_env.jj_cmd_success(&repo_path, &["--color=debug", "log", "-T", template]);
|
|
|
|
|
|
|
|
|
|
test_env.jj_cmd_ok(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&[
|
|
|
|
|
"--config-toml=user.email=''",
|
|
|
|
|
"--config-toml=user.name=''",
|
|
|
|
|
"new",
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["branch", "create", "my-branch"]);
|
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_oneline"#), @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m<<node working_copy::@>>[0m [1m[38;5;13m<<log working_copy change_id shortest prefix::r>>[38;5;8m<<log working_copy change_id shortest rest::lvkpnrz>>[39m<<log working_copy:: >>[38;5;9m<<log working_copy email placeholder::(no email set)>>[39m<<log working_copy:: >>[38;5;14m<<log working_copy committer timestamp local format::2001-02-03 08:05:08>>[39m<<log working_copy:: >>[38;5;13m<<log working_copy branches name::my-branch>>[39m<<log working_copy:: >>[38;5;12m<<log working_copy commit_id shortest prefix::d>>[38;5;8m<<log working_copy commit_id shortest rest::c315397>>[39m<<log working_copy:: >>[38;5;10m<<log working_copy empty::(empty)>>[39m<<log working_copy:: >>[38;5;10m<<log working_copy empty description placeholder::(no description set)>>[39m<<log working_copy::>>[0m
|
|
|
|
|
<<node::○>> [1m[38;5;5m<<log change_id shortest prefix::q>>[0m[38;5;8m<<log change_id shortest rest::pvuntsm>>[39m<<log:: >>[38;5;3m<<log author username::test.user>>[39m<<log:: >>[38;5;6m<<log committer timestamp local format::2001-02-03 08:05:07>>[39m<<log:: >>[1m[38;5;4m<<log commit_id shortest prefix::2>>[0m[38;5;8m<<log commit_id shortest rest::30dd059>>[39m<<log:: >>[38;5;2m<<log empty::(empty)>>[39m<<log:: >>[38;5;2m<<log empty description placeholder::(no description set)>>[39m<<log::>>
|
|
|
|
|
[1m[38;5;14m<<node immutable::◆>>[0m [1m[38;5;5m<<log change_id shortest prefix::z>>[0m[38;5;8m<<log change_id shortest rest::zzzzzzz>>[39m<<log:: >>[38;5;2m<<log root::root()>>[39m<<log:: >>[1m[38;5;4m<<log commit_id shortest prefix::0>>[0m[38;5;8m<<log commit_id shortest rest::0000000>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_compact"#), @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m<<node working_copy::@>>[0m [1m[38;5;13m<<log working_copy change_id shortest prefix::r>>[38;5;8m<<log working_copy change_id shortest rest::lvkpnrz>>[39m<<log working_copy:: >>[38;5;9m<<log working_copy email placeholder::(no email set)>>[39m<<log working_copy:: >>[38;5;14m<<log working_copy committer timestamp local format::2001-02-03 08:05:08>>[39m<<log working_copy:: >>[38;5;13m<<log working_copy branches name::my-branch>>[39m<<log working_copy:: >>[38;5;12m<<log working_copy commit_id shortest prefix::d>>[38;5;8m<<log working_copy commit_id shortest rest::c315397>>[39m<<log working_copy::>>[0m
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ [1m[38;5;10m<<log working_copy empty::(empty)>>[39m<<log working_copy:: >>[38;5;10m<<log working_copy empty description placeholder::(no description set)>>[39m<<log working_copy::>>[0m
|
2024-07-15 22:20:10 +00:00
|
|
|
|
<<node::○>> [1m[38;5;5m<<log change_id shortest prefix::q>>[0m[38;5;8m<<log change_id shortest rest::pvuntsm>>[39m<<log:: >>[38;5;3m<<log author email::test.user@example.com>>[39m<<log:: >>[38;5;6m<<log committer timestamp local format::2001-02-03 08:05:07>>[39m<<log:: >>[1m[38;5;4m<<log commit_id shortest prefix::2>>[0m[38;5;8m<<log commit_id shortest rest::30dd059>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ [38;5;2m<<log empty::(empty)>>[39m<<log:: >>[38;5;2m<<log empty description placeholder::(no description set)>>[39m<<log::>>
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;14m<<node immutable::◆>>[0m [1m[38;5;5m<<log change_id shortest prefix::z>>[0m[38;5;8m<<log change_id shortest rest::zzzzzzz>>[39m<<log:: >>[38;5;2m<<log root::root()>>[39m<<log:: >>[1m[38;5;4m<<log commit_id shortest prefix::0>>[0m[38;5;8m<<log commit_id shortest rest::0000000>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_comfortable"#), @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m<<node working_copy::@>>[0m [1m[38;5;13m<<log working_copy change_id shortest prefix::r>>[38;5;8m<<log working_copy change_id shortest rest::lvkpnrz>>[39m<<log working_copy:: >>[38;5;9m<<log working_copy email placeholder::(no email set)>>[39m<<log working_copy:: >>[38;5;14m<<log working_copy committer timestamp local format::2001-02-03 08:05:08>>[39m<<log working_copy:: >>[38;5;13m<<log working_copy branches name::my-branch>>[39m<<log working_copy:: >>[38;5;12m<<log working_copy commit_id shortest prefix::d>>[38;5;8m<<log working_copy commit_id shortest rest::c315397>>[39m<<log working_copy::>>[0m
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ [1m[38;5;10m<<log working_copy empty::(empty)>>[39m<<log working_copy:: >>[38;5;10m<<log working_copy empty description placeholder::(no description set)>>[39m<<log working_copy::>>[0m
|
|
|
|
|
│ <<log::>>
|
2024-07-15 22:20:10 +00:00
|
|
|
|
<<node::○>> [1m[38;5;5m<<log change_id shortest prefix::q>>[0m[38;5;8m<<log change_id shortest rest::pvuntsm>>[39m<<log:: >>[38;5;3m<<log author email::test.user@example.com>>[39m<<log:: >>[38;5;6m<<log committer timestamp local format::2001-02-03 08:05:07>>[39m<<log:: >>[1m[38;5;4m<<log commit_id shortest prefix::2>>[0m[38;5;8m<<log commit_id shortest rest::30dd059>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ [38;5;2m<<log empty::(empty)>>[39m<<log:: >>[38;5;2m<<log empty description placeholder::(no description set)>>[39m<<log::>>
|
|
|
|
|
│ <<log::>>
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;14m<<node immutable::◆>>[0m [1m[38;5;5m<<log change_id shortest prefix::z>>[0m[38;5;8m<<log change_id shortest rest::zzzzzzz>>[39m<<log:: >>[38;5;2m<<log root::root()>>[39m<<log:: >>[1m[38;5;4m<<log commit_id shortest prefix::0>>[0m[38;5;8m<<log commit_id shortest rest::0000000>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
<<log::>>
|
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
insta::assert_snapshot!(render(r#"builtin_log_detailed"#), @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m<<node working_copy::@>>[0m <<log::Commit ID: >>[38;5;4m<<log commit_id::dc31539712c7294d1d712cec63cef4504b94ca74>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ <<log::Change ID: >>[38;5;5m<<log change_id::rlvkpnrzqnoowoytxnquwvuryrwnrmlp>>[39m<<log::>>
|
|
|
|
|
│ <<log::Branches: >>[38;5;5m<<log local_branches name::my-branch>>[39m<<log::>>
|
2024-07-10 21:38:22 +00:00
|
|
|
|
│ <<log::Author: >>[38;5;1m<<log name placeholder::(no name set)>>[39m<<log:: <>>[38;5;1m<<log email placeholder::(no email set)>>[39m<<log::> (>>[38;5;6m<<log author timestamp local format::2001-02-03 08:05:08>>[39m<<log::)>>
|
|
|
|
|
│ <<log::Committer: >>[38;5;1m<<log name placeholder::(no name set)>>[39m<<log:: <>>[38;5;1m<<log email placeholder::(no email set)>>[39m<<log::> (>>[38;5;6m<<log committer timestamp local format::2001-02-03 08:05:08>>[39m<<log::)>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ <<log::>>
|
2024-07-10 21:38:22 +00:00
|
|
|
|
│ [38;5;2m<<log empty description placeholder:: (no description set)>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ <<log::>>
|
2024-07-15 22:20:10 +00:00
|
|
|
|
<<node::○>> <<log::Commit ID: >>[38;5;4m<<log commit_id::230dd059e1b059aefc0da06a2e5a7dbf22362f22>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ <<log::Change ID: >>[38;5;5m<<log change_id::qpvuntsmwlqtpsluzzsnyyzlmlwvmlnu>>[39m<<log::>>
|
2024-07-10 21:38:22 +00:00
|
|
|
|
│ <<log::Author: >><<log author name::Test User>><<log:: <>>[38;5;3m<<log author email::test.user@example.com>>[39m<<log::> (>>[38;5;6m<<log author timestamp local format::2001-02-03 08:05:07>>[39m<<log::)>>
|
|
|
|
|
│ <<log::Committer: >><<log committer name::Test User>><<log:: <>>[38;5;3m<<log committer email::test.user@example.com>>[39m<<log::> (>>[38;5;6m<<log committer timestamp local format::2001-02-03 08:05:07>>[39m<<log::)>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ <<log::>>
|
2024-07-10 21:38:22 +00:00
|
|
|
|
│ [38;5;2m<<log empty description placeholder:: (no description set)>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
│ <<log::>>
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;14m<<node immutable::◆>>[0m <<log::Commit ID: >>[38;5;4m<<log commit_id::0000000000000000000000000000000000000000>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
<<log::Change ID: >>[38;5;5m<<log change_id::zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz>>[39m<<log::>>
|
2024-07-10 21:38:22 +00:00
|
|
|
|
<<log::Author: >>[38;5;1m<<log name placeholder::(no name set)>>[39m<<log:: <>>[38;5;1m<<log email placeholder::(no email set)>>[39m<<log::> (>>[38;5;6m<<log author timestamp local format::1970-01-01 11:00:00>>[39m<<log::)>>
|
|
|
|
|
<<log::Committer: >>[38;5;1m<<log name placeholder::(no name set)>>[39m<<log:: <>>[38;5;1m<<log email placeholder::(no email set)>>[39m<<log::> (>>[38;5;6m<<log committer timestamp local format::1970-01-01 11:00:00>>[39m<<log::)>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
<<log::>>
|
2024-07-10 21:38:22 +00:00
|
|
|
|
[38;5;2m<<log empty description placeholder:: (no description set)>>[39m<<log::>>
|
2024-05-06 16:23:36 +00:00
|
|
|
|
<<log::>>
|
|
|
|
|
"###);
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-10 06:26:19 +00:00
|
|
|
|
#[test]
|
2023-04-08 01:28:16 +00:00
|
|
|
|
fn test_log_obslog_divergence() {
|
2023-01-10 06:26:19 +00:00
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2023-01-10 06:26:19 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
|
|
std::fs::write(repo_path.join("file"), "foo\n").unwrap();
|
2023-10-10 11:59:18 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["describe", "-m", "description 1"]);
|
2023-01-10 06:26:19 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log"]);
|
|
|
|
|
// No divergence
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-06-23 22:20:33 +00:00
|
|
|
|
@ qpvuntsm test.user@example.com 2001-02-03 08:05:08 ff309c29
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ description 1
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ zzzzzzzz root() 00000000
|
2023-01-10 06:26:19 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// Create divergence
|
2023-10-10 11:59:18 +00:00
|
|
|
|
test_env.jj_cmd_ok(
|
2023-01-10 06:26:19 +00:00
|
|
|
|
&repo_path,
|
|
|
|
|
&["describe", "-m", "description 2", "--at-operation", "@-"],
|
|
|
|
|
);
|
2023-10-10 11:59:18 +00:00
|
|
|
|
let (stdout, stderr) = test_env.jj_cmd_ok(&repo_path, &["log"]);
|
2023-01-10 06:26:19 +00:00
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ qpvuntsm?? test.user@example.com 2001-02-03 08:05:10 6ba70e00
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ description 2
|
2024-06-23 22:20:33 +00:00
|
|
|
|
│ @ qpvuntsm?? test.user@example.com 2001-02-03 08:05:08 ff309c29
|
2023-02-09 02:53:47 +00:00
|
|
|
|
├─╯ description 1
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ zzzzzzzz root() 00000000
|
2023-01-10 06:26:19 +00:00
|
|
|
|
"###);
|
2023-10-10 11:07:06 +00:00
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
|
|
|
|
Concurrent modification detected, resolving automatically.
|
|
|
|
|
"###);
|
2023-01-10 06:26:19 +00:00
|
|
|
|
|
|
|
|
|
// Color
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "--color=always"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ [1m[4m[38;5;1mq[0m[38;5;1mpvuntsm??[39m [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 08:05:10[39m [1m[38;5;4m6[0m[38;5;8mba70e00[39m
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ description 2
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ [1m[38;5;2m@[0m [1m[4m[38;5;1mq[24mpvuntsm[38;5;9m??[39m [38;5;3mtest.user@example.com[39m [38;5;14m2001-02-03 08:05:08[39m [38;5;12mf[38;5;8mf309c29[39m[0m
|
2023-02-09 02:53:47 +00:00
|
|
|
|
├─╯ [1mdescription 1[0m
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;14m◆[0m [1m[38;5;5mz[0m[38;5;8mzzzzzzz[39m [38;5;2mroot()[39m [1m[38;5;4m0[0m[38;5;8m0000000[39m
|
2023-01-10 06:26:19 +00:00
|
|
|
|
"###);
|
2023-04-08 01:28:16 +00:00
|
|
|
|
|
|
|
|
|
// Obslog and hidden divergent
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["obslog"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-06-23 22:20:33 +00:00
|
|
|
|
@ qpvuntsm?? test.user@example.com 2001-02-03 08:05:08 ff309c29
|
2023-04-08 01:28:16 +00:00
|
|
|
|
│ description 1
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ qpvuntsm hidden test.user@example.com 2001-02-03 08:05:08 485d52a9
|
2023-04-08 01:28:16 +00:00
|
|
|
|
│ (no description set)
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ qpvuntsm hidden test.user@example.com 2001-02-03 08:05:07 230dd059
|
2023-04-08 01:28:16 +00:00
|
|
|
|
(empty) (no description set)
|
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// Colored obslog
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["obslog", "--color=always"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m@[0m [1m[4m[38;5;1mq[24mpvuntsm[38;5;9m??[39m [38;5;3mtest.user@example.com[39m [38;5;14m2001-02-03 08:05:08[39m [38;5;12mf[38;5;8mf309c29[39m[0m
|
2023-04-08 01:28:16 +00:00
|
|
|
|
│ [1mdescription 1[0m
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ [1m[39mq[0m[38;5;8mpvuntsm[39m hidden [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 08:05:08[39m [1m[38;5;4m4[0m[38;5;8m85d52a9[39m
|
2023-08-24 04:26:45 +00:00
|
|
|
|
│ [38;5;3m(no description set)[39m
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ [1m[39mq[0m[38;5;8mpvuntsm[39m hidden [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 08:05:07[39m [1m[38;5;4m2[0m[38;5;8m30dd059[39m
|
2023-08-24 04:26:45 +00:00
|
|
|
|
[38;5;2m(empty)[39m [38;5;2m(no description set)[39m
|
2023-04-08 01:28:16 +00:00
|
|
|
|
"###);
|
2023-01-10 06:26:19 +00:00
|
|
|
|
}
|
2023-01-10 07:43:27 +00:00
|
|
|
|
|
2023-10-26 01:09:27 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_branches() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2023-12-16 10:00:14 +00:00
|
|
|
|
test_env.add_config("git.auto-local-branch = true");
|
2023-10-26 01:09:27 +00:00
|
|
|
|
test_env.add_config(r#"revset-aliases."immutable_heads()" = "none()""#);
|
|
|
|
|
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "origin"]);
|
2023-10-26 01:09:27 +00:00
|
|
|
|
let origin_path = test_env.env_root().join("origin");
|
|
|
|
|
let origin_git_repo_path = origin_path
|
|
|
|
|
.join(".jj")
|
|
|
|
|
.join("repo")
|
|
|
|
|
.join("store")
|
|
|
|
|
.join("git");
|
|
|
|
|
|
|
|
|
|
// Created some branches on the remote
|
|
|
|
|
test_env.jj_cmd_ok(&origin_path, &["describe", "-m=description 1"]);
|
|
|
|
|
test_env.jj_cmd_ok(&origin_path, &["branch", "create", "branch1"]);
|
|
|
|
|
test_env.jj_cmd_ok(&origin_path, &["new", "root()", "-m=description 2"]);
|
2023-10-25 08:50:52 +00:00
|
|
|
|
test_env.jj_cmd_ok(&origin_path, &["branch", "create", "branch2", "unchanged"]);
|
2023-10-26 01:09:27 +00:00
|
|
|
|
test_env.jj_cmd_ok(&origin_path, &["new", "root()", "-m=description 3"]);
|
|
|
|
|
test_env.jj_cmd_ok(&origin_path, &["branch", "create", "branch3"]);
|
|
|
|
|
test_env.jj_cmd_ok(&origin_path, &["git", "export"]);
|
|
|
|
|
test_env.jj_cmd_ok(
|
|
|
|
|
test_env.env_root(),
|
|
|
|
|
&[
|
|
|
|
|
"git",
|
|
|
|
|
"clone",
|
|
|
|
|
origin_git_repo_path.to_str().unwrap(),
|
|
|
|
|
"local",
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
let workspace_root = test_env.env_root().join("local");
|
|
|
|
|
|
|
|
|
|
// Rewrite branch1, move branch2 forward, create conflict in branch3, add
|
|
|
|
|
// new-branch
|
|
|
|
|
test_env.jj_cmd_ok(
|
|
|
|
|
&workspace_root,
|
|
|
|
|
&["describe", "branch1", "-m", "modified branch1 commit"],
|
|
|
|
|
);
|
|
|
|
|
test_env.jj_cmd_ok(&workspace_root, &["new", "branch2"]);
|
|
|
|
|
test_env.jj_cmd_ok(&workspace_root, &["branch", "set", "branch2"]);
|
|
|
|
|
test_env.jj_cmd_ok(&workspace_root, &["branch", "create", "new-branch"]);
|
|
|
|
|
test_env.jj_cmd_ok(&workspace_root, &["describe", "branch3", "-m=local"]);
|
|
|
|
|
test_env.jj_cmd_ok(&origin_path, &["describe", "branch3", "-m=origin"]);
|
|
|
|
|
test_env.jj_cmd_ok(&origin_path, &["git", "export"]);
|
|
|
|
|
test_env.jj_cmd_ok(&workspace_root, &["git", "fetch"]);
|
|
|
|
|
|
2023-10-25 07:31:18 +00:00
|
|
|
|
let template = r#"commit_id.short() ++ " " ++ if(branches, branches, "(no branches)")"#;
|
2023-10-26 01:09:27 +00:00
|
|
|
|
let output = test_env.jj_cmd_success(&workspace_root, &["log", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(output, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ fed794e2ba44 branch3?? branch3@origin
|
|
|
|
|
│ ○ b1bb3766d584 branch3??
|
2023-10-26 01:09:27 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ 28ff13ce7195 branch1*
|
2023-10-26 01:09:27 +00:00
|
|
|
|
├─╯
|
|
|
|
|
│ @ a5b4d15489cc branch2* new-branch
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ 8476341eb395 branch2@origin unchanged
|
2023-10-26 01:09:27 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ 000000000000 (no branches)
|
2023-10-25 07:31:18 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
let template = r#"branches.map(|b| separate("/", b.remote(), b.name())).join(", ")"#;
|
|
|
|
|
let output = test_env.jj_cmd_success(&workspace_root, &["log", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(output, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ branch3, origin/branch3
|
|
|
|
|
│ ○ branch3
|
2023-10-25 07:31:18 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ branch1
|
2023-10-25 07:31:18 +00:00
|
|
|
|
├─╯
|
|
|
|
|
│ @ branch2, new-branch
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ origin/branch2, unchanged
|
2023-10-25 07:31:18 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆
|
2023-10-26 01:09:27 +00:00
|
|
|
|
"###);
|
2023-10-25 08:50:52 +00:00
|
|
|
|
|
|
|
|
|
let template = r#"separate(" ", "L:", local_branches, "R:", remote_branches)"#;
|
|
|
|
|
let output = test_env.jj_cmd_success(&workspace_root, &["log", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(output, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ L: branch3?? R: branch3@origin
|
|
|
|
|
│ ○ L: branch3?? R:
|
2023-10-25 08:50:52 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ L: branch1* R:
|
2023-10-25 08:50:52 +00:00
|
|
|
|
├─╯
|
|
|
|
|
│ @ L: branch2* new-branch R:
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ L: unchanged R: branch2@origin unchanged@origin
|
2023-10-25 08:50:52 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ L: R:
|
2023-10-25 08:50:52 +00:00
|
|
|
|
"###);
|
2024-04-30 04:51:32 +00:00
|
|
|
|
|
|
|
|
|
let template = r#"
|
|
|
|
|
remote_branches.map(|ref| concat(
|
|
|
|
|
ref,
|
|
|
|
|
if(ref.tracked(),
|
|
|
|
|
"(+" ++ ref.tracking_ahead_count().lower()
|
|
|
|
|
++ "/-" ++ ref.tracking_behind_count().lower() ++ ")"),
|
|
|
|
|
))
|
|
|
|
|
"#;
|
|
|
|
|
let output = test_env.jj_cmd_success(
|
|
|
|
|
&workspace_root,
|
|
|
|
|
&["log", "-r::remote_branches()", "-T", template],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(output, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ branch3@origin(+0/-1)
|
|
|
|
|
│ ○ branch2@origin(+0/-1) unchanged@origin(+0/-0)
|
2024-04-30 04:51:32 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ branch1@origin(+1/-1)
|
2024-04-30 04:51:32 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆
|
2024-04-30 04:51:32 +00:00
|
|
|
|
"###);
|
2023-10-26 01:09:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-10 07:43:27 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_git_head() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
git2::Repository::init(&repo_path).unwrap();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["git", "init", "--git-repo=."]);
|
2023-01-10 07:43:27 +00:00
|
|
|
|
|
2023-10-10 11:59:18 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-m=initial"]);
|
2023-01-10 07:43:27 +00:00
|
|
|
|
std::fs::write(repo_path.join("file"), "foo\n").unwrap();
|
2024-03-24 12:57:07 +00:00
|
|
|
|
|
|
|
|
|
let template = r#"
|
|
|
|
|
separate(", ",
|
|
|
|
|
if(git_head, "name: " ++ git_head.name()),
|
|
|
|
|
"remote: " ++ git_head.remote(),
|
|
|
|
|
) ++ "\n"
|
|
|
|
|
"#;
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
@ remote: <Error: No RefName available>
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ name: HEAD, remote: git
|
|
|
|
|
◆ remote: <Error: No RefName available>
|
2024-03-24 12:57:07 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
2023-01-10 07:43:27 +00:00
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "--color=always"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;2m@[0m [1m[38;5;13mr[38;5;8mlvkpnrz[39m [38;5;3mtest.user@example.com[39m [38;5;14m2001-02-03 08:05:09[39m [38;5;12m5[38;5;8m0aaf475[39m[0m
|
2023-02-09 02:53:47 +00:00
|
|
|
|
│ [1minitial[0m
|
2024-07-15 22:20:10 +00:00
|
|
|
|
○ [1m[38;5;5mq[0m[38;5;8mpvuntsm[39m [38;5;3mtest.user@example.com[39m [38;5;6m2001-02-03 08:05:07[39m [38;5;2mHEAD@git[39m [1m[38;5;4m2[0m[38;5;8m30dd059[39m
|
2023-08-24 04:26:45 +00:00
|
|
|
|
│ [38;5;2m(empty)[39m [38;5;2m(no description set)[39m
|
2024-07-15 22:20:10 +00:00
|
|
|
|
[1m[38;5;14m◆[0m [1m[38;5;5mz[0m[38;5;8mzzzzzzz[39m [38;5;2mroot()[39m [1m[38;5;4m0[0m[38;5;8m0000000[39m
|
2023-01-10 07:43:27 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|
2023-02-14 14:35:40 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_customize_short_id() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2023-02-14 14:35:40 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
2023-10-10 11:59:18 +00:00
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["describe", "-m", "first"]);
|
2023-02-14 14:35:40 +00:00
|
|
|
|
|
2023-02-21 04:38:52 +00:00
|
|
|
|
// Customize both the commit and the change id
|
2023-02-14 14:35:40 +00:00
|
|
|
|
let decl = "template-aliases.'format_short_id(id)'";
|
|
|
|
|
let stdout = test_env.jj_cmd_success(
|
|
|
|
|
&repo_path,
|
2023-02-21 04:38:52 +00:00
|
|
|
|
&[
|
|
|
|
|
"log",
|
|
|
|
|
"--config-toml",
|
2023-02-28 11:30:57 +00:00
|
|
|
|
&format!(r#"{decl}='id.shortest(5).prefix().upper() ++ "_" ++ id.shortest(5).rest()'"#),
|
2023-02-21 04:38:52 +00:00
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-06-23 22:20:33 +00:00
|
|
|
|
@ Q_pvun test.user@example.com 2001-02-03 08:05:08 F_a156
|
2023-02-21 04:38:52 +00:00
|
|
|
|
│ (empty) first
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ Z_zzzz root() 0_0000
|
2023-02-21 04:38:52 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// Customize only the change id
|
|
|
|
|
let stdout = test_env.jj_cmd_success(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&[
|
|
|
|
|
"log",
|
|
|
|
|
"--config-toml",
|
|
|
|
|
r#"
|
|
|
|
|
[template-aliases]
|
|
|
|
|
'format_short_change_id(id)'='format_short_id(id).upper()'
|
|
|
|
|
"#,
|
|
|
|
|
],
|
2023-02-14 14:35:40 +00:00
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
2024-06-23 22:20:33 +00:00
|
|
|
|
@ QPVUNTSM test.user@example.com 2001-02-03 08:05:08 fa15625b
|
2023-02-14 14:35:40 +00:00
|
|
|
|
│ (empty) first
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ ZZZZZZZZ root() 00000000
|
2023-02-14 14:35:40 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|
2024-03-13 07:45:41 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_immutable() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2024-03-13 07:45:41 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-mA", "root()"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-mB"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["branch", "create", "main"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-mC"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-mD", "root()"]);
|
|
|
|
|
|
|
|
|
|
let template = r#"
|
|
|
|
|
separate(" ",
|
|
|
|
|
description.first_line(),
|
|
|
|
|
branches,
|
|
|
|
|
if(immutable, "[immutable]"),
|
|
|
|
|
) ++ "\n"
|
|
|
|
|
"#;
|
|
|
|
|
|
|
|
|
|
test_env.add_config("revset-aliases.'immutable_heads()' = 'main'");
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-r::", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
@ D
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ C
|
|
|
|
|
│ ◆ B main [immutable]
|
|
|
|
|
│ ◆ A [immutable]
|
2024-03-13 07:45:41 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆ [immutable]
|
2024-03-13 07:45:41 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// Suppress error that could be detected earlier
|
|
|
|
|
test_env.add_config("revsets.short-prefixes = ''");
|
|
|
|
|
|
|
|
|
|
test_env.add_config("revset-aliases.'immutable_heads()' = 'unknown_fn()'");
|
|
|
|
|
let stderr = test_env.jj_cmd_failure(&repo_path, &["log", "-r::", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
2024-03-26 11:28:50 +00:00
|
|
|
|
Error: Failed to parse template: Failed to parse revset
|
2024-03-25 15:54:39 +00:00
|
|
|
|
Caused by:
|
|
|
|
|
1: --> 5:10
|
2024-03-13 07:45:41 +00:00
|
|
|
|
|
|
|
|
|
|
5 | if(immutable, "[immutable]"),
|
|
|
|
|
| ^-------^
|
|
|
|
|
|
|
2024-03-25 15:54:39 +00:00
|
|
|
|
= Failed to parse revset
|
|
|
|
|
2: --> 1:1
|
2024-03-13 07:45:41 +00:00
|
|
|
|
|
|
|
|
|
|
1 | unknown_fn()
|
|
|
|
|
| ^--------^
|
|
|
|
|
|
|
2024-03-26 11:28:50 +00:00
|
|
|
|
= Function "unknown_fn" doesn't exist
|
2024-03-13 07:45:41 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
test_env.add_config("revset-aliases.'immutable_heads()' = 'unknown_symbol'");
|
|
|
|
|
let stderr = test_env.jj_cmd_failure(&repo_path, &["log", "-r::", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
2024-03-26 11:28:50 +00:00
|
|
|
|
Error: Failed to parse template: Failed to evaluate revset
|
2024-03-25 15:54:39 +00:00
|
|
|
|
Caused by:
|
|
|
|
|
1: --> 5:10
|
2024-03-13 07:45:41 +00:00
|
|
|
|
|
|
|
|
|
|
5 | if(immutable, "[immutable]"),
|
|
|
|
|
| ^-------^
|
|
|
|
|
|
|
2024-03-25 15:54:39 +00:00
|
|
|
|
= Failed to evaluate revset
|
|
|
|
|
2: Revision "unknown_symbol" doesn't exist
|
2024-03-13 07:45:41 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|
2024-04-26 14:56:40 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_contained_in() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
2024-05-17 19:49:25 +00:00
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
2024-04-26 14:56:40 +00:00
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-mA", "root()"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-mB"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["branch", "create", "main"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-mC"]);
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-mD", "root()"]);
|
|
|
|
|
|
|
|
|
|
let template_for_revset = |revset: &str| {
|
|
|
|
|
format!(
|
|
|
|
|
r#"
|
|
|
|
|
separate(" ",
|
|
|
|
|
description.first_line(),
|
|
|
|
|
branches,
|
|
|
|
|
if(self.contained_in("{revset}"), "[contained_in]"),
|
|
|
|
|
) ++ "\n"
|
|
|
|
|
"#
|
|
|
|
|
)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&[
|
|
|
|
|
"log",
|
|
|
|
|
"-r::",
|
|
|
|
|
"-T",
|
|
|
|
|
&template_for_revset(r#"description(A)::"#),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
@ D
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ C [contained_in]
|
|
|
|
|
│ ○ B main [contained_in]
|
|
|
|
|
│ ○ A [contained_in]
|
2024-04-26 14:56:40 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆
|
2024-04-26 14:56:40 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&[
|
|
|
|
|
"log",
|
|
|
|
|
"-r::",
|
|
|
|
|
"-T",
|
|
|
|
|
&template_for_revset(r#"visible_heads()"#),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
@ D [contained_in]
|
2024-07-15 22:20:10 +00:00
|
|
|
|
│ ○ C [contained_in]
|
|
|
|
|
│ ○ B main
|
|
|
|
|
│ ○ A
|
2024-04-26 14:56:40 +00:00
|
|
|
|
├─╯
|
2024-07-15 22:20:10 +00:00
|
|
|
|
◆
|
2024-04-26 14:56:40 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// Suppress error that could be detected earlier
|
|
|
|
|
let stderr = test_env.jj_cmd_failure(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&["log", "-r::", "-T", &template_for_revset("unknown_fn()")],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
|
|
|
|
Error: Failed to parse template: Failed to parse revset
|
|
|
|
|
Caused by:
|
|
|
|
|
1: --> 5:28
|
|
|
|
|
|
|
|
|
|
|
5 | if(self.contained_in("unknown_fn()"), "[contained_in]"),
|
|
|
|
|
| ^------------^
|
|
|
|
|
|
|
|
|
|
|
= Failed to parse revset
|
|
|
|
|
2: --> 1:1
|
|
|
|
|
|
|
|
|
|
|
1 | unknown_fn()
|
|
|
|
|
| ^--------^
|
|
|
|
|
|
|
|
|
|
|
= Function "unknown_fn" doesn't exist
|
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
let stderr = test_env.jj_cmd_failure(
|
|
|
|
|
&repo_path,
|
2024-05-04 08:02:14 +00:00
|
|
|
|
&["log", "-r::", "-T", &template_for_revset("author(x:'y')")],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
|
|
|
|
Error: Failed to parse template: Failed to parse revset
|
|
|
|
|
Caused by:
|
|
|
|
|
1: --> 5:28
|
|
|
|
|
|
|
|
|
|
|
5 | if(self.contained_in("author(x:'y')"), "[contained_in]"),
|
|
|
|
|
| ^-------------^
|
|
|
|
|
|
|
|
|
|
|
= Failed to parse revset
|
|
|
|
|
2: --> 1:8
|
|
|
|
|
|
|
|
|
|
|
1 | author(x:'y')
|
|
|
|
|
| ^---^
|
|
|
|
|
|
|
2024-06-03 05:57:33 +00:00
|
|
|
|
= Invalid string pattern
|
2024-05-04 08:02:14 +00:00
|
|
|
|
3: Invalid string pattern kind "x:"
|
2024-07-21 12:44:43 +00:00
|
|
|
|
Hint: Try prefixing with one of `exact:`, `glob:`, `regex:`, or `substring:`
|
2024-05-04 08:02:14 +00:00
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
let stderr = test_env.jj_cmd_failure(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&["log", "-r::", "-T", &template_for_revset("maine")],
|
2024-04-26 14:56:40 +00:00
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
|
|
|
|
Error: Failed to parse template: Failed to evaluate revset
|
|
|
|
|
Caused by:
|
|
|
|
|
1: --> 5:28
|
|
|
|
|
|
|
2024-05-04 08:02:14 +00:00
|
|
|
|
5 | if(self.contained_in("maine"), "[contained_in]"),
|
|
|
|
|
| ^-----^
|
2024-04-26 14:56:40 +00:00
|
|
|
|
|
|
|
|
|
|
= Failed to evaluate revset
|
2024-05-04 08:02:14 +00:00
|
|
|
|
2: Revision "maine" doesn't exist
|
|
|
|
|
Hint: Did you mean "main"?
|
2024-04-26 14:56:40 +00:00
|
|
|
|
"###);
|
|
|
|
|
}
|
2024-06-30 01:38:48 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_short_prefix_in_transaction() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
|
|
test_env.add_config(r#"
|
|
|
|
|
[revsets]
|
|
|
|
|
log = '::description(test)'
|
|
|
|
|
|
|
|
|
|
[templates]
|
|
|
|
|
log = 'summary ++ "\n"'
|
|
|
|
|
commit_summary = 'summary'
|
|
|
|
|
|
|
|
|
|
[template-aliases]
|
|
|
|
|
'format_id(id)' = 'id.shortest(12).prefix() ++ "[" ++ id.shortest(12).rest() ++ "]"'
|
|
|
|
|
'summary' = 'separate(" ", format_id(change_id), format_id(commit_id), description.first_line())'
|
|
|
|
|
"#);
|
|
|
|
|
|
|
|
|
|
std::fs::write(repo_path.join("file"), "original file\n").unwrap();
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["describe", "-m", "initial"]);
|
|
|
|
|
|
|
|
|
|
// Create a chain of 5 commits
|
|
|
|
|
for i in 0..5 {
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", "-m", &format!("commit{i}")]);
|
|
|
|
|
std::fs::write(repo_path.join("file"), format!("file {i}\n")).unwrap();
|
|
|
|
|
}
|
|
|
|
|
// Create 2^4 duplicates of the chain
|
|
|
|
|
for _ in 0..4 {
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["duplicate", "description(commit)"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Short prefix should be used for commit summary inside the transaction
|
2024-07-17 15:40:53 +00:00
|
|
|
|
let parent_id = "58731d"; // Force id lookup to build index before mutation.
|
|
|
|
|
// If the cached index wasn't invalidated, the
|
|
|
|
|
// newly created commit wouldn't be found in it.
|
|
|
|
|
let (stdout, stderr) =
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new", parent_id, "--no-edit", "-m", "test"]);
|
2024-06-30 01:38:48 +00:00
|
|
|
|
insta::assert_snapshot!(stdout, @"");
|
|
|
|
|
insta::assert_snapshot!(stderr, @r###"
|
|
|
|
|
Created new commit km[kuslswpqwq] 7[4ac55dd119b] test
|
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// Should match log's short prefixes
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "--no-graph"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
km[kuslswpqwq] 7[4ac55dd119b] test
|
|
|
|
|
y[qosqzytrlsw] 5[8731db5875e] commit4
|
|
|
|
|
r[oyxmykxtrkr] 9[95cc897bca7] commit3
|
|
|
|
|
m[zvwutvlkqwt] 3[74534c54448] commit2
|
|
|
|
|
zs[uskulnrvyr] d[e304c281bed] commit1
|
|
|
|
|
kk[mpptxzrspx] 05[2755155952] commit0
|
|
|
|
|
q[pvuntsmwlqt] e[0e22b9fae75] initial
|
|
|
|
|
zz[zzzzzzzzzz] 00[0000000000]
|
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
test_env.add_config(r#"revsets.short-prefixes = """#);
|
|
|
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "--no-graph"]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
kmk[uslswpqwq] 74ac[55dd119b] test
|
|
|
|
|
yq[osqzytrlsw] 587[31db5875e] commit4
|
|
|
|
|
ro[yxmykxtrkr] 99[5cc897bca7] commit3
|
|
|
|
|
mz[vwutvlkqwt] 374[534c54448] commit2
|
|
|
|
|
zs[uskulnrvyr] de[304c281bed] commit1
|
|
|
|
|
kk[mpptxzrspx] 052[755155952] commit0
|
|
|
|
|
qp[vuntsmwlqt] e0[e22b9fae75] initial
|
|
|
|
|
zz[zzzzzzzzzz] 00[0000000000]
|
|
|
|
|
"###);
|
|
|
|
|
}
|
2024-07-15 09:08:45 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_log_diff_predefined_formats() {
|
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
|
test_env.jj_cmd_ok(test_env.env_root(), &["git", "init", "repo"]);
|
|
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
|
|
std::fs::write(repo_path.join("file1"), "a\nb\n").unwrap();
|
|
|
|
|
std::fs::write(repo_path.join("file2"), "a\n").unwrap();
|
|
|
|
|
test_env.jj_cmd_ok(&repo_path, &["new"]);
|
|
|
|
|
std::fs::write(repo_path.join("file1"), "a\nb\nc\n").unwrap();
|
|
|
|
|
std::fs::write(repo_path.join("file2"), "b\nc\n").unwrap();
|
|
|
|
|
|
|
|
|
|
let template = r#"
|
|
|
|
|
concat(
|
|
|
|
|
"=== color_words ===\n",
|
|
|
|
|
diff.color_words(),
|
|
|
|
|
"=== git ===\n",
|
|
|
|
|
diff.git(),
|
|
|
|
|
"=== stat ===\n",
|
|
|
|
|
diff.stat(80),
|
|
|
|
|
"=== summary ===\n",
|
|
|
|
|
diff.summary(),
|
|
|
|
|
)
|
|
|
|
|
"#;
|
|
|
|
|
|
|
|
|
|
// color, without paths
|
|
|
|
|
let stdout = test_env.jj_cmd_success(
|
|
|
|
|
&repo_path,
|
|
|
|
|
&["log", "--no-graph", "--color=always", "-r@", "-T", template],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
=== color_words ===
|
|
|
|
|
[38;5;3mModified regular file file1:[39m
|
|
|
|
|
[38;5;1m 1[39m [38;5;2m 1[39m: a
|
|
|
|
|
[38;5;1m 2[39m [38;5;2m 2[39m: b
|
|
|
|
|
[38;5;2m 3[39m: [4m[38;5;2mc[24m[39m
|
|
|
|
|
[38;5;3mModified regular file file2:[39m
|
|
|
|
|
[38;5;1m 1[39m [38;5;2m 1[39m: [4m[38;5;1ma[38;5;2mb[24m[39m
|
|
|
|
|
[38;5;2m 2[39m: [4m[38;5;2mc[24m[39m
|
|
|
|
|
=== git ===
|
|
|
|
|
[1mdiff --git a/file1 b/file1[0m
|
|
|
|
|
[1mindex 422c2b7ab3..de980441c3 100644[0m
|
|
|
|
|
[1m--- a/file1[0m
|
|
|
|
|
[1m+++ b/file1[0m
|
|
|
|
|
[38;5;6m@@ -1,2 +1,3 @@[39m
|
|
|
|
|
a
|
|
|
|
|
b
|
|
|
|
|
[38;5;2m+[4mc[24m[39m
|
|
|
|
|
[1mdiff --git a/file2 b/file2[0m
|
|
|
|
|
[1mindex 7898192261..9ddeb5c484 100644[0m
|
|
|
|
|
[1m--- a/file2[0m
|
|
|
|
|
[1m+++ b/file2[0m
|
|
|
|
|
[38;5;6m@@ -1,1 +1,2 @@[39m
|
|
|
|
|
[38;5;1m-[4ma[24m[39m
|
|
|
|
|
[38;5;2m+[4mb[24m[39m
|
|
|
|
|
[38;5;2m+[4mc[24m[39m
|
|
|
|
|
=== stat ===
|
|
|
|
|
file1 | 1 [38;5;2m+[38;5;1m[39m
|
|
|
|
|
file2 | 3 [38;5;2m++[38;5;1m-[39m
|
|
|
|
|
2 files changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
|
=== summary ===
|
|
|
|
|
[38;5;6mM file1[39m
|
|
|
|
|
[38;5;6mM file2[39m
|
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// cwd != workspace root
|
|
|
|
|
let stdout = test_env.jj_cmd_success(
|
|
|
|
|
test_env.env_root(),
|
|
|
|
|
&["log", "-Rrepo", "--no-graph", "-r@", "-T", template],
|
|
|
|
|
);
|
|
|
|
|
insta::assert_snapshot!(stdout.replace('\\', "/"), @r###"
|
|
|
|
|
=== color_words ===
|
|
|
|
|
Modified regular file repo/file1:
|
|
|
|
|
1 1: a
|
|
|
|
|
2 2: b
|
|
|
|
|
3: c
|
|
|
|
|
Modified regular file repo/file2:
|
|
|
|
|
1 1: ab
|
|
|
|
|
2: c
|
|
|
|
|
=== git ===
|
|
|
|
|
diff --git a/file1 b/file1
|
|
|
|
|
index 422c2b7ab3..de980441c3 100644
|
|
|
|
|
--- a/file1
|
|
|
|
|
+++ b/file1
|
|
|
|
|
@@ -1,2 +1,3 @@
|
|
|
|
|
a
|
|
|
|
|
b
|
|
|
|
|
+c
|
|
|
|
|
diff --git a/file2 b/file2
|
|
|
|
|
index 7898192261..9ddeb5c484 100644
|
|
|
|
|
--- a/file2
|
|
|
|
|
+++ b/file2
|
|
|
|
|
@@ -1,1 +1,2 @@
|
|
|
|
|
-a
|
|
|
|
|
+b
|
|
|
|
|
+c
|
|
|
|
|
=== stat ===
|
|
|
|
|
repo/file1 | 1 +
|
|
|
|
|
repo/file2 | 3 ++-
|
|
|
|
|
2 files changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
|
=== summary ===
|
|
|
|
|
M repo/file1
|
|
|
|
|
M repo/file2
|
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// color_words() with parameters
|
|
|
|
|
let template = "self.diff('file1').color_words(0)";
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "--no-graph", "-r@", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
Modified regular file file1:
|
|
|
|
|
...
|
|
|
|
|
3: c
|
|
|
|
|
"###);
|
|
|
|
|
|
|
|
|
|
// git() with parameters
|
|
|
|
|
let template = "self.diff('file1').git(1)";
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "--no-graph", "-r@", "-T", template]);
|
|
|
|
|
insta::assert_snapshot!(stdout, @r###"
|
|
|
|
|
diff --git a/file1 b/file1
|
|
|
|
|
index 422c2b7ab3..de980441c3 100644
|
|
|
|
|
--- a/file1
|
|
|
|
|
+++ b/file1
|
|
|
|
|
@@ -2,1 +2,2 @@
|
|
|
|
|
b
|
|
|
|
|
+c
|
|
|
|
|
"###);
|
|
|
|
|
}
|