test(tests): misc updates (all minor)

This commit is contained in:
2025-04-02 14:57:57 -04:00
parent e3afe90f37
commit 15a020b1bb
2 changed files with 2 additions and 16 deletions

View File

@@ -20,18 +20,12 @@
// *********************************************************************** */ // *********************************************************************** */
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include <iostream>
#include "quill/LogMacros.h" #include "quill/LogMacros.h"
#include "mfem.hpp" #include "mfem.hpp"
#include "resourceManager.h"
#include "resourceManagerTypes.h"
#include "polySolver.h" #include "polySolver.h"
#include "polyCoeff.h"
#include "probe.h" #include "probe.h"
#include "config.h" #include "config.h"
#include "meshIO.h"
std::string CONFIG_FILENAME = std::string(getenv("MESON_SOURCE_ROOT")) + "/tests/testsConfig.yaml"; std::string CONFIG_FILENAME = std::string(getenv("MESON_SOURCE_ROOT")) + "/tests/testsConfig.yaml";
@@ -44,23 +38,15 @@ TEST_F(polyTest, Solve) {
Probe::LogManager& logManager = Probe::LogManager::getInstance(); Probe::LogManager& logManager = Probe::LogManager::getInstance();
quill::Logger* logger = logManager.getLogger("log"); quill::Logger* logger = logManager.getLogger("log");
ResourceManager& rm = ResourceManager::getInstance();
const Resource& resource = rm.getResource("mesh:polySphere");
const auto &meshIO = std::get<std::unique_ptr<MeshIO>>(resource);
LOG_INFO(logger, "Starting polytrope solve test 1..."); LOG_INFO(logger, "Starting polytrope solve test 1...");
config.loadConfig(CONFIG_FILENAME); config.loadConfig(CONFIG_FILENAME);
double polytropicIndex = config.get<double>("Tests:Poly:Index", 1); double polytropicIndex = config.get<double>("Tests:Poly:Index", 1);
double polyRadius = polycoeff::x1(polytropicIndex);
LOG_INFO(logger, "Solving polytrope with n = {:0.2f}", polytropicIndex); LOG_INFO(logger, "Solving polytrope with n = {:0.2f}", polytropicIndex);
meshIO->LinearRescale(polyRadius);
mfem::Mesh& mesh = meshIO->GetMesh();
double radius = Probe::getMeshRadius(mesh);
LOG_INFO(logger, "Mesh radius: {:0.4f} (target={:0.4f})", radius, polyRadius);
PolySolver polytrope(polytropicIndex, 1, mesh); PolySolver polytrope(polytropicIndex, 1);
LOG_INFO(logger, "Solving polytrope..."); LOG_INFO(logger, "Solving polytrope...");
EXPECT_NO_THROW(polytrope.solve()); EXPECT_NO_THROW(polytrope.solve());
LOG_INFO(logger, "Polytrope solved."); LOG_INFO(logger, "Polytrope solved.");

View File

@@ -1,8 +1,8 @@
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include "resourceManager.h"
#include "config.h" #include "config.h"
#include "eosIO.h" #include "eosIO.h"
#include "helm.h" #include "helm.h"
#include "resourceManager.h"
#include "resourceManagerTypes.h" #include "resourceManagerTypes.h"
#include <string> #include <string>