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
|
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| 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 serial_reply
#include "caf/all.hpp"
#include "caf/test/unit_test.hpp"
using namespace caf;
namespace {
using hi_atom = atom_constant<atom("hi")>;
using ho_atom = atom_constant<atom("ho")>;
using sub0_atom = atom_constant<atom("sub0")>;
using sub1_atom = atom_constant<atom("sub1")>;
using sub2_atom = atom_constant<atom("sub2")>;
using sub3_atom = atom_constant<atom("sub3")>;
using sub4_atom = atom_constant<atom("sub4")>;
} // namespace
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) {
CAF_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);
self->become([=](hi_atom) mutable {
auto rp = self->make_response_promise();
CAF_MESSAGE("received 'hi there'");
self->request(c0, infinite, sub0_atom_v).then([=](sub0_atom) mutable {
CAF_MESSAGE("received 'sub0'");
self->request(c1, infinite, sub1_atom_v).then([=](sub1_atom) mutable {
CAF_MESSAGE("received 'sub1'");
self->request(c2, infinite, sub2_atom_v).then([=](sub2_atom) mutable {
CAF_MESSAGE("received 'sub2'");
self->request(c3, infinite, sub3_atom_v)
.then([=](sub3_atom) mutable {
CAF_MESSAGE("received 'sub3'");
self->request(c4, infinite, sub4_atom_v)
.then([=](sub4_atom) mutable {
CAF_MESSAGE("received 'sub4'");
rp.deliver(ho_atom_v);
});
});
});
});
});
});
});
scoped_actor self{system};
CAF_MESSAGE("ID of main: " << self->id());
self->request(master, infinite, hi_atom_v)
.receive([](ho_atom) { CAF_MESSAGE("received 'ho'"); },
[&](const error& err) {
CAF_ERROR("Error: " << self->system().render(err));
});
CAF_REQUIRE(self->mailbox().size() == 0);
}
|