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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright 2011-2018 Dominik Charousset *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#define CAF_SUITE actor_lifetime
#include "core-test.hpp"
#include <atomic>
#include <condition_variable>
#include <mutex>
#include "caf/all.hpp"
using namespace caf;
namespace {
std::mutex s_mtx;
std::condition_variable s_cv;
std::atomic<bool> s_tester_init_done;
std::atomic<bool> s_testee_cleanup_done;
std::atomic<long> s_testees;
std::atomic<long> s_pending_on_exits;
class testee : public event_based_actor {
public:
testee(actor_config& cfg) : event_based_actor(cfg) {
++s_testees;
++s_pending_on_exits;
}
~testee() override {
--s_testees;
}
const char* name() const override {
return "testee";
}
void on_exit() override {
--s_pending_on_exits;
}
behavior make_behavior() override {
return {
[=](int x) { return x; },
};
}
};
template <class ExitMsgType>
behavior tester(event_based_actor* self, const actor& aut) {
if (std::is_same<ExitMsgType, exit_msg>::value) {
self->set_exit_handler([self](exit_msg& msg) {
// must be still alive at this point
CAF_CHECK_EQUAL(s_testees.load(), 1);
CAF_CHECK_EQUAL(msg.reason, exit_reason::user_shutdown);
self->send(self, ok_atom_v);
});
self->link_to(aut);
} else {
self->set_down_handler([self](down_msg& msg) {
// must be still alive at this point
CAF_CHECK_EQUAL(s_testees.load(), 1);
CAF_CHECK_EQUAL(msg.reason, exit_reason::user_shutdown);
// testee might be still running its cleanup code in
// another worker thread; by waiting some milliseconds, we make sure
// testee had enough time to return control to the scheduler
// which in turn destroys it by dropping the last remaining reference
self->send(self, ok_atom_v);
});
self->monitor(aut);
}
anon_send_exit(aut, exit_reason::user_shutdown);
{
std::unique_lock<std::mutex> guard{s_mtx};
s_tester_init_done = true;
s_cv.notify_one();
}
return {
[self](ok_atom) {
{ // make sure aut's dtor and on_exit() have been called
std::unique_lock<std::mutex> guard{s_mtx};
while (!s_testee_cleanup_done.load())
s_cv.wait(guard);
}
CAF_CHECK_EQUAL(s_testees.load(), 0);
CAF_CHECK_EQUAL(s_pending_on_exits.load(), 0);
self->quit();
},
};
}
struct config : actor_system_config {
config() {
set("scheduler.policy", "testing");
}
};
struct fixture {
using sched_t = scheduler::test_coordinator;
config cfg;
actor_system system;
sched_t& sched;
fixture() : system(cfg), sched(dynamic_cast<sched_t&>(system.scheduler())) {
// nop
}
template <spawn_options Os, class... Ts>
actor spawn(Ts&&... xs) {
return system.spawn<Os>(xs...);
}
template <class T, spawn_options Os, class... Ts>
actor spawn(Ts&&... xs) {
return system.spawn<T, Os>(xs...);
}
template <class ExitMsgType, spawn_options TesterOptions,
spawn_options TesteeOptions>
void tst() {
// We re-use these static variables with each run.
s_tester_init_done = false;
s_testee_cleanup_done = false;
// Spawn test subject and tester.
auto tst_subject = spawn<testee, TesteeOptions>();
sched.run();
auto tst_driver = spawn<TesterOptions>(tester<ExitMsgType>, tst_subject);
tst_subject = nullptr;
if (has_detach_flag(TesterOptions)) {
// When dealing with a detached tester we need to insert two
// synchronization points: 1) exit_msg sent and 2) cleanup code of tester
// done.
{ // Wait for the exit_msg from the driver.
std::unique_lock<std::mutex> guard{s_mtx};
while (!s_tester_init_done)
s_cv.wait(guard);
}
// Run the exit_msg.
sched.run_once();
// expect((exit_msg), from(tst_driver).to(tst_subject));
{ // Resume driver.
std::unique_lock<std::mutex> guard{s_mtx};
s_testee_cleanup_done = true;
s_cv.notify_one();
}
} else {
// When both actors are running in the scheduler we don't need any extra
// synchronization.
s_tester_init_done = true;
s_testee_cleanup_done = true;
sched.run();
}
}
};
} // namespace
CAF_TEST(destructor_call) {
{ // lifetime scope of actor system
actor_system_config cfg;
actor_system system{cfg};
system.spawn<testee>();
}
CAF_CHECK_EQUAL(s_testees.load(), 0);
CAF_CHECK_EQUAL(s_pending_on_exits.load(), 0);
}
CAF_TEST_FIXTURE_SCOPE(actor_lifetime_tests, fixture)
CAF_TEST(no_spawn_options_and_exit_msg) {
tst<exit_msg, no_spawn_options, no_spawn_options>();
}
CAF_TEST(no_spawn_options_and_down_msg) {
tst<down_msg, no_spawn_options, no_spawn_options>();
}
CAF_TEST(mixed_spawn_options_and_exit_msg) {
tst<exit_msg, detached, no_spawn_options>();
}
CAF_TEST(mixed_spawn_options_and_down_msg) {
tst<down_msg, detached, no_spawn_options>();
}
CAF_TEST_FIXTURE_SCOPE_END()
|