Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
610faee4
Commit
610faee4
authored
Nov 11, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new unit test for checking actor deletion
parent
8664e3f9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
82 additions
and
0 deletions
+82
-0
unit_testing/CMakeLists.txt
unit_testing/CMakeLists.txt
+1
-0
unit_testing/test_actor_lifetime.cpp
unit_testing/test_actor_lifetime.cpp
+81
-0
No files found.
unit_testing/CMakeLists.txt
View file @
610faee4
...
...
@@ -33,6 +33,7 @@ add_unit_test(continuation)
add_unit_test
(
constructor_attach
)
add_unit_test
(
custom_exception_handler
)
add_unit_test
(
typed_spawn
)
add_unit_test
(
actor_lifetime
)
add_unit_test
(
local_group
)
add_unit_test
(
sync_send
)
add_unit_test
(
broker
)
...
...
unit_testing/test_actor_lifetime.cpp
0 → 100644
View file @
610faee4
#include <atomic>
#include <iostream>
#include "test.hpp"
#include "caf/all.hpp"
using
std
::
cout
;
using
std
::
endl
;
using
namespace
caf
;
std
::
atomic
<
long
>
s_dudes
;
class
dude
:
public
event_based_actor
{
public:
dude
()
{
++
s_dudes
;
}
~
dude
()
{
--
s_dudes
;
}
behavior
make_behavior
()
{
return
{
others
()
>>
[
=
]
{
return
last_dequeued
();
}
};
}
};
behavior
linking_dude
(
event_based_actor
*
self
,
const
actor
&
other_dude
)
{
CAF_CHECKPOINT
();
self
->
trap_exit
(
true
);
self
->
link_to
(
other_dude
);
anon_send_exit
(
other_dude
,
exit_reason
::
user_shutdown
);
CAF_CHECKPOINT
();
return
{
[
self
](
const
exit_msg
&
)
{
CAF_CHECKPOINT
();
self
->
send
(
self
,
atom
(
"check"
));
},
on
(
atom
(
"check"
))
>>
[
self
]
{
// make sure dude's dtor has been called
CAF_CHECK_EQUAL
(
s_dudes
.
load
(),
0
);
self
->
quit
();
}
};
}
behavior
monitoring_dude
(
event_based_actor
*
self
,
actor
other_dude
)
{
CAF_CHECKPOINT
();
self
->
monitor
(
other_dude
);
anon_send_exit
(
other_dude
,
exit_reason
::
user_shutdown
);
CAF_CHECKPOINT
();
return
{
[
self
](
const
down_msg
&
)
{
CAF_CHECKPOINT
();
self
->
send
(
self
,
atom
(
"check"
));
},
on
(
atom
(
"check"
))
>>
[
self
]
{
// make sure dude's dtor has been called
CAF_CHECK_EQUAL
(
s_dudes
.
load
(),
0
);
self
->
quit
();
}
};
}
void
test_actor_lifetime
()
{
spawn
(
monitoring_dude
,
spawn
<
dude
>
());
await_all_actors_done
();
spawn
(
linking_dude
,
spawn
<
dude
>
());
await_all_actors_done
();
}
int
main
()
{
CAF_TEST
(
test_actor_lifetime
);
test_actor_lifetime
();
return
CAF_TEST_RESULT
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment