blob: e81ffd31869f9f6a2b62c6e3bcb08fda4243225c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#include <library/cpp/testing/unittest/registar.h>
#include "scheduler_actor.h"
#include "misc/test_sync.h"
using namespace NBus;
using namespace NBus::NPrivate;
using namespace NActor;
Y_UNIT_TEST_SUITE(TSchedulerActorTests) {
struct TMyActor: public TAtomicRefCount<TMyActor>, public TActor<TMyActor>, public TScheduleActor<TMyActor> {
TTestSync TestSync;
TMyActor(TExecutor* executor, TScheduler* scheduler)
: TActor<TMyActor>(executor)
, TScheduleActor<TMyActor>(scheduler)
, Iteration(0)
{
}
unsigned Iteration;
void Act(TDefaultTag) {
if (!Alarm.FetchTask()) {
Y_FAIL("must not have no spurious wakeups in test");
}
TestSync.WaitForAndIncrement(Iteration++);
if (Iteration <= 5) {
ScheduleAt(TInstant::Now() + TDuration::MilliSeconds(Iteration));
}
}
};
Y_UNIT_TEST(Simple) {
TExecutor executor(1);
TScheduler scheduler;
TIntrusivePtr<TMyActor> actor(new TMyActor(&executor, &scheduler));
actor->ScheduleAt(TInstant::Now() + TDuration::MilliSeconds(1));
actor->TestSync.WaitForAndIncrement(6);
// TODO: stop in destructor
scheduler.Stop();
}
}
|