add 400+ unit tests for domain and application layers
Some checks failed
CI / Check / Test (push) Has been cancelled

Extract ReviewLogger trait to decouple import/integrations
from diary::log_review (cross-module coupling smell).

Add in-memory fakes for all repository ports, enabling
isolated testing of every use case module without a database.

Coverage: domain+application 22% → 80%, 427 tests.
This commit is contained in:
2026-06-09 02:07:26 +02:00
parent 30a6200b5b
commit d867a14b28
122 changed files with 7033 additions and 151 deletions

View File

@@ -30,3 +30,7 @@ pub async fn execute(
)
.await
}
#[cfg(test)]
#[path = "tests/register_and_login.rs"]
mod tests;

View File

@@ -0,0 +1,22 @@
use crate::auth::commands::RegisterAndLoginCommand;
use crate::auth::register_and_login;
use crate::test_helpers::TestContextBuilder;
#[tokio::test]
async fn registers_and_returns_token() {
let ctx = TestContextBuilder::new().build();
let result = register_and_login::execute(
&ctx,
RegisterAndLoginCommand {
email: "new@example.com".into(),
username: "newuser".into(),
password: "password123".into(),
},
)
.await
.unwrap();
assert!(!result.token.is_empty());
assert_eq!(result.email, "new@example.com");
}