forked from Kistler-Group/sdbus-cpp
This allows nesting variants, i.e. allows a variant to contain another variant as its value. Until now, there was no such possibility, since the default generated copy constructor would be invoked which would create a copy of source variant instead of embed the source variant as a value in the destination variant. The default generated copy constructor is kept, for it makes sense too, but a new tag-based overload is added for embedding the source variant into the destination variant.
82 lines
2.9 KiB
C++
82 lines
2.9 KiB
C++
/**
|
|
* (C) 2016 - 2021 KISTLER INSTRUMENTE AG, Winterthur, Switzerland
|
|
* (C) 2016 - 2024 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 { namespace 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 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>& d, ::std::ostream* os) {
|
|
auto seconds = std::chrono::duration_cast<std::chrono::duration<double>>(d);
|
|
*os << seconds.count() << "s";
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* SDBUS_CPP_INTEGRATIONTESTS_DEFS_H_ */
|