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
|
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| 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 message_lifetime
#include "core-test.hpp"
#include <atomic>
#include <iostream>
#include "caf/all.hpp"
using namespace caf;
namespace {
class testee : public event_based_actor {
public:
testee(actor_config& cfg) : event_based_actor(cfg) {
// nop
}
~testee() override {
// nop
}
behavior make_behavior() override {
// reflecting a message increases its reference count by one
set_default_handler(reflect_and_quit);
return {
[] {
// nop
}
};
}
};
class tester : public event_based_actor {
public:
tester(actor_config& cfg, actor aut)
: event_based_actor(cfg),
aut_(std::move(aut)),
msg_(make_message(1, 2, 3)) {
set_down_handler([=](down_msg& dm) {
CAF_CHECK_EQUAL(dm.reason, exit_reason::normal);
CAF_CHECK_EQUAL(dm.source, aut_.address());
quit();
});
}
behavior make_behavior() override {
monitor(aut_);
send(aut_, msg_);
return {
[=](int a, int b, int c) {
CAF_CHECK_EQUAL(a, 1);
CAF_CHECK_EQUAL(b, 2);
CAF_CHECK_EQUAL(c, 3);
}
};
}
private:
actor aut_;
message msg_;
};
struct config : actor_system_config {
config() {
add_message_types<id_block::core_test>();
}
};
struct fixture {
config cfg;
actor_system system{cfg};
};
} // namespace
CAF_TEST_FIXTURE_SCOPE(message_lifetime_tests, fixture)
CAF_TEST(nocopy_in_scoped_actor) {
auto msg = make_message(fail_on_copy{1});
scoped_actor self{system};
self->send(self, msg);
self->receive(
[&](const fail_on_copy& x) {
CAF_CHECK_EQUAL(x.value, 1);
CAF_CHECK_EQUAL(msg.cvals()->get_reference_count(), 2u);
}
);
CAF_CHECK_EQUAL(msg.cvals()->get_reference_count(), 1u);
}
CAF_TEST(message_lifetime_in_scoped_actor) {
auto msg = make_message(1, 2, 3);
scoped_actor self{system};
self->send(self, msg);
self->receive(
[&](int a, int b, int c) {
CAF_CHECK_EQUAL(a, 1);
CAF_CHECK_EQUAL(b, 2);
CAF_CHECK_EQUAL(c, 3);
CAF_CHECK_EQUAL(msg.cvals()->get_reference_count(), 2u);
}
);
CAF_CHECK_EQUAL(msg.cvals()->get_reference_count(), 1u);
msg = make_message(42);
self->send(self, msg);
CAF_CHECK_EQUAL(msg.cvals()->get_reference_count(), 2u);
self->receive(
[&](int& value) {
CAF_CHECK_NOT_EQUAL(&value, msg.at(0));
value = 10;
}
);
CAF_CHECK_EQUAL(msg.get_as<int>(0), 42);
}
CAF_TEST(message_lifetime_in_spawned_actor) {
for (size_t i = 0; i < 100; ++i)
system.spawn<tester>(system.spawn<testee>());
}
CAF_TEST_FIXTURE_SCOPE_END()
|