Skip to content

Commit 23de23f

Browse files
committed
added tree to the documentation and fixed adapter identity
1 parent 46ac156 commit 23de23f

File tree

4 files changed

+62
-31
lines changed

4 files changed

+62
-31
lines changed

cmake/document.cmake

+1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ if (DOXYGEN_FOUND)
1818
set(DOXYGEN_HTML_COLORSTYLE "AUTO_DARK")
1919
set(DOXYGEN_MAX_DOT_GRAPH_DEPTH 3)
2020
set(DOXYGEN_GENERATE_TESTLIST YES)
21+
set(DOXYGEN_GENERATE_TREEVIEW YES)
2122
endif()

src/mtconnect/source/adapter/shdr/shdr_adapter.cpp

+42-26
Original file line numberDiff line numberDiff line change
@@ -49,47 +49,63 @@ namespace mtconnect::source::adapter::shdr {
4949
GetOptions(block, m_options, options);
5050
AddOptions(block, m_options,
5151
{{configuration::Heartbeat, Milliseconds {0}},
52-
{configuration::UUID, string()},
53-
{configuration::Manufacturer, string()},
54-
{configuration::Station, string()},
55-
{configuration::Url, string()}});
56-
52+
{configuration::UUID, string()},
53+
{configuration::Manufacturer, string()},
54+
{configuration::AdapterIdentity, string()},
55+
{configuration::Station, string()},
56+
{configuration::Url, string()}});
57+
5758
m_options.erase(configuration::Host);
5859
m_options.erase(configuration::Port);
5960
m_heartbeatOverride = GetOption<Milliseconds>(m_options, configuration::Heartbeat);
60-
61+
6162
AddDefaultedOptions(block, m_options,
6263
{{configuration::Host, "localhost"s},
63-
{configuration::Port, 7878},
64-
{configuration::AutoAvailable, false},
65-
{configuration::RealTime, false},
66-
{configuration::RelativeTime, false},
67-
{configuration::EnableSourceDeviceModels, false}});
68-
64+
{configuration::Port, 7878},
65+
{configuration::AutoAvailable, false},
66+
{configuration::RealTime, false},
67+
{configuration::RelativeTime, false},
68+
{configuration::SuppressIPAddress, false},
69+
{configuration::EnableSourceDeviceModels, false}});
70+
6971
m_server = get<string>(m_options[configuration::Host]);
7072
m_port = get<int>(m_options[configuration::Port]);
71-
73+
7274
auto timeout = m_options.find(configuration::LegacyTimeout);
7375
if (timeout != m_options.end())
7476
m_legacyTimeout = get<Seconds>(timeout->second);
75-
77+
7678
stringstream url;
7779
url << "shdr://" << m_server << ':' << m_port;
7880
m_name = url.str();
79-
81+
8082
stringstream identity;
8183
identity << '_' << m_server << '_' << m_port;
82-
m_name = identity.str();
83-
boost::uuids::detail::sha1 sha1;
84-
sha1.process_bytes(identity.str().c_str(), identity.str().length());
85-
boost::uuids::detail::sha1::digest_type digest;
86-
sha1.get_digest(digest);
87-
88-
identity.str("");
89-
identity << std::hex << digest[0] << digest[1] << digest[2];
90-
m_identity = string("_") + (identity.str()).substr(0, 10);
91-
92-
m_options[configuration::AdapterIdentity] = m_identity;
84+
85+
if (auto ident = GetOption<string>(m_options , configuration::AdapterIdentity))
86+
{
87+
m_identity = *ident;
88+
}
89+
else
90+
{
91+
if (IsOptionSet(m_options, configuration::SuppressIPAddress))
92+
{
93+
boost::uuids::detail::sha1 sha1;
94+
sha1.process_bytes(identity.str().c_str(), identity.str().length());
95+
boost::uuids::detail::sha1::digest_type digest;
96+
sha1.get_digest(digest);
97+
98+
identity.str("");
99+
identity << std::hex << digest[0] << digest[1] << digest[2];
100+
m_identity = string("_") + (identity.str()).substr(0, 10);
101+
}
102+
else
103+
{
104+
m_identity = identity.str();
105+
}
106+
m_options[configuration::AdapterIdentity] = m_identity;
107+
}
108+
93109
m_handler = m_pipeline.makeHandler();
94110
if (m_pipeline.hasContract())
95111
m_pipeline.build(m_options);

