From ff2a4b09646a8a5949808bfadf31747751831963 Mon Sep 17 00:00:00 2001 From: Justin Wernick Date: Wed, 29 Mar 2023 14:16:06 +0200 Subject: Function to get the current user's groups --- tests/cli.rs | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/cli.rs b/tests/cli.rs index 1daa850..872c2ce 100644 --- a/tests/cli.rs +++ b/tests/cli.rs @@ -2,7 +2,7 @@ use anyhow::Result; use assert_cmd::{cargo::cargo_bin, Command}; use rexpect::session::{spawn_command, PtySession}; use tempfile::TempDir; -use user_info::get_username; +use user_info::{get_user_groups, get_username}; struct TestContext { p: PtySession, @@ -107,7 +107,7 @@ fn can_init_a_new_git_repo() -> Result<()> { .as_ref() .join("git") .join(username) - .join("my-new-repo.git"), + .join(&format!("{}.git", repo_name)), ) .assert() .success() @@ -115,6 +115,36 @@ fn can_init_a_new_git_repo() -> Result<()> { Ok(()) } +#[test] +#[ignore] +fn can_init_a_new_shared_git_repo() -> Result<()> { + let mut c = spawn_interactive_process()?; + let group = get_user_groups().pop().unwrap(); + let repo_name = "my-new-shared-repo"; + c.p.send_line(&format!("git-init --shared {} {}", group, repo_name))?; + c.p.exp_string(&format!( + "Successfully created \"git/{}/{}.git\"", + group, repo_name + ))?; + expect_prompt(&mut c.p)?; + + Command::new("git") + .arg("rev-list") + .arg("--all") + .current_dir( + c.workdir + .as_ref() + .join("git") + .join(&group) + .join(&format!("{}.git", repo_name)), + ) + .assert() + .success() + .stdout(""); + // TODO: Check file permissions? Shared set in git config? + Ok(()) +} + #[test] fn runs_a_single_command_and_exit_with_cli_flag() -> Result<()> { let username = get_username().unwrap(); -- cgit v1.2.3