File: actor_registry.cpp

package info (click to toggle)
actor-framework 0.18.7-1~exp1
  • links: PTS
  • area: main
  • in suites: experimental
  • size: 8,740 kB
  • sloc: cpp: 85,162; sh: 491; python: 187; makefile: 11
file content (54 lines) | stat: -rw-r--r-- 1,524 bytes parent folder | download
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
// 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 actor_registry

#include "caf/actor_registry.hpp"

#include "core-test.hpp"

#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"

using namespace caf;

namespace {

behavior dummy() {
  return {[](int i) { return i; }};
}

} // namespace

BEGIN_FIXTURE_SCOPE(test_coordinator_fixture<>)

CAF_TEST(erase) {
  // CAF registers a few actors by itself.
  auto baseline = sys.registry().named_actors().size();
  sys.registry().put("foo", sys.spawn(dummy));
  CHECK_EQ(sys.registry().named_actors().size(), baseline + 1u);
  self->send(sys.registry().get<actor>("foo"), 42);
  run();
  expect((int), from(_).to(self).with(42));
  sys.registry().erase("foo");
  CHECK_EQ(sys.registry().named_actors().size(), baseline);
}

CAF_TEST(serialization roundtrips go through the registry) {
  auto hdl = sys.spawn(dummy);
  MESSAGE("hdl.id: " << hdl->id());
  byte_buffer buf;
  binary_serializer sink{sys, buf};
  if (!sink.apply(hdl))
    CAF_FAIL("serialization failed: " << sink.get_error());
  MESSAGE("buf: " << buf);
  actor hdl2;
  binary_deserializer source{sys, buf};
  if (!source.apply(hdl2))
    CAF_FAIL("deserialization failed: " << source.get_error());
  CHECK_EQ(hdl, hdl2);
  anon_send_exit(hdl, exit_reason::user_shutdown);
}

END_FIXTURE_SCOPE()