From 00f2057ae488c75b656326c73e6fbda6963c585e Mon Sep 17 00:00:00 2001 From: qwjyh <62229267+qwjyh@users.noreply.github.com> Date: Thu, 25 Apr 2024 16:52:06 +0900 Subject: [PATCH 1/4] Create rust.yml --- .github/workflows/rust.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..31000a2 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose From 462c34cf96c21231457129cae9d1fe4c9315b1f0 Mon Sep 17 00:00:00 2001 From: qwjyh Date: Thu, 25 Apr 2024 16:46:59 +0900 Subject: [PATCH 2/4] [fix] test: setup gitconfig at repo init --- tests/cli.rs | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/tests/cli.rs b/tests/cli.rs index f27e1bd..de3bf6e 100644 --- a/tests/cli.rs +++ b/tests/cli.rs @@ -1,5 +1,8 @@ mod integrated_test { - use std::fs::DirBuilder; + use std::{ + fs::{DirBuilder, File}, + io::{BufWriter, Write}, path::Path, + }; use anyhow::{Ok, Result}; use assert_cmd::{assert::OutputAssertExt, Command}; @@ -7,9 +10,27 @@ mod integrated_test { use log::trace; use predicates::prelude::predicate; + fn setup_gitconfig(dir_path: &Path) -> Result<()> { + DirBuilder::new().create(dir_path.join(".git"))?; + { + let f = File::create(dir_path.join(".git/config"))?; + let mut buf = BufWriter::new(f); + buf.write_all( + r#" + [user] + email = "test@example.com" + name = "testuser" + "# + .as_bytes(), + )?; + } + Ok(()) + } + #[test] fn single_device() -> Result<()> { let config_dir = assert_fs::TempDir::new()?; + setup_gitconfig(&config_dir)?; // init let mut cmd = Command::cargo_bin("xdbm")?; cmd.arg("-c") @@ -103,6 +124,7 @@ mod integrated_test { fn two_devices_with_same_name() -> Result<()> { // 1st device let config_dir_1 = assert_fs::TempDir::new()?; + setup_gitconfig(&config_dir_1)?; let mut cmd1 = Command::cargo_bin("xdbm")?; cmd1.arg("-c") .arg(config_dir_1.path()) @@ -127,6 +149,7 @@ mod integrated_test { // 2nd device let config_dir_2 = assert_fs::TempDir::new()?; + setup_gitconfig(&config_dir_2)?; let mut cmd2 = Command::cargo_bin("xdbm")?; cmd2.arg("-c") .arg(config_dir_2.path()) @@ -142,6 +165,7 @@ mod integrated_test { fn directory_without_parent() -> Result<()> { // 1st device let config_dir_1 = assert_fs::TempDir::new()?; + setup_gitconfig(&config_dir_1)?; let mut cmd1 = Command::cargo_bin("xdbm")?; cmd1.arg("-c") .arg(config_dir_1.path()) @@ -174,6 +198,7 @@ mod integrated_test { fn two_devices() -> Result<()> { // 1st device let config_dir_1 = assert_fs::TempDir::new()?; + setup_gitconfig(&config_dir_1)?; let mut cmd1 = Command::cargo_bin("xdbm")?; cmd1.arg("-c") .arg(config_dir_1.path()) From 30ae6a6417a6810be70bbc04d2f581c60a5d63ac Mon Sep 17 00:00:00 2001 From: qwjyh Date: Thu, 25 Apr 2024 17:01:34 +0900 Subject: [PATCH 3/4] fixup! [fix] test: setup gitconfig at repo init --- tests/cli.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/cli.rs b/tests/cli.rs index de3bf6e..b1b8fe9 100644 --- a/tests/cli.rs +++ b/tests/cli.rs @@ -1,7 +1,8 @@ mod integrated_test { use std::{ fs::{DirBuilder, File}, - io::{BufWriter, Write}, path::Path, + io::{BufWriter, Write}, + path::Path, }; use anyhow::{Ok, Result}; @@ -17,10 +18,10 @@ mod integrated_test { let mut buf = BufWriter::new(f); buf.write_all( r#" - [user] - email = "test@example.com" - name = "testuser" - "# +[user] + email = "test@example.com" + name = "testuser" +"# .as_bytes(), )?; } From 607013c6499b528db73a68547b7cec06a2c0c01f Mon Sep 17 00:00:00 2001 From: qwjyh Date: Fri, 26 Apr 2024 00:21:42 +0900 Subject: [PATCH 4/4] fixup! [fix] test: setup gitconfig at repo init --- tests/cli.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/cli.rs b/tests/cli.rs index b1b8fe9..f3cd9d1 100644 --- a/tests/cli.rs +++ b/tests/cli.rs @@ -3,6 +3,8 @@ mod integrated_test { fs::{DirBuilder, File}, io::{BufWriter, Write}, path::Path, + thread, + time::Duration, }; use anyhow::{Ok, Result}; @@ -118,6 +120,12 @@ mod integrated_test { .assert() .success(); + let out = std::process::Command::new("git") + .arg("config") + .arg("--get") + .arg("user.email") + .output()?; + panic!("{}", String::from_utf8_lossy(&out.stdout)); Ok(()) }