use std::sync::Arc; use armonik::{applications, server::ApplicationsServiceExt}; mod common; #[derive(Debug, Clone, Default)] struct Service { failure: Option, wait: Option, } impl armonik::server::ApplicationsService for Service { async fn list( self: Arc, request: applications::list::Request, cancellation_token: tokio_util::sync::CancellationToken, ) -> std::result::Result { common::unary_rpc_impl( self.wait.clone(), self.failure.clone(), cancellation_token, || { Ok(applications::list::Response { applications: vec![applications::Raw { name: String::from("rpc-list-output"), ..Default::default() }], page: request.page, page_size: request.page_size, total: 1337, }) }, ) .await } } #[tokio::test] async fn list() { let mut client = armonik::Client::with_channel(Service::default().applications_server()).applications(); let response = client .list( armonik::applications::filter::Or::default(), armonik::applications::Sort::default(), 3, 12, ) .await .unwrap(); assert_eq!(response.page, 3); assert_eq!(response.page_size, 12); assert_eq!(response.total, 1337); assert_eq!(response.applications[0].name, "rpc-list-output"); }