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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
|
// Copyright 2023 Proyectos y Sistemas de Mantenimiento SL (eProsima).
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <chrono>
#include <future>
#include <iostream>
#include <memory>
#include <string>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <fastdds/core/policy/ParameterList.hpp>
#include <fastdds/dds/domain/DomainParticipant.hpp>
#include <fastdds/dds/domain/DomainParticipantFactory.hpp>
#include <fastdds/dds/domain/DomainParticipantListener.hpp>
#include <fastdds/dds/publisher/DataWriterListener.hpp>
#include <fastdds/rtps/builtin/data/BuiltinEndpoints.hpp>
#include <fastdds/rtps/reader/ReaderListener.hpp>
#include <rtps/builtin/BuiltinProtocols.h>
#include <rtps/builtin/data/ReaderProxyData.hpp>
#include <rtps/builtin/data/WriterProxyData.hpp>
#include <rtps/builtin/discovery/participant/PDP.h>
#include <rtps/builtin/discovery/participant/PDPEndpoints.hpp>
#include <rtps/participant/RTPSParticipantImpl.hpp>
#include <statistics/fastdds/domain/DomainParticipantImpl.hpp>
#include <statistics/rtps/StatisticsBase.hpp>
#if HAVE_SECURITY
#include <rtps/security/accesscontrol/ParticipantSecurityAttributes.h>
#endif // if HAVE_SECURITY
#if defined(__cplusplus_winrt)
#define GET_PID GetCurrentProcessId
#elif defined(_WIN32)
#include <process.h>
#define GET_PID _getpid
#else
#define GET_PID getpid
#endif // if defined(_WIN32)
namespace eprosima {
namespace fastdds {
namespace rtps {
using ::testing::Return;
using ::testing::ReturnRef;
class TesterPDPEndpoints : public fastdds::rtps::PDPEndpoints
{
~TesterPDPEndpoints() override = default;
fastdds::rtps::BuiltinEndpointSet_t builtin_endpoints() const override
{
return fastdds::rtps::DISC_BUILTIN_ENDPOINT_PARTICIPANT_ANNOUNCER |
fastdds::rtps::DISC_BUILTIN_ENDPOINT_PARTICIPANT_DETECTOR;
}
const std::unique_ptr<fastdds::rtps::ReaderListener>& main_listener() const override
{
return no_listener_;
}
bool enable_pdp_readers(
fastdds::rtps::RTPSParticipantImpl*) override
{
return true;
}
void disable_pdp_readers(
fastdds::rtps::RTPSParticipantImpl*) override
{
}
void delete_pdp_endpoints(
fastdds::rtps::RTPSParticipantImpl* ) override
{
}
void remove_from_pdp_reader_history(
const fastdds::rtps::InstanceHandle_t&) override
{
}
void remove_from_pdp_reader_history(
fastdds::rtps::CacheChange_t*) override
{
}
std::unique_ptr<fastdds::rtps::ReaderListener> no_listener_;
};
class PDPTester : public PDP
{
public:
PDPTester(
BuiltinProtocols* bp,
const RTPSParticipantAllocationAttributes& allocs)
: PDP(bp, allocs)
, endpoints_(nullptr)
{
endpoints_ = new TesterPDPEndpoints();
builtin_endpoints_.reset(endpoints_);
}
virtual ~PDPTester()
{
for (size_t i = 0; i < pdatas_.size(); i++)
{
delete pdatas_[i];
}
}
bool init(
RTPSParticipantImpl* part) override
{
mp_RTPSParticipant = part;
return true;
}
ParticipantProxyData* createParticipantProxyData(
const ParticipantProxyData& /*p*/,
const GUID_t& /*writer_guid*/) override
{
return nullptr;
}
void create_and_add_participant_proxy_data(
const GUID_t& part_guid)
{
RTPSParticipantAllocationAttributes attrs;
ParticipantProxyData* pdata = new ParticipantProxyData(attrs);
pdata->m_guid = part_guid;
add_participant_proxy_data(part_guid, false, pdata);
pdatas_.push_back(pdata);
}
void announceParticipantState(
bool /*new_change*/,
bool /*dispose*/,
WriteParams& /*wparams*/) override
{
return;
}
void announceParticipantState(
bool /*new_change*/,
bool /*dispose = false*/) override
{
return;
}
void stopParticipantAnnouncement() override
{
return;
}
void resetParticipantAnnouncement() override
{
return;
}
bool createPDPEndpoints() override
{
return true;
}
void assignRemoteEndpoints(
ParticipantProxyData* /*pdata*/) override
{
return;
}
void notifyAboveRemoteEndpoints(
const ParticipantProxyData& /*pdata*/,
bool /*notify_secure_endpoints*/) override
{
return;
}
bool updateInfoMatchesEDP() override
{
return true;
}
void removeRemoteEndpoints(
ParticipantProxyData* /*pdata*/) override
{
return;
}
bool remove_remote_participant(
const GUID_t& /*participant_guid*/,
ParticipantDiscoveryStatus /*reason*/) override
{
return true;
}
#if HAVE_SECURITY
bool pairing_remote_writer_with_local_reader_after_security(
const GUID_t& /*local_reader*/,
const WriterProxyData& /*remote_writer_data*/) override
{
return true;
}
bool pairing_remote_reader_with_local_writer_after_security(
const GUID_t& /*local_writer*/,
const ReaderProxyData& /*remote_reader_data*/) override
{
return true;
}
#endif // HAVE_SECURITY
protected:
void update_builtin_locators() override
{
}
TesterPDPEndpoints* endpoints_;
std::vector<ParticipantProxyData*> pdatas_;
};
class Listener : public eprosima::fastdds::dds::DomainParticipantListener
{
public:
Listener()
: matched(0)
{
}
~Listener() override
{
}
void on_participant_discovery(
fastdds::dds::DomainParticipant* participant,
fastdds::rtps::ParticipantDiscoveryStatus /*status*/,
const fastdds::rtps::ParticipantBuiltinTopicData& /*info*/,
bool& /*should_be_ignored*/) override
{
if (std::find(p_matched_.begin(), p_matched_.end(), participant->guid()) == p_matched_.end())
{
matched++;
p_matched_.push_back(participant->guid());
}
}
int matched;
private:
std::vector<fastdds::rtps::GUID_t> p_matched_;
};
class PDPTests : public ::testing::Test
{
protected:
void SetUp() override
{
RTPSParticipantAllocationAttributes attrs;
attrs.participants.initial = 3;
attrs.readers.initial = 3;
attrs.writers.initial = 3;
pdp_ = new PDPTester(&bp_, attrs);
pdp_->init(&participant_);
}
void TearDown() override
{
delete pdp_;
}
PDPTester* pdp_;
::testing::NiceMock<BuiltinProtocols> bp_;
::testing::NiceMock<RTPSParticipantImpl> participant_;
};
TEST_F(PDPTests, iproxy_queryable_get_all_local_proxies)
{
#ifdef FASTDDS_STATISTICS
std::vector<GUID_t> local_guids, output_guids;
size_t n_entities = 10;
local_guids.reserve(n_entities);
GUID_t part_guid(GuidPrefix_t::unknown(), ENTITYID_RTPSParticipant);
EXPECT_CALL(participant_, getGuid()).WillRepeatedly(testing::ReturnRef(part_guid));
pdp_->create_and_add_participant_proxy_data(part_guid);
local_guids.push_back(part_guid);
//! Generate local entities
for (size_t i = 1; i < 10; i++)
{
EntityId_t entity;
entity.value[3] = (octet)i;
GUID_t entity_guid = {part_guid.guidPrefix, entity};
if (i % 2)
{
pdp_->addReaderProxyData(entity_guid, part_guid,
[&entity_guid](ReaderProxyData* rdata, bool, const ParticipantProxyData&)
{
rdata->guid(entity_guid); return true;
});
}
else
{
pdp_->addWriterProxyData(entity_guid, part_guid,
[&entity_guid](WriterProxyData* wdata, bool, const ParticipantProxyData&)
{
wdata->guid(entity_guid); return true;
});
}
local_guids.push_back(entity_guid);
}
//! Generate other random participant and entities
for (size_t i = 1; i < n_entities; i++)
{
GuidPrefix_t prefix;
prefix.value[4] = std::rand() % 100;
prefix.value[5] = std::rand() % 100;
prefix.value[6] = std::rand() % 100;
prefix.value[7] = std::rand() % 100;
EntityId_t entity;
entity.value[3] = (octet)i;
GUID_t entity_guid = {prefix, entity};
GUID_t other_part_guid = {prefix, ENTITYID_RTPSParticipant};
pdp_->create_and_add_participant_proxy_data(other_part_guid);
if (i % 2)
{
pdp_->addReaderProxyData(entity_guid, other_part_guid,
[&entity_guid](ReaderProxyData* rdata, bool, const ParticipantProxyData&)
{
rdata->guid(entity_guid); return true;
});
}
else
{
pdp_->addWriterProxyData(entity_guid, other_part_guid,
[&entity_guid](WriterProxyData* wdata, bool, const ParticipantProxyData&)
{
wdata->guid(entity_guid); return true;
});
}
}
pdp_->get_all_local_proxies(output_guids);
ASSERT_FALSE(output_guids.empty());
for (auto& guid : output_guids)
{
auto it = std::find(local_guids.begin(), local_guids.end(), guid);
ASSERT_TRUE(it != local_guids.end());
}
#endif // FASTDDS_STATISTICS
}
TEST_F(PDPTests, iproxy_queryable_get_serialized_proxy)
{
#ifdef FASTDDS_STATISTICS
GUID_t part_guid(GuidPrefix_t::unknown(), ENTITYID_RTPSParticipant);
pdp_->create_and_add_participant_proxy_data(part_guid);
CDRMessage_t part_proxy_serialized;
ASSERT_TRUE(pdp_->get_serialized_proxy(part_guid, &part_proxy_serialized));
GUID_t expected_participant_guid;
part_proxy_serialized.pos = 0;
ASSERT_TRUE(fastdds::dds::ParameterList::read_guid_from_cdr_msg(part_proxy_serialized,
fastdds::dds::PID_PARTICIPANT_GUID, expected_participant_guid));
ASSERT_EQ(part_guid, expected_participant_guid);
EntityId_t entity;
entity.value[3] = 4;//! valid reader EntityId
GUID_t reader_guid = {GuidPrefix_t::unknown(), entity};
pdp_->addReaderProxyData(reader_guid, part_guid,
[&reader_guid](ReaderProxyData* rdata, bool, const ParticipantProxyData&)
{
rdata->guid(reader_guid);
rdata->topicName("test");
rdata->typeName("foo");
return true;
});
CDRMessage_t reader_proxy_serialized;
ASSERT_TRUE(pdp_->get_serialized_proxy(reader_guid, &reader_proxy_serialized));
reader_proxy_serialized.pos = 0;
GUID_t expected_reader_guid;
ASSERT_TRUE(fastdds::dds::ParameterList::read_guid_from_cdr_msg(reader_proxy_serialized,
fastdds::dds::PID_ENDPOINT_GUID, expected_reader_guid));
ASSERT_EQ(reader_guid, expected_reader_guid);
#endif // FASTDDS_STATISTICS
}
} // namespace rtps
} // namespace fastdds
} // namespace eprosima
int main(
int argc,
char** argv)
{
testing::InitGoogleMock(&argc, argv);
return RUN_ALL_TESTS();
}
|