forked from arximboldi/lager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request arximboldi#157 from arximboldi/exception-safety
Fix exception safety of basic event loop queues
- Loading branch information
Showing
6 changed files
with
118 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// | ||
// lager - library for functional interactive c++ programs | ||
// Copyright (C) 2017 Juan Pedro Bolivar Puente | ||
// | ||
// This file is part of lager. | ||
// | ||
// lager is free software: you can redistribute it and/or modify | ||
// it under the terms of the MIT License, as detailed in the LICENSE | ||
// file located at the root of this source code distribution, | ||
// or here: <https://github.com/arximboldi/lager/blob/master/LICENSE> | ||
// | ||
|
||
#include <catch.hpp> | ||
|
||
#include <lager/event_loop/manual.hpp> | ||
#include <lager/store.hpp> | ||
|
||
TEST_CASE("exception safety") | ||
{ | ||
auto loop = lager::with_manual_event_loop{}; | ||
|
||
SECTION("basic") | ||
{ | ||
CHECK_THROWS(loop.post([] { throw std::runtime_error{"noo!"}; })); | ||
|
||
auto called = 0; | ||
loop.post([&] { ++called; }); | ||
CHECK(called == 1); | ||
} | ||
|
||
SECTION("recursive") | ||
{ | ||
auto called_a = 0; | ||
auto called_b = 0; | ||
auto called_c = 0; | ||
CHECK_THROWS(loop.post([&] { | ||
loop.post([&] { ++called_a; }); | ||
loop.post([&] { throw std::runtime_error{"noo!"}; }); | ||
loop.post([&] { ++called_b; }); | ||
CHECK(called_a == 0); | ||
CHECK(called_b == 0); | ||
})); | ||
|
||
CHECK(called_a == 1); | ||
CHECK(called_b == 0); // not called yet, queue was interrupted | ||
|
||
loop.post([&] { ++called_c; }); | ||
CHECK(called_b == 1); // queue continued | ||
CHECK(called_c == 1); | ||
CHECK(called_a == 1); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters