forked from mirrors/jj
tests: pass string instead of bytes to add_config()
I don't think need to write non-UTF8 bytes to our config files. If we ever do (maybe to test that we give the user a reasonable error message), we add a custom function for that.
This commit is contained in:
parent
e1d49cc67f
commit
3ccdd1f98a
12 changed files with 36 additions and 44 deletions
|
@ -115,7 +115,7 @@ impl TestEnvironment {
|
||||||
&self.config_dir
|
&self.config_dir
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn add_config(&self, content: &[u8]) {
|
pub fn add_config(&self, content: &str) {
|
||||||
// Concatenating two valid TOML files does not (generally) result in a valid
|
// Concatenating two valid TOML files does not (generally) result in a valid
|
||||||
// TOML file, so we use create a new file every time instead.
|
// TOML file, so we use create a new file every time instead.
|
||||||
let mut config_file_number = self.config_file_number.borrow_mut();
|
let mut config_file_number = self.config_file_number.borrow_mut();
|
||||||
|
@ -142,9 +142,8 @@ impl TestEnvironment {
|
||||||
// in it
|
// in it
|
||||||
let escaped_editor_path = editor_path.to_str().unwrap().replace('\\', r"\\");
|
let escaped_editor_path = editor_path.to_str().unwrap().replace('\\', r"\\");
|
||||||
self.add_env_var("EDITOR", &escaped_editor_path);
|
self.add_env_var("EDITOR", &escaped_editor_path);
|
||||||
self.add_config(
|
self.add_config(&format!(
|
||||||
format!(
|
r###"
|
||||||
r###"
|
|
||||||
[ui]
|
[ui]
|
||||||
merge-editor = "fake-editor"
|
merge-editor = "fake-editor"
|
||||||
|
|
||||||
|
@ -152,9 +151,7 @@ impl TestEnvironment {
|
||||||
fake-editor.program="{escaped_editor_path}"
|
fake-editor.program="{escaped_editor_path}"
|
||||||
fake-editor.merge-args = ["$output"]
|
fake-editor.merge-args = ["$output"]
|
||||||
"###
|
"###
|
||||||
)
|
));
|
||||||
.as_bytes(),
|
|
||||||
);
|
|
||||||
let edit_script = self.env_root().join("edit_script");
|
let edit_script = self.env_root().join("edit_script");
|
||||||
std::fs::write(&edit_script, "").unwrap();
|
std::fs::write(&edit_script, "").unwrap();
|
||||||
self.add_env_var("EDIT_SCRIPT", edit_script.to_str().unwrap());
|
self.add_env_var("EDIT_SCRIPT", edit_script.to_str().unwrap());
|
||||||
|
@ -169,7 +166,7 @@ impl TestEnvironment {
|
||||||
// Simplified TOML escaping, hoping that there are no '"' or control characters
|
// Simplified TOML escaping, hoping that there are no '"' or control characters
|
||||||
// in it
|
// in it
|
||||||
let escaped_diff_editor_path = diff_editor_path.to_str().unwrap().replace('\\', r"\\");
|
let escaped_diff_editor_path = diff_editor_path.to_str().unwrap().replace('\\', r"\\");
|
||||||
self.add_config(format!(r#"ui.diff-editor = "{escaped_diff_editor_path}""#).as_bytes());
|
self.add_config(&format!(r#"ui.diff-editor = "{escaped_diff_editor_path}""#));
|
||||||
let edit_script = self.env_root().join("diff_edit_script");
|
let edit_script = self.env_root().join("diff_edit_script");
|
||||||
std::fs::write(&edit_script, "").unwrap();
|
std::fs::write(&edit_script, "").unwrap();
|
||||||
self.add_env_var("DIFF_EDIT_SCRIPT", edit_script.to_str().unwrap());
|
self.add_env_var("DIFF_EDIT_SCRIPT", edit_script.to_str().unwrap());
|
||||||
|
|
|
@ -24,7 +24,7 @@ fn test_alias_basic() {
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
test_env.add_config(br#"alias.b = ["log", "-r", "@", "-T", "branches"]"#);
|
test_env.add_config(r#"alias.b = ["log", "-r", "@", "-T", "branches"]"#);
|
||||||
test_env.jj_cmd_success(&repo_path, &["branch", "create", "my-branch"]);
|
test_env.jj_cmd_success(&repo_path, &["branch", "create", "my-branch"]);
|
||||||
let stdout = test_env.jj_cmd_success(&repo_path, &["b"]);
|
let stdout = test_env.jj_cmd_success(&repo_path, &["b"]);
|
||||||
insta::assert_snapshot!(stdout, @r###"
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
|
@ -55,7 +55,7 @@ fn test_alias_calls_unknown_command() {
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
test_env.add_config(br#"alias.foo = ["nonexistent"]"#);
|
test_env.add_config(r#"alias.foo = ["nonexistent"]"#);
|
||||||
let stderr = test_env.jj_cmd_cli_error(&repo_path, &["foo"]);
|
let stderr = test_env.jj_cmd_cli_error(&repo_path, &["foo"]);
|
||||||
insta::assert_snapshot!(stderr, @r###"
|
insta::assert_snapshot!(stderr, @r###"
|
||||||
error: The subcommand 'nonexistent' wasn't recognized
|
error: The subcommand 'nonexistent' wasn't recognized
|
||||||
|
@ -72,7 +72,7 @@ fn test_alias_calls_command_with_invalid_option() {
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
test_env.add_config(br#"alias.foo = ["log", "--nonexistent"]"#);
|
test_env.add_config(r#"alias.foo = ["log", "--nonexistent"]"#);
|
||||||
let stderr = test_env.jj_cmd_cli_error(&repo_path, &["foo"]);
|
let stderr = test_env.jj_cmd_cli_error(&repo_path, &["foo"]);
|
||||||
insta::assert_snapshot!(stderr, @r###"
|
insta::assert_snapshot!(stderr, @r###"
|
||||||
error: Found argument '--nonexistent' which wasn't expected, or isn't valid in this context
|
error: Found argument '--nonexistent' which wasn't expected, or isn't valid in this context
|
||||||
|
@ -90,7 +90,7 @@ fn test_alias_calls_help() {
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
test_env.add_config(br#"alias.h = ["--help"]"#);
|
test_env.add_config(r#"alias.h = ["--help"]"#);
|
||||||
let stdout = test_env.jj_cmd_success(&repo_path, &["h"]);
|
let stdout = test_env.jj_cmd_success(&repo_path, &["h"]);
|
||||||
insta::assert_snapshot!(stdout.lines().take(5).join("\n"), @r###"
|
insta::assert_snapshot!(stdout.lines().take(5).join("\n"), @r###"
|
||||||
Jujutsu (An experimental VCS)
|
Jujutsu (An experimental VCS)
|
||||||
|
@ -107,7 +107,7 @@ fn test_alias_cannot_override_builtin() {
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
test_env.add_config(br#"alias.log = ["rebase"]"#);
|
test_env.add_config(r#"alias.log = ["rebase"]"#);
|
||||||
// Alias should be ignored
|
// Alias should be ignored
|
||||||
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-r", "root"]);
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-r", "root"]);
|
||||||
insta::assert_snapshot!(stdout, @r###"
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
|
@ -123,7 +123,7 @@ fn test_alias_recursive() {
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
test_env.add_config(
|
test_env.add_config(
|
||||||
br#"[alias]
|
r#"[alias]
|
||||||
foo = ["foo"]
|
foo = ["foo"]
|
||||||
bar = ["baz"]
|
bar = ["baz"]
|
||||||
baz = ["bar"]
|
baz = ["bar"]
|
||||||
|
@ -146,7 +146,7 @@ fn test_alias_global_args_before_and_after() {
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
test_env.add_config(br#"alias.l = ["log", "-T", "commit_id", "-r", "all()"]"#);
|
test_env.add_config(r#"alias.l = ["log", "-T", "commit_id", "-r", "all()"]"#);
|
||||||
// Test the setup
|
// Test the setup
|
||||||
let stdout = test_env.jj_cmd_success(&repo_path, &["l"]);
|
let stdout = test_env.jj_cmd_success(&repo_path, &["l"]);
|
||||||
insta::assert_snapshot!(stdout, @r###"
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
|
@ -181,8 +181,8 @@ fn test_alias_global_args_in_definition() {
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
test_env.add_config(
|
test_env.add_config(
|
||||||
br#"alias.l = ["log", "-T", "commit_id", "--at-op", "@-", "-r", "all()", "--color=always"]"#,
|
r#"alias.l = ["log", "-T", "commit_id", "--at-op", "@-", "-r", "all()", "--color=always"]"#,
|
||||||
);
|
);
|
||||||
|
|
||||||
// The global argument in the alias is respected
|
// The global argument in the alias is respected
|
||||||
|
@ -197,7 +197,7 @@ fn test_alias_invalid_definition() {
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
|
|
||||||
test_env.add_config(
|
test_env.add_config(
|
||||||
br#"[alias]
|
r#"[alias]
|
||||||
non-list = 5
|
non-list = 5
|
||||||
non-string-list = [[]]
|
non-string-list = [[]]
|
||||||
"#,
|
"#,
|
||||||
|
|
|
@ -26,8 +26,7 @@ fn test_config_list_single() {
|
||||||
r###"
|
r###"
|
||||||
[test-table]
|
[test-table]
|
||||||
somekey = "some value"
|
somekey = "some value"
|
||||||
"###
|
"###,
|
||||||
.as_bytes(),
|
|
||||||
);
|
);
|
||||||
|
|
||||||
let stdout = test_env.jj_cmd_success(
|
let stdout = test_env.jj_cmd_success(
|
||||||
|
@ -48,8 +47,7 @@ fn test_config_list_table() {
|
||||||
x = true
|
x = true
|
||||||
y.foo = "abc"
|
y.foo = "abc"
|
||||||
y.bar = 123
|
y.bar = 123
|
||||||
"###
|
"###,
|
||||||
.as_bytes(),
|
|
||||||
);
|
);
|
||||||
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["config", "list", "test-table"]);
|
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["config", "list", "test-table"]);
|
||||||
insta::assert_snapshot!(
|
insta::assert_snapshot!(
|
||||||
|
@ -67,8 +65,7 @@ fn test_config_list_array() {
|
||||||
test_env.add_config(
|
test_env.add_config(
|
||||||
r###"
|
r###"
|
||||||
test-array = [1, "b", 3.4]
|
test-array = [1, "b", 3.4]
|
||||||
"###
|
"###,
|
||||||
.as_bytes(),
|
|
||||||
);
|
);
|
||||||
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["config", "list", "test-array"]);
|
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["config", "list", "test-array"]);
|
||||||
insta::assert_snapshot!(stdout, @r###"
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
|
@ -85,8 +82,7 @@ fn test_config_list_inline_table() {
|
||||||
x = 1
|
x = 1
|
||||||
[[test-table]]
|
[[test-table]]
|
||||||
y = ["z"]
|
y = ["z"]
|
||||||
"###
|
"###,
|
||||||
.as_bytes(),
|
|
||||||
);
|
);
|
||||||
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["config", "list", "test-table"]);
|
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["config", "list", "test-table"]);
|
||||||
insta::assert_snapshot!(stdout, @r###"
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
|
@ -104,8 +100,7 @@ fn test_config_list_all() {
|
||||||
x = true
|
x = true
|
||||||
y.foo = "abc"
|
y.foo = "abc"
|
||||||
y.bar = 123
|
y.bar = 123
|
||||||
"###
|
"###,
|
||||||
.as_bytes(),
|
|
||||||
);
|
);
|
||||||
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["config", "list"]);
|
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["config", "list"]);
|
||||||
insta::assert_snapshot!(
|
insta::assert_snapshot!(
|
||||||
|
@ -132,7 +127,7 @@ fn test_config_layer_override_default() {
|
||||||
"###);
|
"###);
|
||||||
|
|
||||||
// User
|
// User
|
||||||
test_env.add_config(format!("{config_key} = {value:?}\n", value = "user").as_bytes());
|
test_env.add_config(&format!("{config_key} = {value:?}\n", value = "user"));
|
||||||
let stdout = test_env.jj_cmd_success(&repo_path, &["config", "list", config_key]);
|
let stdout = test_env.jj_cmd_success(&repo_path, &["config", "list", config_key]);
|
||||||
insta::assert_snapshot!(stdout, @r###"
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
merge-tools.vimdiff.program="user"
|
merge-tools.vimdiff.program="user"
|
||||||
|
@ -180,7 +175,7 @@ fn test_config_layer_override_env() {
|
||||||
"###);
|
"###);
|
||||||
|
|
||||||
// User
|
// User
|
||||||
test_env.add_config(format!("{config_key} = {value:?}\n", value = "user").as_bytes());
|
test_env.add_config(&format!("{config_key} = {value:?}\n", value = "user"));
|
||||||
let stdout = test_env.jj_cmd_success(&repo_path, &["config", "list", config_key]);
|
let stdout = test_env.jj_cmd_success(&repo_path, &["config", "list", config_key]);
|
||||||
insta::assert_snapshot!(stdout, @r###"
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
ui.editor="user"
|
ui.editor="user"
|
||||||
|
|
|
@ -125,7 +125,7 @@ fn test_describe() {
|
||||||
assert!(get_stderr_string(&assert).contains("bad-editor-from-visual-env"));
|
assert!(get_stderr_string(&assert).contains("bad-editor-from-visual-env"));
|
||||||
|
|
||||||
// `ui.editor` config overrides `$VISUAL`
|
// `ui.editor` config overrides `$VISUAL`
|
||||||
test_env.add_config(br#"ui.editor = "bad-editor-from-config""#);
|
test_env.add_config(r#"ui.editor = "bad-editor-from-config""#);
|
||||||
let assert = test_env
|
let assert = test_env
|
||||||
.jj_cmd(&repo_path, &["describe"])
|
.jj_cmd(&repo_path, &["describe"])
|
||||||
.env("VISUAL", "bad-editor-from-visual-env")
|
.env("VISUAL", "bad-editor-from-visual-env")
|
||||||
|
|
|
@ -187,7 +187,7 @@ fn test_color_config() {
|
||||||
"###);
|
"###);
|
||||||
|
|
||||||
// Test that color is used if it's requested in the config file
|
// Test that color is used if it's requested in the config file
|
||||||
test_env.add_config(br#"ui.color="always""#);
|
test_env.add_config(r#"ui.color="always""#);
|
||||||
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-T", "commit_id"]);
|
let stdout = test_env.jj_cmd_success(&repo_path, &["log", "-T", "commit_id"]);
|
||||||
insta::assert_snapshot!(stdout, @r###"
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
@ [1m[38;5;12m230dd059e1b059aefc0da06a2e5a7dbf22362f22[0m
|
@ [1m[38;5;12m230dd059e1b059aefc0da06a2e5a7dbf22362f22[0m
|
||||||
|
@ -291,7 +291,7 @@ fn test_invalid_config() {
|
||||||
// Test that we get a reasonable error if the config is invalid (#55)
|
// Test that we get a reasonable error if the config is invalid (#55)
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
|
|
||||||
test_env.add_config(b"[section]key = value-missing-quotes");
|
test_env.add_config("[section]key = value-missing-quotes");
|
||||||
let stderr = test_env.jj_cmd_failure(test_env.env_root(), &["init", "repo"]);
|
let stderr = test_env.jj_cmd_failure(test_env.env_root(), &["init", "repo"]);
|
||||||
insta::assert_snapshot!(stderr.replace('\\', "/"), @r###"
|
insta::assert_snapshot!(stderr.replace('\\', "/"), @r###"
|
||||||
Config error: expected newline, found an identifier at line 1 column 10 in config/config0001.toml
|
Config error: expected newline, found an identifier at line 1 column 10 in config/config0001.toml
|
||||||
|
|
|
@ -196,7 +196,7 @@ fn test_init_local_disallowed() {
|
||||||
#[test]
|
#[test]
|
||||||
fn test_init_local() {
|
fn test_init_local() {
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
test_env.add_config(br#"ui.allow-init-native = true"#);
|
test_env.add_config(r#"ui.allow-init-native = true"#);
|
||||||
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["init", "repo"]);
|
let stdout = test_env.jj_cmd_success(test_env.env_root(), &["init", "repo"]);
|
||||||
insta::assert_snapshot!(stdout, @r###"
|
insta::assert_snapshot!(stdout, @r###"
|
||||||
Initialized repo in "repo"
|
Initialized repo in "repo"
|
||||||
|
|
|
@ -603,7 +603,7 @@ fn test_default_revset() {
|
||||||
test_env.jj_cmd_success(&repo_path, &["describe", "-m", "add a file"]);
|
test_env.jj_cmd_success(&repo_path, &["describe", "-m", "add a file"]);
|
||||||
|
|
||||||
// Set configuration to only show the root commit.
|
// Set configuration to only show the root commit.
|
||||||
test_env.add_config(br#"ui.default-revset = "root""#);
|
test_env.add_config(r#"ui.default-revset = "root""#);
|
||||||
|
|
||||||
// Log should only contain one line (for the root commit), and not show the
|
// Log should only contain one line (for the root commit), and not show the
|
||||||
// commit created above.
|
// commit created above.
|
||||||
|
@ -657,7 +657,7 @@ fn test_graph_template_color() {
|
||||||
test_env.jj_cmd_success(&repo_path, &["new", "-m", "single line"]);
|
test_env.jj_cmd_success(&repo_path, &["new", "-m", "single line"]);
|
||||||
|
|
||||||
test_env.add_config(
|
test_env.add_config(
|
||||||
br#"[colors]
|
r#"[colors]
|
||||||
description = "red"
|
description = "red"
|
||||||
"working_copy description" = "green"
|
"working_copy description" = "green"
|
||||||
"#,
|
"#,
|
||||||
|
|
|
@ -127,7 +127,7 @@ fn test_op_log() {
|
||||||
fn test_op_log_configurable() {
|
fn test_op_log_configurable() {
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
test_env.add_config(
|
test_env.add_config(
|
||||||
br#"operation.hostname = "my-hostname"
|
r#"operation.hostname = "my-hostname"
|
||||||
operation.username = "my-username"
|
operation.username = "my-username"
|
||||||
"#,
|
"#,
|
||||||
);
|
);
|
||||||
|
|
|
@ -147,7 +147,7 @@ fn test_alias() {
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
test_env.add_config(
|
test_env.add_config(
|
||||||
br###"
|
r###"
|
||||||
[revset-aliases]
|
[revset-aliases]
|
||||||
'my-root' = 'root'
|
'my-root' = 'root'
|
||||||
'syntax-error' = 'whatever &'
|
'syntax-error' = 'whatever &'
|
||||||
|
@ -249,7 +249,7 @@ fn test_bad_alias_decl() {
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
test_env.add_config(
|
test_env.add_config(
|
||||||
br###"
|
r###"
|
||||||
[revset-aliases]
|
[revset-aliases]
|
||||||
'my-root' = 'root'
|
'my-root' = 'root'
|
||||||
'"bad"' = 'root'
|
'"bad"' = 'root'
|
||||||
|
|
|
@ -41,7 +41,7 @@ fn test_show_relative_timestamps() {
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo", "--git"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
test_env.add_config(br#"ui.relative-timestamps = true"#);
|
test_env.add_config(r#"ui.relative-timestamps = true"#);
|
||||||
|
|
||||||
let stdout = test_env.jj_cmd_success(&repo_path, &["show"]);
|
let stdout = test_env.jj_cmd_success(&repo_path, &["show"]);
|
||||||
let timestamp_re = Regex::new(r"\([0-9]+ years ago\)").unwrap();
|
let timestamp_re = Regex::new(r"\([0-9]+ years ago\)").unwrap();
|
||||||
|
|
|
@ -21,7 +21,7 @@ pub mod common;
|
||||||
#[test]
|
#[test]
|
||||||
fn test_untrack() {
|
fn test_untrack() {
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
test_env.add_config(br#"ui.allow-init-native = true"#);
|
test_env.add_config(r#"ui.allow-init-native = true"#);
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ fn test_untrack() {
|
||||||
#[test]
|
#[test]
|
||||||
fn test_untrack_sparse() {
|
fn test_untrack_sparse() {
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
test_env.add_config(br#"ui.allow-init-native = true"#);
|
test_env.add_config(r#"ui.allow-init-native = true"#);
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "repo"]);
|
||||||
let repo_path = test_env.env_root().join("repo");
|
let repo_path = test_env.env_root().join("repo");
|
||||||
|
|
||||||
|
|
|
@ -215,10 +215,10 @@ fn test_list_workspaces_template() {
|
||||||
let test_env = TestEnvironment::default();
|
let test_env = TestEnvironment::default();
|
||||||
test_env.jj_cmd_success(test_env.env_root(), &["init", "--git", "main"]);
|
test_env.jj_cmd_success(test_env.env_root(), &["init", "--git", "main"]);
|
||||||
test_env.add_config(
|
test_env.add_config(
|
||||||
br###"
|
r#"
|
||||||
template.commit_summary = """commit_id.short() " " description.first_line()
|
template.commit_summary = """commit_id.short() " " description.first_line()
|
||||||
if(current_working_copy, " (current)")"""
|
if(current_working_copy, " (current)")"""
|
||||||
"###,
|
"#,
|
||||||
);
|
);
|
||||||
let main_path = test_env.env_root().join("main");
|
let main_path = test_env.env_root().join("main");
|
||||||
let secondary_path = test_env.env_root().join("secondary");
|
let secondary_path = test_env.env_root().join("secondary");
|
||||||
|
|
Loading…
Reference in a new issue