test_package/agent_device_test.cpp

+11-5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
// limitations under the License.
1616
//
1717

18+
/// @file
19+
/// Agent File tests
20+
1821
// Ensure that gtest is the first header otherwise Windows raises an error
1922
#include <gtest/gtest.h>
2023
// Keep this comment to keep gtest.h above. (clang-format off/on is not working here!)
@@ -180,9 +183,11 @@ TEST_F(AgentDeviceTest, DeviceAddedItemsInBuffer)
180183
#define ADAPTER_PATH ADAPTERS_PATH "/m:Components/m:Adapter"
181184
#define ADAPTER_DATA_ITEMS_PATH ADAPTER_PATH "/m:DataItems"
182185

183-
#define ID_PREFIX "_d0c33d4315"
186+
#define ID_PREFIX "_127.0.0.1_21788"
187+
#define ID_PREFIX_SUPP "_d0c33d4315"
184188

185-
TEST_F(AgentDeviceTest, AdapterAddedProbeTest)
189+
/// @test verify agent device adds adapter in probe
190+
TEST_F(AgentDeviceTest, should_add_adapter_with_server_ip_and_port)
186191
{
187192
m_port = 21788;
188193
addAdapter();
@@ -205,26 +210,27 @@ TEST_F(AgentDeviceTest, AdapterAddedProbeTest)
205210
}
206211
}
207212

213+
/// @test verify agent device adds adapter in probe with ip address and port suppressed
208214
TEST_F(AgentDeviceTest, adapter_component_with_ip_address_suppressed)
209215
{
210216
m_port = 21788;
211217
addAdapter(true);
212218
{
213219
PARSE_XML_RESPONSE("/Agent/probe");
214220
ASSERT_XML_PATH_COUNT(doc, ADAPTERS_PATH "/*", 1);
215-
ASSERT_XML_PATH_EQUAL(doc, ADAPTER_PATH "@id", ID_PREFIX);
221+
ASSERT_XML_PATH_EQUAL(doc, ADAPTER_PATH "@id", ID_PREFIX_SUPP);
216222
ASSERT_XML_PATH_EQUAL(doc, ADAPTER_PATH "@name", "LinuxCNC");
217223

218224
ASSERT_XML_PATH_COUNT(
219-
doc, ADAPTER_DATA_ITEMS_PATH "/m:DataItem[@id='" ID_PREFIX "_adapter_uri']", 0);
225+
doc, ADAPTER_DATA_ITEMS_PATH "/m:DataItem[@id='" ID_PREFIX_SUPP "_adapter_uri']", 0);
220226
}
221227
}
222228

223229
#define AGENT_DEVICE_STREAM "//m:DeviceStream[@name='Agent']"
224230
#define AGENT_DEVICE_DEVICE_STREAM AGENT_DEVICE_STREAM "/m:ComponentStream[@component='Agent']"
225231
#define AGENT_DEVICE_ADAPTER_STREAM AGENT_DEVICE_STREAM "/m:ComponentStream[@component='Adapter']"
226232

227-
TEST_F(AgentDeviceTest, AdapterAddedCurrentTest)
233+
TEST_F(AgentDeviceTest, should_have_device_added_in_current)
228234
{
229235
{
230236
PARSE_XML_RESPONSE("/Agent/current");

test_package/json_mapping_test.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
// limitations under the License.
1616
//
1717

18+
/// @file
19+
/// JSON Sink tests
20+
1821
// Ensure that gtest is the first header otherwise Windows raises an error
1922
#include <gtest/gtest.h>
2023
// Keep this comment to keep gtest.h above. (clang-format off/on is not working here!)
@@ -380,3 +383,8 @@ TEST_F(JsonMappingTest, should_parse_time_series_arrays) { GTEST_SKIP(); }
380383
/// @test verify the json mapper can handle reset triggered for statistics
381384
TEST_F(JsonMappingTest, should_parse_reset_triggered) { GTEST_SKIP(); }
382385

386+
/// @test verify the json mapper can an asset in XML
387+
TEST_F(JsonMappingTest, should_parse_xml_asset) { GTEST_SKIP(); }
388+
389+
/// @test verify the json mapper can an asset in json
390+
TEST_F(JsonMappingTest, should_parse_json_asset) { GTEST_SKIP(); }

0 commit comments

Comments
 (0)