aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus/scheduler_actor_ut.cpp
blob: 9f52e26f0c0f9ca397b9fa41c35dc25dc2514237 (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_ABORT("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();
    }
}