#![cfg_attr(feature = "cargo-clippy", allow(let_unit_value))] use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::Arc; use actori::prelude::*; use futures::channel::mpsc::unbounded; use futures::stream::once; use futures::StreamExt; use tokio::time::{delay_for, interval_at, Duration, Instant}; #[derive(Debug, PartialEq)] enum Op { Cancel, Timeout, TimeoutStop, RunAfter, RunAfterStop, } struct MyActor { op: Op, } impl Actor for MyActor { type Context = actori::Context; fn started(&mut self, ctx: &mut Context) { match self.op { Op::Cancel => { let handle0 = ctx.notify_later(TimeoutMessage, Duration::new(0, 100)); let handle1 = ctx.notify_later(TimeoutMessage, Duration::new(0, 100)); assert!(ctx.cancel_future(handle1)); assert!(ctx.cancel_future(handle0)); } Op::Timeout => { ctx.notify_later(TimeoutMessage, Duration::new(0, 1000)); } Op::TimeoutStop => { ctx.notify_later(TimeoutMessage, Duration::new(0, 1_000_000)); ctx.stop(); } Op::RunAfter => { ctx.run_later(Duration::new(0, 100), |_, _| { System::current().stop(); }); } Op::RunAfterStop => { ctx.run_later(Duration::new(1, 0), |_, _| { panic!("error"); }); ctx.stop(); } } } fn stopped(&mut self, _: &mut Context) { System::current().stop(); } } struct TimeoutMessage; impl Message for TimeoutMessage { type Result = (); } impl Handler for MyActor { type Result = (); fn handle(&mut self, _: TimeoutMessage, _: &mut Self::Context) { if self.op != Op::Timeout { assert!(false, "should not happen {:?}", self.op); } System::current().stop(); } } #[test] fn test_add_timeout() { System::run(|| { let _addr = MyActor { op: Op::Timeout }.start(); }) .unwrap(); } #[test] fn test_add_timeout_cancel() { System::run(|| { let _addr = MyActor { op: Op::Cancel }.start(); actori_rt::spawn(async move { delay_for(Duration::new(0, 1000)).await; System::current().stop(); }); }) .unwrap(); } #[test] // delayed notification should be dropped after context stop fn test_add_timeout_stop() { System::run(|| { let _addr = MyActor { op: Op::TimeoutStop, } .start(); }) .unwrap(); } #[test] fn test_run_after() { System::run(|| { let _addr = MyActor { op: Op::RunAfter }.start(); }) .unwrap(); } #[test] fn test_run_after_stop() { System::run(|| { let _addr = MyActor { op: Op::RunAfterStop, } .start(); }) .unwrap(); } struct ContextWait { cnt: Arc, } impl Actor for ContextWait { type Context = actori::Context; } struct Ping; impl Message for Ping { type Result = (); } impl Handler for ContextWait { type Result = (); fn handle(&mut self, _: Ping, ctx: &mut Self::Context) { let cnt = self.cnt.load(Ordering::Relaxed); self.cnt.store(cnt + 1, Ordering::Relaxed); let fut = delay_for(Duration::from_secs(1)); fut.into_actor(self).wait(ctx); System::current().stop(); } } #[test] fn test_wait_context() { let m = Arc::new(AtomicUsize::new(0)); let cnt = Arc::clone(&m); System::run(move || { let addr = ContextWait { cnt }.start(); addr.do_send(Ping); addr.do_send(Ping); addr.do_send(Ping); }) .unwrap(); assert_eq!(m.load(Ordering::Relaxed), 1); } #[test] fn test_message_stream_wait_context() { let m = Arc::new(AtomicUsize::new(0)); let m2 = Arc::clone(&m); System::run(move || { let _addr = ContextWait::create(move |ctx| { let (tx, rx) = unbounded(); let _ = tx.unbounded_send(Ping); let _ = tx.unbounded_send(Ping); let _ = tx.unbounded_send(Ping); let actor = ContextWait { cnt: m2 }; ctx.add_message_stream(rx); actor }); }) .unwrap(); assert_eq!(m.load(Ordering::Relaxed), 1); } #[test] fn test_stream_wait_context() { let m = Arc::new(AtomicUsize::new(0)); let m2 = Arc::clone(&m); System::run(move || { let _addr = ContextWait::create(move |ctx| { let (tx, rx) = unbounded(); let _ = tx.unbounded_send(Ping); let _ = tx.unbounded_send(Ping); let _ = tx.unbounded_send(Ping); let actor = ContextWait { cnt: m2 }; ctx.add_message_stream(rx); actor }); }) .unwrap(); assert_eq!(m.load(Ordering::Relaxed), 1); } struct ContextNoWait { cnt: Arc, } impl Actor for ContextNoWait { type Context = actori::Context; } impl Handler for ContextNoWait { type Result = (); fn handle(&mut self, _: Ping, _: &mut Self::Context) { let cnt = self.cnt.load(Ordering::Relaxed); self.cnt.store(cnt + 1, Ordering::Relaxed); } } #[actori_rt::test] async fn test_nowait_context() { let m = Arc::new(AtomicUsize::new(0)); let cnt = Arc::clone(&m); actori_rt::spawn(async move { let addr = ContextNoWait { cnt }.start(); addr.do_send(Ping); addr.do_send(Ping); addr.do_send(Ping); }); delay_for(Duration::from_millis(200)).await; assert_eq!(m.load(Ordering::Relaxed), 3); } #[actori_rt::test] async fn test_message_stream_nowait_context() { let m = Arc::new(AtomicUsize::new(0)); let m2 = Arc::clone(&m); actori_rt::spawn(async move { let _addr = ContextNoWait::create(move |ctx| { let (tx, rx) = unbounded(); let _ = tx.unbounded_send(Ping); let _ = tx.unbounded_send(Ping); let _ = tx.unbounded_send(Ping); let actor = ContextNoWait { cnt: m2 }; ctx.add_message_stream(rx); actor }); }); delay_for(Duration::from_millis(200)).await; assert_eq!(m.load(Ordering::Relaxed), 3); } #[test] fn test_stream_nowait_context() { let m = Arc::new(AtomicUsize::new(0)); let m2 = Arc::clone(&m); System::run(move || { let _addr = ContextNoWait::create(move |ctx| { let (tx, rx) = unbounded(); let _ = tx.unbounded_send(Ping); let _ = tx.unbounded_send(Ping); let _ = tx.unbounded_send(Ping); let actor = ContextNoWait { cnt: m2 }; ctx.add_message_stream(rx); actor }); actori_rt::spawn(async move { delay_for(Duration::from_millis(200)).await; System::current().stop(); }); }) .unwrap(); assert_eq!(m.load(Ordering::Relaxed), 3); } #[test] fn test_notify() { let m = Arc::new(AtomicUsize::new(0)); let m2 = Arc::clone(&m); System::run(move || { let addr = ContextNoWait::create(move |ctx| { ctx.notify(Ping); ctx.notify(Ping); ContextNoWait { cnt: Arc::clone(&m), } }); addr.do_send(Ping); actori_rt::spawn(async move { delay_for(Duration::from_millis(200)).await; System::current().stop(); }); }) .unwrap(); assert_eq!(m2.load(Ordering::Relaxed), 3); } struct ContextHandle { h: Arc, } impl Actor for ContextHandle { type Context = Context; } impl StreamHandler for ContextHandle { fn handle(&mut self, _: Ping, ctx: &mut Self::Context) { self.h.store(ctx.handle().into_usize(), Ordering::Relaxed); System::current().stop(); } } #[test] fn test_current_context_handle() { let h = Arc::new(AtomicUsize::new(0)); let h2 = Arc::clone(&h); let m = Arc::new(AtomicUsize::new(0)); let m2 = Arc::clone(&m); System::run(move || { let _addr = ContextHandle::create(move |ctx| { h2.store( ContextHandle::add_stream(once(async { Ping }), ctx).into_usize(), Ordering::Relaxed, ); ContextHandle { h: m2 } }); }) .unwrap(); assert_eq!(m.load(Ordering::Relaxed), h.load(Ordering::Relaxed)); } #[test] fn test_start_from_context() { let h = Arc::new(AtomicUsize::new(0)); let h2 = Arc::clone(&h); let m = Arc::new(AtomicUsize::new(0)); let m2 = Arc::clone(&m); System::run(move || { let _addr = ContextHandle::create(move |ctx| { h2.store( ctx.add_stream(once(async { Ping })).into_usize(), Ordering::Relaxed, ); ContextHandle { h: m2 } }); }) .unwrap(); assert_eq!(m.load(Ordering::Relaxed), h.load(Ordering::Relaxed)); } struct CancelHandler { source: SpawnHandle, } impl Actor for CancelHandler { type Context = Context; fn stopped(&mut self, _: &mut Context) { System::current().stop(); } } struct CancelPacket; impl StreamHandler for CancelHandler { fn handle(&mut self, _: CancelPacket, ctx: &mut Context) { ctx.cancel_future(self.source); } } #[test] fn test_cancel_handler() { actori::System::run(|| { CancelHandler::create(|ctx| CancelHandler { source: ctx.add_stream( interval_at(Instant::now(), Duration::from_millis(1)) .map(|_| CancelPacket), ), }); }) .unwrap(); } struct CancelLater { handle: Option, } impl Actor for CancelLater { type Context = Context; fn started(&mut self, ctx: &mut Context) { // nothing spawned other than the future to be canceled after completion self.handle = Some(ctx.spawn(async {}.into_actor(self))); } } struct CancelMessage; impl Message for CancelMessage { type Result = (); } impl Handler for CancelLater { type Result = (); fn handle(&mut self, _: CancelMessage, ctx: &mut Self::Context) { ctx.cancel_future(self.handle.take().unwrap()); } } #[test] fn test_cancel_completed_with_no_context_item() { actori::System::run(|| { // first, spawn future that will complete immediately let addr = CancelLater { handle: None }.start(); // then, cancel the future which would already be completed actori_rt::spawn(async move { delay_for(Duration::from_millis(100)).await; addr.do_send(CancelMessage); }); // finally, terminate the actor, which shouldn't be blocked unless // the actor context ate up CPU time actori_rt::spawn(async { delay_for(Duration::from_millis(200)).await; System::current().stop(); }); }) .unwrap(); }