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
|
// This file is part of CAF, the C++ Actor Framework. See the file LICENSE in
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE serial_reply
#include "caf/all.hpp"
#include "core-test.hpp"
using namespace caf;
CAF_TEST(test_serial_reply) {
actor_system_config cfg;
actor_system system{cfg};
auto mirror_behavior = [=](event_based_actor* self) -> behavior {
self->set_default_handler(reflect);
return {
[] {
// nop
},
};
};
auto master = system.spawn([=](event_based_actor* self) -> behavior {
MESSAGE("ID of master: " << self->id());
// spawn 5 mirror actors
auto c0 = self->spawn<linked>(mirror_behavior);
auto c1 = self->spawn<linked>(mirror_behavior);
auto c2 = self->spawn<linked>(mirror_behavior);
auto c3 = self->spawn<linked>(mirror_behavior);
auto c4 = self->spawn<linked>(mirror_behavior);
return {
[=](hi_atom) mutable {
auto rp = self->make_response_promise();
MESSAGE("received 'hi there'");
self->request(c0, infinite, sub0_atom_v).then([=](sub0_atom) mutable {
MESSAGE("received 'sub0'");
self->request(c1, infinite, sub1_atom_v).then([=](sub1_atom) mutable {
MESSAGE("received 'sub1'");
self->request(c2, infinite, sub2_atom_v)
.then([=](sub2_atom) mutable {
MESSAGE("received 'sub2'");
self->request(c3, infinite, sub3_atom_v)
.then([=](sub3_atom) mutable {
MESSAGE("received 'sub3'");
self->request(c4, infinite, sub4_atom_v)
.then([=](sub4_atom) mutable {
MESSAGE("received 'sub4'");
rp.deliver(ho_atom_v);
});
});
});
});
});
},
};
});
scoped_actor self{system};
MESSAGE("ID of main: " << self->id());
self->request(master, infinite, hi_atom_v)
.receive([](ho_atom) { MESSAGE("received 'ho'"); },
[&](const error& err) { CAF_ERROR("Error: " << err); });
CAF_REQUIRE(self->mailbox().empty());
}
|