Skip to content
Snippets Groups Projects
Commit f036b2c7 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[T] Add ConfigTree test for reading vector values.

parent ffd9feb3
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,9 @@ ...@@ -11,7 +11,9 @@
#include <logog/include/logog.hpp> #include <logog/include/logog.hpp>
#include <boost/property_tree/xml_parser.hpp> #include <boost/property_tree/xml_parser.hpp>
#include <numeric>
#include <sstream> #include <sstream>
#include <vector>
#include "BaseLib/ConfigTree.h" #include "BaseLib/ConfigTree.h"
#include "Tests/TestTools.h" #include "Tests/TestTools.h"
...@@ -114,6 +116,7 @@ TEST(BaseLibConfigTree, Get) ...@@ -114,6 +116,7 @@ TEST(BaseLibConfigTree, Get)
"</sub>" "</sub>"
"<x>Y</x>" "<x>Y</x>"
"<z attr=\"0.5\" optattr=\"false\">32.0</z>" "<z attr=\"0.5\" optattr=\"false\">32.0</z>"
"<vector>0 1 2 3 4</vector>"
; ;
auto const ptree = readXml(xml); auto const ptree = readXml(xml);
...@@ -219,6 +222,17 @@ TEST(BaseLibConfigTree, Get) ...@@ -219,6 +222,17 @@ TEST(BaseLibConfigTree, Get)
EXPECT_FALSE(z.getConfAttributeOptional<bool>("also_not_an_attr")); // nonexisting attribute EXPECT_FALSE(z.getConfAttributeOptional<bool>("also_not_an_attr")); // nonexisting attribute
EXPECT_ERR_WARN(cbs, false, false); EXPECT_ERR_WARN(cbs, false, false);
} }
// Testing vector
{
auto v = conf.getConfParam<std::vector<int>>("vector");
EXPECT_ERR_WARN(cbs, false, false);
EXPECT_EQ(5u, v.size());
std::vector<int> expected_vector(5);
std::iota(expected_vector.begin(), expected_vector.end(), 0);
EXPECT_TRUE(std::equal(expected_vector.begin(),
expected_vector.end(), v.begin()));
}
EXPECT_ERR_WARN(cbs, false, false); EXPECT_ERR_WARN(cbs, false, false);
} // ConfigTree destroyed here } // ConfigTree destroyed here
EXPECT_ERR_WARN(cbs, false, false); EXPECT_ERR_WARN(cbs, false, false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment