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
|
/*
* Copyright © 2013 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authored by: Thomas Voß <thomas.voss@canonical.com>
*/
#include <core/dbus/message.h>
#include <core/dbus/message_router.h>
#include <gtest/gtest.h>
namespace dbus = core::dbus;
namespace
{
dbus::Message::Ptr a_signal_message(const std::string& path, const std::string& interface, const std::string& name)
{
return dbus::Message::make_signal(
path,
interface,
name);
}
}
// Simple function used by 2 tests below. Use instead of a no-capture lambda
// because, for some reason, it causes -Wmaybe-uninitialized warning deep inside
// std::function's header file.
// See [1] for a similar issue in repowerd.
//
// [1]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1031428
static dbus::Message::Type simple_mapper(const dbus::Message::Ptr& msg)
{
return msg->type();
}
TEST(MessageRouterForType, ARegisteredRouteIsInvokedForMessageOfMatchingType)
{
bool invoked {false};
dbus::MessageRouter<dbus::Message::Type> router(simple_mapper);
router.install_route(dbus::Message::Type::signal, [&](const dbus::Message::Ptr& msg)
{
if (msg->type() == dbus::Message::Type::signal)
invoked = true;
});
auto signal = a_signal_message("/core/DBus", "org.freedesktop.DBus", "LaLeLu");
router(signal);
EXPECT_TRUE(invoked);
}
TEST(MessageRouterForType, HandlerDoesNotDeadlock)
{
bool invoked {false};
dbus::MessageRouter<dbus::Message::Type> router(simple_mapper);
router.install_route(dbus::Message::Type::signal, [&](const dbus::Message::Ptr& msg)
{
if (msg->type() == dbus::Message::Type::signal) {
/* This will deadlock if the router has not released it's
* internal lock before calling this handler.
*/
router.uninstall_route(dbus::Message::Type::signal);
invoked = true;
}
});
auto signal = a_signal_message("/core/DBus", "org.freedesktop.DBus", "LaLeLu");
router(signal);
EXPECT_TRUE(invoked);
}
|