Files
sdbus-cpp/tests/integrationtests/DBusAsyncMethodsTests.cpp

304 lines
10 KiB
C++
Raw Permalink Normal View History

2020-07-18 20:16:57 +02:00
/**
2022-07-05 17:08:35 +02:00
* (C) 2016 - 2021 KISTLER INSTRUMENTE AG, Winterthur, Switzerland
* (C) 2016 - 2026 Stanislav Angelovic <stanislav.angelovic@protonmail.com>
2020-07-18 20:16:57 +02:00
*
* @file DBusAsyncMethodsTests.cpp
*
* Created on: Jan 2, 2017
* Project: sdbus-c++
* Description: High-level D-Bus IPC C++ library based on sd-bus
*
* This file is part of sdbus-c++.
*
* sdbus-c++ is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2.1 of the License, or
* (at your option) any later version.
*
* sdbus-c++ 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 sdbus-c++. If not, see <http://www.gnu.org/licenses/>.
*/
#include "TestFixture.h"
#include "TestProxy.h"
#include "Defs.h"
#include <sdbus-c++/sdbus-c++.h>
2020-07-18 20:16:57 +02:00
#include <cstdint>
#include <exception>
#include <atomic>
#include <cstddef>
2020-07-18 20:16:57 +02:00
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <optional>
#include <mutex>
#include <map>
2020-07-18 20:16:57 +02:00
#include <string>
#include <thread>
#include <chrono>
#include <future>
#include <utility>
#include <vector>
2020-07-18 20:16:57 +02:00
using ::testing::Eq;
using ::testing::Le;
2020-07-18 20:16:57 +02:00
using ::testing::AnyOf;
using ::testing::ElementsAre;
using namespace std::chrono_literals;
using namespace sdbus::test;
/*-------------------------------------*/
/* -- TEST CASES -- */
/*-------------------------------------*/
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, ThrowsTimeoutErrorWhenClientSideAsyncMethodTimesOut)
2020-07-18 20:16:57 +02:00
{
std::chrono::time_point<std::chrono::steady_clock> start;
2020-07-18 20:16:57 +02:00
try
{
std::promise<uint32_t> promise;
auto future = promise.get_future();
this->m_proxy->installDoOperationClientSideAsyncReplyHandler([&](uint32_t res, std::optional<sdbus::Error> err)
2020-07-18 20:16:57 +02:00
{
if (!err)
2020-07-18 20:16:57 +02:00
promise.set_value(res);
else
promise.set_exception(std::make_exception_ptr(*std::move(err)));
2020-07-18 20:16:57 +02:00
});
start = std::chrono::steady_clock::now();
2023-01-25 00:02:51 +01:00
this->m_proxy->doOperationClientSideAsyncWithTimeout(1us, (1s).count()); // The operation will take 1s, but the timeout is 1us, so we should time out
2020-07-18 20:16:57 +02:00
future.get();
FAIL() << "Expected sdbus::Error exception";
}
catch (const sdbus::Error& e)
{
ASSERT_THAT(e.getName(), AnyOf("org.freedesktop.DBus.Error.Timeout", "org.freedesktop.DBus.Error.NoReply"));
ASSERT_THAT(e.getMessage(), AnyOf("Connection timed out", "Method call timed out"));
auto measuredTimeout = std::chrono::steady_clock::now() - start;
ASSERT_THAT(measuredTimeout, Le(50ms));
2020-07-18 20:16:57 +02:00
}
catch(...)
{
FAIL() << "Expected sdbus::Error exception";
}
}
TYPED_TEST(AsyncSdbusTestObject, RunsServerSideAsynchronousMethodAsynchronously)
2020-07-18 20:16:57 +02:00
{
// Yeah, this is kinda timing-dependent test, but times should be safe...
std::mutex mtx;
std::vector<uint32_t> results;
std::atomic invoke{false};
std::atomic startedCount{0};
2020-07-18 20:16:57 +02:00
auto call = [&](uint32_t param)
{
TestProxy proxy{SERVICE_NAME, OBJECT_PATH};
2020-07-18 20:16:57 +02:00
++startedCount;
while (!invoke) ;
auto result = proxy.doOperationAsync(param);
std::lock_guard const guard(mtx);
2020-07-18 20:16:57 +02:00
results.push_back(result);
};
std::thread invocations[]{std::thread{call, 1500}, std::thread{call, 1000}, std::thread{call, 500}};
while (startedCount != 3) ;
invoke = true;
std::for_each(std::begin(invocations), std::end(invocations), [](auto& thread){ thread.join(); });
2020-07-18 20:16:57 +02:00
ASSERT_THAT(results, ElementsAre(500, 1000, 1500));
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, HandlesCorrectlyABulkOfParallelServerSideAsyncMethods)
2020-07-18 20:16:57 +02:00
{
std::atomic<size_t> resultCount{};
std::atomic invoke{false};
std::atomic startedCount{0};
2020-07-18 20:16:57 +02:00
auto call = [&]()
{
TestProxy proxy{SERVICE_NAME, OBJECT_PATH};
2020-07-18 20:16:57 +02:00
++startedCount;
while (!invoke) ;
size_t localResultCount{};
for (size_t i = 0; i < 500; ++i)
{
auto result = proxy.doOperationAsync(i % 2);
if (result == (i % 2)) // Correct return value?
localResultCount++;
}
resultCount += localResultCount;
};
std::thread invocations[]{std::thread{call}, std::thread{call}, std::thread{call}};
while (startedCount != 3) ;
invoke = true;
std::for_each(std::begin(invocations), std::end(invocations), [](auto& thread){ thread.join(); });
2020-07-18 20:16:57 +02:00
ASSERT_THAT(resultCount, Eq(1500));
}
TYPED_TEST(AsyncSdbusTestObject, RunsServerSideAsynchronousMethodWithLargeMessage)
{
std::map<int32_t, std::string> largeMap;
for (int32_t i = 0; i < 40'000; ++i)
largeMap.emplace(i, "This is string nr. " + std::to_string(i+1));
auto result1 = this->m_proxy->doOperationAsyncWithLargeData(0, largeMap); // Sends large map back in the context of the callback (event loop thread)
auto result2 = this->m_proxy->doOperationAsyncWithLargeData(500, largeMap); // Sends large map back outside the context of the event loop thread
ASSERT_THAT(result1, Eq(largeMap));
ASSERT_THAT(result2, Eq(largeMap));
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, InvokesMethodAsynchronouslyOnClientSide)
2020-07-18 20:16:57 +02:00
{
std::promise<uint32_t> promise;
auto future = promise.get_future();
this->m_proxy->installDoOperationClientSideAsyncReplyHandler([&](uint32_t res, std::optional<sdbus::Error> err)
2020-07-18 20:16:57 +02:00
{
if (!err)
2020-07-18 20:16:57 +02:00
promise.set_value(res);
else
promise.set_exception(std::make_exception_ptr(std::move(err)));
2020-07-18 20:16:57 +02:00
});
2023-01-25 00:02:51 +01:00
this->m_proxy->doOperationClientSideAsync(100);
2020-07-18 20:16:57 +02:00
ASSERT_THAT(future.get(), Eq(100));
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, InvokesMethodAsynchronouslyOnClientSideWithFuture)
{
2023-01-25 00:02:51 +01:00
auto future = this->m_proxy->doOperationClientSideAsync(100, sdbus::with_future);
ASSERT_THAT(future.get(), Eq(100));
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, InvokesMethodAsynchronouslyOnClientSideWithFutureOnBasicAPILevel)
{
2023-01-25 00:02:51 +01:00
auto future = this->m_proxy->doOperationClientSideAsyncOnBasicAPILevel(100);
auto methodReply = future.get();
uint32_t returnValue{};
methodReply >> returnValue;
ASSERT_THAT(returnValue, Eq(100));
}
TYPED_TEST(AsyncSdbusTestObject, InvokesMethodWithLargeDataAsynchronouslyOnClientSideWithFuture)
{
std::map<int32_t, std::string> largeMap;
for (int32_t i = 0; i < 40'000; ++i)
largeMap.emplace(i, "This is string nr. " + std::to_string(i+1));
auto future = this->m_proxy->doOperationWithLargeDataClientSideAsync(largeMap, sdbus::with_future);
ASSERT_THAT(future.get(), Eq(largeMap));
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, AnswersThatAsyncCallIsPendingIfItIsInProgress)
2020-07-18 20:16:57 +02:00
{
this->m_proxy->installDoOperationClientSideAsyncReplyHandler([&](uint32_t /*res*/, const std::optional<sdbus::Error>& /*err*/){});
2020-07-18 20:16:57 +02:00
2023-01-25 00:02:51 +01:00
auto call = this->m_proxy->doOperationClientSideAsync(100);
2020-07-18 20:16:57 +02:00
ASSERT_TRUE(call.isPending());
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, CancelsPendingAsyncCallOnClientSide)
2020-07-18 20:16:57 +02:00
{
std::promise<uint32_t> promise;
auto future = promise.get_future();
this->m_proxy->installDoOperationClientSideAsyncReplyHandler([&](uint32_t /*res*/, const std::optional<sdbus::Error>& /*err*/){ promise.set_value(1); });
2023-01-25 00:02:51 +01:00
auto call = this->m_proxy->doOperationClientSideAsync(100);
2020-07-18 20:16:57 +02:00
call.cancel();
ASSERT_THAT(future.wait_for(300ms), Eq(std::future_status::timeout));
}
TYPED_TEST(AsyncSdbusTestObject, CancelsPendingAsyncCallOnClientSideByDestroyingOwningSlot)
{
std::promise<uint32_t> promise;
auto future = promise.get_future();
this->m_proxy->installDoOperationClientSideAsyncReplyHandler([&](uint32_t /*res*/, const std::optional<sdbus::Error>& /*err*/){ promise.set_value(1); });
{
auto slot = this->m_proxy->doOperationClientSideAsync(100, sdbus::return_slot);
// Now the slot is destroyed, cancelling the async call
}
ASSERT_THAT(future.wait_for(300ms), Eq(std::future_status::timeout));
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, AnswersThatAsyncCallIsNotPendingAfterItHasBeenCancelled)
2020-07-18 20:16:57 +02:00
{
std::promise<uint32_t> promise;
this->m_proxy->installDoOperationClientSideAsyncReplyHandler([&](uint32_t /*res*/, const std::optional<sdbus::Error>& /*err*/){ promise.set_value(1); });
2023-01-25 00:02:51 +01:00
auto call = this->m_proxy->doOperationClientSideAsync(100);
2020-07-18 20:16:57 +02:00
call.cancel();
ASSERT_FALSE(call.isPending());
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, AnswersThatAsyncCallIsNotPendingAfterItHasBeenCompleted)
2020-07-18 20:16:57 +02:00
{
std::promise<uint32_t> promise;
auto future = promise.get_future();
this->m_proxy->installDoOperationClientSideAsyncReplyHandler([&](uint32_t /*res*/, const std::optional<sdbus::Error>& /*err*/){ promise.set_value(1); });
2020-07-18 20:16:57 +02:00
2023-01-25 00:02:51 +01:00
auto call = this->m_proxy->doOperationClientSideAsync(0);
2020-07-18 20:16:57 +02:00
(void) future.get(); // Wait for the call to finish
ASSERT_TRUE(waitUntil([&call](){ return !call.isPending(); }));
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, AnswersThatDefaultConstructedAsyncCallIsNotPending)
{
sdbus::PendingAsyncCall const call;
ASSERT_FALSE(call.isPending());
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, SupportsAsyncCallCopyAssignment)
{
sdbus::PendingAsyncCall call;
2023-01-25 00:02:51 +01:00
call = this->m_proxy->doOperationClientSideAsync(100);
ASSERT_TRUE(call.isPending());
}
TYPED_TEST(AsyncSdbusTestObject, ReturnsNonnullErrorWhenAsynchronousMethodCallFails) // NOLINT(readability-function-cognitive-complexity)
2020-07-18 20:16:57 +02:00
{
std::promise<uint32_t> promise;
auto future = promise.get_future();
this->m_proxy->installDoOperationClientSideAsyncReplyHandler([&](uint32_t res, std::optional<sdbus::Error> err)
2020-07-18 20:16:57 +02:00
{
if (!err)
2020-07-18 20:16:57 +02:00
promise.set_value(res);
else
promise.set_exception(std::make_exception_ptr(*std::move(err)));
2020-07-18 20:16:57 +02:00
});
2023-01-25 00:02:51 +01:00
this->m_proxy->doErroneousOperationClientSideAsync();
2020-07-18 20:16:57 +02:00
ASSERT_THROW(future.get(), sdbus::Error);
}
2023-01-25 00:02:51 +01:00
TYPED_TEST(AsyncSdbusTestObject, ThrowsErrorWhenClientSideAsynchronousMethodCallWithFutureFails)
{
2023-01-25 00:02:51 +01:00
auto future = this->m_proxy->doErroneousOperationClientSideAsync(sdbus::with_future);
ASSERT_THROW(future.get(), sdbus::Error);
}