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

[Tests] Assigned a namespace to readXML

parent 3bb0a33d
No related branches found
No related tags found
No related merge requests found
Showing
with 38 additions and 33 deletions
...@@ -120,7 +120,7 @@ TEST(BaseLibConfigTree, Get) ...@@ -120,7 +120,7 @@ TEST(BaseLibConfigTree, Get)
"<vector_bad1>x 1 2a</vector_bad1>" "<vector_bad1>x 1 2a</vector_bad1>"
"<vector_bad2>0 1 2a</vector_bad2>" "<vector_bad2>0 1 2a</vector_bad2>"
; ;
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -256,7 +256,7 @@ TEST(BaseLibConfigTree, IncompleteParse) ...@@ -256,7 +256,7 @@ TEST(BaseLibConfigTree, IncompleteParse)
"<pt x=\"0.5\">1</pt>" "<pt x=\"0.5\">1</pt>"
"<pt2 x=\"0.5\" y=\"1.0\" z=\"2.0\" />" "<pt2 x=\"0.5\" y=\"1.0\" z=\"2.0\" />"
; ;
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -297,7 +297,7 @@ TEST(BaseLibConfigTree, CheckRange) ...@@ -297,7 +297,7 @@ TEST(BaseLibConfigTree, CheckRange)
"<int>0</int>" "<int>0</int>"
"<int>1</int>" "<int>1</int>"
"<int>2</int>"; "<int>2</int>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -336,7 +336,7 @@ TEST(BaseLibConfigTree, GetSubtreeList) ...@@ -336,7 +336,7 @@ TEST(BaseLibConfigTree, GetSubtreeList)
"<val><int>0</int></val>" "<val><int>0</int></val>"
"<val><int>1</int></val>" "<val><int>1</int></val>"
"<val><int>2</int></val>"; "<val><int>2</int></val>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -368,7 +368,7 @@ TEST(BaseLibConfigTree, GetParamList) ...@@ -368,7 +368,7 @@ TEST(BaseLibConfigTree, GetParamList)
"<int>2</int>" "<int>2</int>"
"<int2 a=\"b\">3</int2>" "<int2 a=\"b\">3</int2>"
"<int3>4<error/></int3>"; "<int3>4<error/></int3>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -419,7 +419,7 @@ TEST(BaseLibConfigTree, GetValueList) ...@@ -419,7 +419,7 @@ TEST(BaseLibConfigTree, GetValueList)
"<int>0</int>" "<int>0</int>"
"<int>1</int>" "<int>1</int>"
"<int>2</int>"; "<int>2</int>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -454,7 +454,7 @@ TEST(BaseLibConfigTree, NoConversion) ...@@ -454,7 +454,7 @@ TEST(BaseLibConfigTree, NoConversion)
"<ign/>" "<ign/>"
"<ign2/><ign2/><ign2/>" "<ign2/><ign2/><ign2/>"
; ;
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -506,7 +506,7 @@ TEST(BaseLibConfigTree, NoConversion) ...@@ -506,7 +506,7 @@ TEST(BaseLibConfigTree, NoConversion)
TEST(BaseLibConfigTree, BadKeynames) TEST(BaseLibConfigTree, BadKeynames)
{ {
const char xml[] = ""; const char xml[] = "";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -550,7 +550,7 @@ TEST(BaseLibConfigTree, StringLiterals) ...@@ -550,7 +550,7 @@ TEST(BaseLibConfigTree, StringLiterals)
const char xml[] = const char xml[] =
"<s>test</s>" "<s>test</s>"
"<t>Test</t>"; "<t>Test</t>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -576,7 +576,7 @@ TEST(BaseLibConfigTree, MoveConstruct) ...@@ -576,7 +576,7 @@ TEST(BaseLibConfigTree, MoveConstruct)
"<s>test</s>" "<s>test</s>"
"<t>Test</t>" "<t>Test</t>"
"<u>data</u>"; "<u>data</u>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
...@@ -620,7 +620,7 @@ TEST(BaseLibConfigTree, MoveAssign) ...@@ -620,7 +620,7 @@ TEST(BaseLibConfigTree, MoveAssign)
"<s>test</s>" "<s>test</s>"
"<t>Test</t>" "<t>Test</t>"
"<u>data</u>"; "<u>data</u>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
Callbacks cbs; Callbacks cbs;
{ {
......
...@@ -28,7 +28,7 @@ using namespace MaterialLib::PorousMedium; ...@@ -28,7 +28,7 @@ using namespace MaterialLib::PorousMedium;
std::unique_ptr<CapillaryPressureSaturation> createCapillaryPressureModel( std::unique_ptr<CapillaryPressureSaturation> createCapillaryPressureModel(
const char xml[]) const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("capillary_pressure"); auto const& sub_config = conf.getConfigSubtree("capillary_pressure");
......
...@@ -28,7 +28,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType; ...@@ -28,7 +28,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType;
// Test density models. // Test density models.
std::unique_ptr<FluidProperty> createTestFluidDensityModel(const char xml[]) std::unique_ptr<FluidProperty> createTestFluidDensityModel(const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("density"); auto const& sub_config = conf.getConfigSubtree("density");
......
...@@ -30,7 +30,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType; ...@@ -30,7 +30,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType;
std::unique_ptr<FluidProperties> createTestFluidProperties(const char xml[]) std::unique_ptr<FluidProperties> createTestFluidProperties(const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("fluid"); auto const& sub_config = conf.getConfigSubtree("fluid");
......
...@@ -30,7 +30,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType; ...@@ -30,7 +30,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType;
std::unique_ptr<FluidProperty> createSpecificFluidHeatCapacityModel( std::unique_ptr<FluidProperty> createSpecificFluidHeatCapacityModel(
const char xml[]) const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("specific_heat_capacity"); auto const& sub_config = conf.getConfigSubtree("specific_heat_capacity");
......
...@@ -31,7 +31,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType; ...@@ -31,7 +31,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType;
std::unique_ptr<FluidProperty> createFluidThermalConductivityModel( std::unique_ptr<FluidProperty> createFluidThermalConductivityModel(
const char xml[]) const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("thermal_conductivity"); auto const& sub_config = conf.getConfigSubtree("thermal_conductivity");
......
...@@ -27,7 +27,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType; ...@@ -27,7 +27,7 @@ using ArrayType = MaterialLib::Fluid::FluidProperty::ArrayType;
std::unique_ptr<FluidProperty> createTestViscosityModel(const char xml[]) std::unique_ptr<FluidProperty> createTestViscosityModel(const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("viscosity"); auto const& sub_config = conf.getConfigSubtree("viscosity");
......
...@@ -18,12 +18,13 @@ ...@@ -18,12 +18,13 @@
#include "MaterialLib/MPL/CreateMedium.h" #include "MaterialLib/MPL/CreateMedium.h"
#include "MathLib/InterpolationAlgorithms/PiecewiseLinearInterpolation.h" #include "MathLib/InterpolationAlgorithms/PiecewiseLinearInterpolation.h"
#include "ParameterLib/Parameter.h" #include "ParameterLib/Parameter.h"
#include "Tests/TestTools.h"
namespace Tests namespace Tests
{ {
std::unique_ptr<MPL::Medium> createTestMaterial(std::string const& xml) std::unique_ptr<MPL::Medium> createTestMaterial(std::string const& xml)
{ {
auto const ptree = readXml(xml.c_str()); auto const ptree = Tests::readXml(xml.c_str());
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& config = conf.getConfigSubtree("medium"); auto const& config = conf.getConfigSubtree("medium");
...@@ -41,7 +42,7 @@ std::unique_ptr<MaterialPropertyLib::Property> createTestProperty( ...@@ -41,7 +42,7 @@ std::unique_ptr<MaterialPropertyLib::Property> createTestProperty(
BaseLib::ConfigTree const& config)> BaseLib::ConfigTree const& config)>
createProperty) createProperty)
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("property"); auto const& sub_config = conf.getConfigSubtree("property");
......
...@@ -24,7 +24,7 @@ using namespace MaterialLib::PorousMedium; ...@@ -24,7 +24,7 @@ using namespace MaterialLib::PorousMedium;
std::unique_ptr<Storage> createTestStorageModel(const char xml[]) std::unique_ptr<Storage> createTestStorageModel(const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("storage"); auto const& sub_config = conf.getConfigSubtree("storage");
......
...@@ -28,7 +28,7 @@ using namespace MaterialLib::PorousMedium; ...@@ -28,7 +28,7 @@ using namespace MaterialLib::PorousMedium;
std::unique_ptr<RelativePermeability> createRelativePermeabilityModel( std::unique_ptr<RelativePermeability> createRelativePermeabilityModel(
const char xml[]) const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("relative_permeability"); auto const& sub_config = conf.getConfigSubtree("relative_permeability");
......
...@@ -283,7 +283,7 @@ TEST(MPITest_Math, CheckInterface_PETSc_Linear_Solver_basic) ...@@ -283,7 +283,7 @@ TEST(MPITest_Math, CheckInterface_PETSc_Linear_Solver_basic)
" </parameters>" " </parameters>"
" <prefix>ptest1</prefix>" " <prefix>ptest1</prefix>"
"</petsc>"; "</petsc>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
checkLinearSolverInterface<MathLib::PETScMatrix, checkLinearSolverInterface<MathLib::PETScMatrix,
MathLib::PETScVector, MathLib::PETScVector,
...@@ -317,7 +317,7 @@ TEST(MPITest_Math, CheckInterface_PETSc_Linear_Solver_chebyshev_sor) ...@@ -317,7 +317,7 @@ TEST(MPITest_Math, CheckInterface_PETSc_Linear_Solver_chebyshev_sor)
" </parameters>" " </parameters>"
" <prefix>ptest2</prefix>" " <prefix>ptest2</prefix>"
"</petsc>"; "</petsc>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
checkLinearSolverInterface<MathLib::PETScMatrix, checkLinearSolverInterface<MathLib::PETScMatrix,
MathLib::PETScVector, MathLib::PETScVector,
...@@ -353,7 +353,7 @@ TEST(MPITest_Math, CheckInterface_PETSc_Linear_Solver_gmres_amg) ...@@ -353,7 +353,7 @@ TEST(MPITest_Math, CheckInterface_PETSc_Linear_Solver_gmres_amg)
" </parameters>" " </parameters>"
" <prefix>ptest3</prefix>" " <prefix>ptest3</prefix>"
"</petsc>"; "</petsc>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
checkLinearSolverInterface<MathLib::PETScMatrix, checkLinearSolverInterface<MathLib::PETScMatrix,
MathLib::PETScVector, MathLib::PETScVector,
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
template <typename CurveType> template <typename CurveType>
std::unique_ptr<CurveType> createPiecewiseLinearCurve(const char xml[]) std::unique_ptr<CurveType> createPiecewiseLinearCurve(const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("curve"); auto const& sub_config = conf.getConfigSubtree("curve");
......
...@@ -41,7 +41,7 @@ createLinearSolver() ...@@ -41,7 +41,7 @@ createLinearSolver()
"<petsc><parameters>" "<petsc><parameters>"
"-ksp_type bcgs -pc_type sor -ksp_rtol 1e-24 -ksp_max_it 100 -ksp_initial_guess_nonzero false" "-ksp_type bcgs -pc_type sor -ksp_rtol 1e-24 -ksp_max_it 100 -ksp_initial_guess_nonzero false"
"</parameters></petsc>"; "</parameters></petsc>";
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree config(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree config(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
return std::make_unique<GlobalLinearSolver>("", &config); return std::make_unique<GlobalLinearSolver>("", &config);
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
std::unique_ptr<NumLib::TimeStepAlgorithm> createTestTimeStepper( std::unique_ptr<NumLib::TimeStepAlgorithm> createTestTimeStepper(
const char xml[]) const char xml[])
{ {
auto const ptree = readXml(xml); auto const ptree = Tests::readXml(xml);
BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree conf(ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto const& sub_config = conf.getConfigSubtree("time_stepping"); auto const& sub_config = conf.getConfigSubtree("time_stepping");
......
...@@ -35,7 +35,7 @@ std::unique_ptr<Parameter<double>> constructParameterFromString( ...@@ -35,7 +35,7 @@ std::unique_ptr<Parameter<double>> constructParameterFromString(
std::unique_ptr<MathLib::PiecewiseLinearInterpolation>> const& std::unique_ptr<MathLib::PiecewiseLinearInterpolation>> const&
curves = {}) curves = {})
{ {
auto const xml_ptree = readXml(xml.c_str()); auto const xml_ptree = Tests::readXml(xml.c_str());
BaseLib::ConfigTree config_tree(xml_ptree, "", BaseLib::ConfigTree::onerror, BaseLib::ConfigTree config_tree(xml_ptree, "", BaseLib::ConfigTree::onerror,
BaseLib::ConfigTree::onwarning); BaseLib::ConfigTree::onwarning);
auto parameter_base = createParameter(config_tree, meshes, curves); auto parameter_base = createParameter(config_tree, meshes, curves);
......
...@@ -11,8 +11,9 @@ ...@@ -11,8 +11,9 @@
#include "Tests/TestTools.h" #include "Tests/TestTools.h"
boost::property_tree::ptree namespace Tests
readXml(const char xml[]) {
boost::property_tree::ptree readXml(const char xml[])
{ {
boost::property_tree::ptree ptree; boost::property_tree::ptree ptree;
std::istringstream xml_str(xml); std::istringstream xml_str(xml);
...@@ -22,3 +23,5 @@ readXml(const char xml[]) ...@@ -22,3 +23,5 @@ readXml(const char xml[])
boost::property_tree::xml_parser::trim_whitespace); boost::property_tree::xml_parser::trim_whitespace);
return ptree; return ptree;
} }
} // namespace Tests
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#define ASSERT_ARRAY_EQ(E,A,N)\ #define ASSERT_ARRAY_EQ(E,A,N)\
for (std::size_t i=0; i<(unsigned)(N); i++) \ for (std::size_t i=0; i<(unsigned)(N); i++) \
ASSERT_EQ((E)[i], (A)[i]); ASSERT_EQ((E)[i], (A)[i]);
namespace Tests
boost::property_tree::ptree {
readXml(const char xml[]); boost::property_tree::ptree readXml(const char xml[]);
} // namespace Tests
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