53 lines
1.2 KiB
Rust
53 lines
1.2 KiB
Rust
use std::sync::Arc;
|
|
|
|
use domain::models::WatchlistEntry;
|
|
use domain::ports::WatchlistRepository;
|
|
use domain::testing::InMemoryWatchlistRepository;
|
|
use domain::value_objects::{MovieId, UserId};
|
|
use uuid::Uuid;
|
|
|
|
use crate::test_helpers::TestContextBuilder;
|
|
use crate::watchlist::{is_on, queries::IsOnWatchlistQuery};
|
|
|
|
#[tokio::test]
|
|
async fn returns_true_when_present() {
|
|
let watchlist = InMemoryWatchlistRepository::new();
|
|
let uid = Uuid::new_v4();
|
|
let mid = Uuid::new_v4();
|
|
watchlist
|
|
.add(&WatchlistEntry::new(
|
|
UserId::from_uuid(uid),
|
|
MovieId::from_uuid(mid),
|
|
))
|
|
.await
|
|
.unwrap();
|
|
|
|
let result = is_on::execute(
|
|
Arc::clone(&watchlist) as _,
|
|
IsOnWatchlistQuery {
|
|
user_id: uid,
|
|
movie_id: mid,
|
|
},
|
|
)
|
|
.await
|
|
.unwrap();
|
|
|
|
assert!(result);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn returns_false_when_absent() {
|
|
let b = TestContextBuilder::new();
|
|
let result = is_on::execute(
|
|
b.watchlist_repo.clone(),
|
|
IsOnWatchlistQuery {
|
|
user_id: Uuid::new_v4(),
|
|
movie_id: Uuid::new_v4(),
|
|
},
|
|
)
|
|
.await
|
|
.unwrap();
|
|
|
|
assert!(!result);
|
|
}
|