feat&chore: impl cqrs::Querey for category and cleanup tests #35

Merged
realaravinth merged 2 commits from chore-category into master 2024-07-15 18:21:06 +05:30
Showing only changes of commit e22e4ff5fb - Show all commits

View file

@ -3,7 +3,6 @@
// SPDX-License-Identifier: AGPL-3.0-or-later // SPDX-License-Identifier: AGPL-3.0-or-later
use async_trait::async_trait; use async_trait::async_trait;
use cqrs_es::persist::GenericQuery;
use cqrs_es::persist::{PersistenceError, ViewContext, ViewRepository}; use cqrs_es::persist::{PersistenceError, ViewContext, ViewRepository};
use cqrs_es::{EventEnvelope, Query, View}; use cqrs_es::{EventEnvelope, Query, View};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
@ -179,7 +178,22 @@ impl Query<Category> for SimpleLoggingQuery {
} }
} }
// Our second query, this one will be handled with Postgres `GenericQuery` #[async_trait]
// which will serialize and persist our view after it is updated. It also impl Query<Category> for InventoryDBPostgresAdapter {
// provides a `load` method to deserialize the view on request. async fn dispatch(&self, category_id: &str, events: &[EventEnvelope<Category>]) {
pub type CategoryQuery = GenericQuery<InventoryDBPostgresAdapter, CategoryView, Category>; let res = self
.load_with_context(&category_id)
.await
.unwrap_or_else(|_| {
Some((
CategoryView::default(),
ViewContext::new(category_id.into(), 0),
))
});
let (mut view, view_context): (CategoryView, ViewContext) = res.unwrap();
for event in events {
view.update(event);
}
self.update_view(view, view_context).await.unwrap();
}
}