aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus/actor/actor_ut.cpp
blob: b76ab55bfa2be67efec3b4b0018c3fc0a1a891dd (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#include <library/cpp/testing/unittest/registar.h>

#include "actor.h"
#include "queue_in_actor.h"

#include <library/cpp/messagebus/misc/test_sync.h>

#include <util/generic/object_counter.h>
#include <util/system/event.h>

using namespace NActor;

template <typename TThis>
struct TTestActorBase: public TAtomicRefCount<TThis>, public TActor<TThis> {
    TTestSync Started;
    TTestSync Acted;

    TTestActorBase(TExecutor* executor)
        : TActor<TThis>(executor)
    {
    }

    void Act(TDefaultTag) {
        Started.Inc();
        static_cast<TThis*>(this)->Act2();
        Acted.Inc();
    }
};

struct TNopActor: public TTestActorBase<TNopActor> {
    TObjectCounter<TNopActor> AllocCounter;

    TNopActor(TExecutor* executor)
        : TTestActorBase<TNopActor>(executor)
    {
    }

    void Act2() {
    }
};

struct TWaitForSignalActor: public TTestActorBase<TWaitForSignalActor> {
    TWaitForSignalActor(TExecutor* executor)
        : TTestActorBase<TWaitForSignalActor>(executor)
    {
    }

    TSystemEvent WaitFor;

    void Act2() {
        WaitFor.Wait();
    }
};

struct TDecrementAndSendActor: public TTestActorBase<TDecrementAndSendActor>, public TQueueInActor<TDecrementAndSendActor, int> {
    TSystemEvent Done;

    TDecrementAndSendActor* Next;

    TDecrementAndSendActor(TExecutor* executor)
        : TTestActorBase<TDecrementAndSendActor>(executor)
        , Next(nullptr)
    {
    }

    void ProcessItem(TDefaultTag, TDefaultTag, int n) {
        if (n == 0) {
            Done.Signal();
        } else {
            Next->EnqueueAndSchedule(n - 1);
        }
    }

    void Act(TDefaultTag) {
        DequeueAll();
    }
};

struct TObjectCountChecker {
    TObjectCountChecker() {
        CheckCounts();
    }

    ~TObjectCountChecker() {
        CheckCounts();
    }

    void CheckCounts() {
        UNIT_ASSERT_VALUES_EQUAL(TAtomicBase(0), TObjectCounter<TNopActor>::ObjectCount());
        UNIT_ASSERT_VALUES_EQUAL(TAtomicBase(0), TObjectCounter<TWaitForSignalActor>::ObjectCount());
        UNIT_ASSERT_VALUES_EQUAL(TAtomicBase(0), TObjectCounter<TDecrementAndSendActor>::ObjectCount());
    }
};

Y_UNIT_TEST_SUITE(TActor) {
    Y_UNIT_TEST(Simple) {
        TObjectCountChecker objectCountChecker;

        TExecutor executor(4);

        TIntrusivePtr<TNopActor> actor(new TNopActor(&executor));

        actor->Schedule();

        actor->Acted.WaitFor(1u);
    }

    Y_UNIT_TEST(ScheduleAfterStart) {
        TObjectCountChecker objectCountChecker;

        TExecutor executor(4);

        TIntrusivePtr<TWaitForSignalActor> actor(new TWaitForSignalActor(&executor));

        actor->Schedule();

        actor->Started.WaitFor(1);

        actor->Schedule();

        actor->WaitFor.Signal();

        // make sure Act is called second time
        actor->Acted.WaitFor(2u);
    }

    void ComplexImpl(int queueSize, int actorCount) {
        TObjectCountChecker objectCountChecker;

        TExecutor executor(queueSize);

        TVector<TIntrusivePtr<TDecrementAndSendActor>> actors;
        for (int i = 0; i < actorCount; ++i) {
            actors.push_back(new TDecrementAndSendActor(&executor));
        }

        for (int i = 0; i < actorCount; ++i) {
            actors.at(i)->Next = &*actors.at((i + 1) % actorCount);
        }

        for (int i = 0; i < actorCount; ++i) {
            actors.at(i)->EnqueueAndSchedule(10000);
        }

        for (int i = 0; i < actorCount; ++i) {
            actors.at(i)->Done.WaitI();
        }
    }

    Y_UNIT_TEST(ComplexContention) {
        ComplexImpl(4, 6);
    }

    Y_UNIT_TEST(ComplexNoContention) {
        ComplexImpl(6, 4);
    }
}