2022-11-26 23:57:50 +00:00
|
|
|
// Copyright 2022 The Jujutsu Authors
|
2022-04-23 18:34:40 +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;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_op_log() {
|
|
|
|
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");
|
2022-12-12 11:43:28 +00:00
|
|
|
test_env.jj_cmd_success(&repo_path, &["describe", "-m", "description 0"]);
|
2022-04-23 18:34:40 +00:00
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["op", "log"]);
|
2022-11-22 17:11:40 +00:00
|
|
|
insta::assert_snapshot!(&stdout, @r###"
|
2022-12-12 11:43:28 +00:00
|
|
|
@ 29c6436f392b test-username@host.example.com 2001-02-03 04:05:08.000 +07:00 - 2001-02-03 04:05:08.000 +07:00
|
|
|
|
| describe commit 230dd059e1b059aefc0da06a2e5a7dbf22362f22
|
|
|
|
| args: jj describe -m 'description 0'
|
|
|
|
o a99a3fd5c51e test-username@host.example.com 2001-02-03 04:05:07.000 +07:00 - 2001-02-03 04:05:07.000 +07:00
|
2022-04-23 18:34:40 +00:00
|
|
|
| add workspace 'default'
|
2022-11-22 17:11:40 +00:00
|
|
|
o 56b94dfc38e7 test-username@host.example.com 2001-02-03 04:05:07.000 +07:00 - 2001-02-03 04:05:07.000 +07:00
|
2022-05-10 04:03:59 +00:00
|
|
|
initialize repo
|
2022-04-23 18:34:40 +00:00
|
|
|
"###);
|
2022-12-12 11:43:28 +00:00
|
|
|
let add_workspace_id = "a99a3fd5c51e";
|
|
|
|
let initialize_repo_id = "56b94dfc38e7";
|
2022-04-23 18:34:40 +00:00
|
|
|
|
|
|
|
// Can load the repo at a specific operation ID
|
2022-12-12 11:43:28 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path, initialize_repo_id), @r###"
|
2022-04-28 23:32:18 +00:00
|
|
|
o 0000000000000000000000000000000000000000
|
|
|
|
"###);
|
2022-12-12 11:43:28 +00:00
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path, add_workspace_id), @r###"
|
2022-04-23 18:34:40 +00:00
|
|
|
@ 230dd059e1b059aefc0da06a2e5a7dbf22362f22
|
|
|
|
o 0000000000000000000000000000000000000000
|
|
|
|
"###);
|
|
|
|
// "@" resolves to the head operation
|
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path, "@"), @r###"
|
2022-12-12 11:43:28 +00:00
|
|
|
@ 335e69215d687b88eb3e4a83d51dcba183c43e24
|
2022-04-23 18:34:40 +00:00
|
|
|
o 0000000000000000000000000000000000000000
|
|
|
|
"###);
|
2022-04-20 05:51:52 +00:00
|
|
|
// "@-" resolves to the parent of the head operation
|
|
|
|
insta::assert_snapshot!(get_log_output(&test_env, &repo_path, "@-"), @r###"
|
2022-12-12 11:43:28 +00:00
|
|
|
@ 230dd059e1b059aefc0da06a2e5a7dbf22362f22
|
2022-04-20 05:51:52 +00:00
|
|
|
o 0000000000000000000000000000000000000000
|
|
|
|
"###);
|
2022-04-23 18:34:40 +00:00
|
|
|
|
|
|
|
// We get a reasonable message if an invalid operation ID is specified
|
2022-04-28 23:32:18 +00:00
|
|
|
insta::assert_snapshot!(test_env.jj_cmd_failure(&repo_path, &["log", "--at-op", "foo"]), @r###"
|
|
|
|
Error: Operation ID "foo" is not a valid hexadecimal prefix
|
|
|
|
"###);
|
2022-04-23 18:34:40 +00:00
|
|
|
// Odd length
|
2022-04-28 23:32:18 +00:00
|
|
|
insta::assert_snapshot!(test_env.jj_cmd_failure(&repo_path, &["log", "--at-op", "123456789"]), @r###"
|
|
|
|
Error: No operation ID matching "123456789"
|
|
|
|
"###);
|
2022-04-23 18:34:40 +00:00
|
|
|
// Even length
|
2022-04-28 23:32:18 +00:00
|
|
|
insta::assert_snapshot!(test_env.jj_cmd_failure(&repo_path, &["log", "--at-op", "0123456789"]), @r###"
|
|
|
|
Error: No operation ID matching "0123456789"
|
|
|
|
"###);
|
2022-04-23 18:34:40 +00:00
|
|
|
// Empty ID
|
2022-04-28 23:32:18 +00:00
|
|
|
insta::assert_snapshot!(test_env.jj_cmd_failure(&repo_path, &["log", "--at-op", ""]), @r###"
|
|
|
|
Error: Operation ID "" is not a valid hexadecimal prefix
|
|
|
|
"###);
|
2022-04-20 05:51:52 +00:00
|
|
|
|
|
|
|
test_env.jj_cmd_success(&repo_path, &["describe", "-m", "description 1"]);
|
|
|
|
test_env.jj_cmd_success(
|
|
|
|
&repo_path,
|
|
|
|
&[
|
|
|
|
"describe",
|
|
|
|
"-m",
|
|
|
|
"description 2",
|
|
|
|
"--at-op",
|
2022-12-12 11:43:28 +00:00
|
|
|
add_workspace_id,
|
2022-04-20 05:51:52 +00:00
|
|
|
],
|
|
|
|
);
|
2022-04-28 23:32:18 +00:00
|
|
|
insta::assert_snapshot!(test_env.jj_cmd_failure(&repo_path, &["log", "--at-op", "@-"]), @r###"
|
|
|
|
Error: The "@-" expression resolved to more than one operation
|
|
|
|
"###);
|
2022-04-20 05:51:52 +00:00
|
|
|
test_env.jj_cmd_success(&repo_path, &["st"]);
|
2022-04-28 23:32:18 +00:00
|
|
|
insta::assert_snapshot!(test_env.jj_cmd_failure(&repo_path, &["log", "--at-op", "@-"]), @r###"
|
|
|
|
Error: The "@-" expression resolved to more than one operation
|
|
|
|
"###);
|
2022-04-23 18:34:40 +00:00
|
|
|
}
|
|
|
|
|
2022-11-13 06:29:06 +00:00
|
|
|
#[test]
|
|
|
|
fn test_op_log_configurable() {
|
|
|
|
let test_env = TestEnvironment::default();
|
|
|
|
test_env.add_config(
|
|
|
|
br#"operation.hostname = "my-hostname"
|
|
|
|
operation.username = "my-username"
|
|
|
|
"#,
|
|
|
|
);
|
2022-11-14 07:41:11 +00:00
|
|
|
test_env
|
2022-11-22 17:11:40 +00:00
|
|
|
.jj_cmd(test_env.env_root(), &["init", "repo", "--git"])
|
2022-11-14 07:41:11 +00:00
|
|
|
.env_remove("JJ_OP_HOSTNAME")
|
|
|
|
.env_remove("JJ_OP_USERNAME")
|
|
|
|
.assert()
|
|
|
|
.success();
|
2022-11-13 06:29:06 +00:00
|
|
|
let repo_path = test_env.env_root().join("repo");
|
|
|
|
|
|
|
|
let stdout = test_env.jj_cmd_success(&repo_path, &["op", "log"]);
|
|
|
|
assert!(stdout.contains("my-username@my-hostname"));
|
|
|
|
}
|
|
|
|
|
2022-04-23 18:34:40 +00:00
|
|
|
fn get_log_output(test_env: &TestEnvironment, repo_path: &Path, op_id: &str) -> String {
|
2022-10-19 05:21:25 +00:00
|
|
|
test_env.jj_cmd_success(
|
|
|
|
repo_path,
|
|
|
|
&["log", "-T", "commit_id", "--at-op", op_id, "-r", "all()"],
|
|
|
|
)
|
2022-04-23 18:34:40 +00:00
|
|
|
}
|