mirror of
https://github.com/Kistler-Group/sdbus-cpp.git
synced 2026-01-25 15:12:20 +01:00
83 lines
3.0 KiB
C++
83 lines
3.0 KiB
C++
/**
|
|
* (C) 2016 - 2021 KISTLER INSTRUMENTE AG, Winterthur, Switzerland
|
|
* (C) 2016 - 2026 Stanislav Angelovic <stanislav.angelovic@protonmail.com>
|
|
*
|
|
* @file Defs.h
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef SDBUS_CPP_INTEGRATIONTESTS_DEFS_H_
|
|
#define SDBUS_CPP_INTEGRATIONTESTS_DEFS_H_
|
|
|
|
#include "sdbus-c++/Types.h"
|
|
#include <chrono>
|
|
#include <ostream>
|
|
#include <filesystem>
|
|
|
|
namespace sdbus::test {
|
|
|
|
const InterfaceName INTERFACE_NAME{"org.sdbuscpp.integrationtests"};
|
|
const ServiceName SERVICE_NAME{"org.sdbuscpp.integrationtests"};
|
|
const ServiceName EMPTY_DESTINATION;
|
|
const ObjectPath MANAGER_PATH {"/org/sdbuscpp/integrationtests"};
|
|
const ObjectPath OBJECT_PATH {"/org/sdbuscpp/integrationtests/ObjectA1"};
|
|
const ObjectPath OBJECT_PATH_2{"/org/sdbuscpp/integrationtests/ObjectB1"};
|
|
const PropertyName STATE_PROPERTY{"state"};
|
|
const PropertyName ACTION_PROPERTY{"action"};
|
|
const PropertyName ACTION_VARIANT_PROPERTY{"actionVariant"};
|
|
const PropertyName BLOCKING_PROPERTY{"blocking"};
|
|
const std::string DIRECT_CONNECTION_SOCKET_PATH{std::filesystem::temp_directory_path() / "sdbus-cpp-direct-connection-test"};
|
|
|
|
constexpr const uint8_t UINT8_VALUE{1};
|
|
constexpr const int16_t INT16_VALUE{21};
|
|
constexpr const uint32_t UINT32_VALUE{42};
|
|
constexpr const int32_t INT32_VALUE{-42};
|
|
constexpr const int32_t INT64_VALUE{-1024};
|
|
|
|
const std::string STRING_VALUE{"sdbus-c++-testing"};
|
|
const Signature SIGNATURE_VALUE{"a{is}"};
|
|
const ObjectPath OBJECT_PATH_VALUE{"/"};
|
|
const int UNIX_FD_VALUE = 0;
|
|
|
|
const std::string DEFAULT_STATE_VALUE{"default-state-value"};
|
|
const uint32_t DEFAULT_ACTION_VALUE{999};
|
|
const std::string DEFAULT_ACTION_VARIANT_VALUE{"ahoj"};
|
|
const bool DEFAULT_BLOCKING_VALUE{true};
|
|
|
|
constexpr const double DOUBLE_VALUE{3.24L};
|
|
|
|
} // namespace sdbus::test
|
|
|
|
namespace testing::internal {
|
|
|
|
// Printer for std::chrono::duration types.
|
|
// This is a workaround, since it's not a good thing to add this to std namespace.
|
|
template<class Rep, class Period>
|
|
void PrintTo(const ::std::chrono::duration<Rep, Period>& duration, ::std::ostream* stream)
|
|
{
|
|
auto seconds = std::chrono::duration_cast<std::chrono::duration<double>>(duration);
|
|
*stream << seconds.count() << "s";
|
|
}
|
|
|
|
} // namespace testing::internal
|
|
|
|
#endif /* SDBUS_CPP_INTEGRATIONTESTS_DEFS_H_ */
|