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
|
//
// Copyright (C) 2023 Greg Landrum and other RDKit contributors
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#pragma once
#include <cstdlib>
#include <string>
#include <boost/noncopyable.hpp>
#include <GraphMol/Chirality.h>
class TestFixtureTemplate : public boost::noncopyable {
public:
TestFixtureTemplate() = delete;
TestFixtureTemplate(std::string var, bool (*getter_func)(),
void (*setter_func)(bool))
: m_getter_func{getter_func},
m_setter_func{setter_func},
m_var{std::move(var)} {
auto evar = std::getenv(m_var.c_str());
m_env_var_set = evar == nullptr;
m_flag_state = (*m_getter_func)();
}
~TestFixtureTemplate() {
if (m_env_var_set) {
(*m_setter_func)(m_flag_state);
} else {
#ifdef _WIN32
_putenv_s(m_var.c_str(), "");
#else
unsetenv(m_var.c_str());
#endif
}
}
protected:
bool (*m_getter_func)();
void (*m_setter_func)(bool);
private:
std::string m_var;
bool m_flag_state;
bool m_env_var_set;
};
class UseLegacyStereoPerceptionFixture : private TestFixtureTemplate {
public:
UseLegacyStereoPerceptionFixture()
: TestFixtureTemplate(RDKit::Chirality::useLegacyStereoEnvVar,
&RDKit::Chirality::getUseLegacyStereoPerception,
&RDKit::Chirality::setUseLegacyStereoPerception) {}
UseLegacyStereoPerceptionFixture(bool state)
: TestFixtureTemplate(RDKit::Chirality::useLegacyStereoEnvVar,
&RDKit::Chirality::getUseLegacyStereoPerception,
&RDKit::Chirality::setUseLegacyStereoPerception) {
(*m_setter_func)(state);
}
};
class AllowNontetrahedralChiralityFixture : private TestFixtureTemplate {
public:
AllowNontetrahedralChiralityFixture()
: TestFixtureTemplate(
RDKit::Chirality::nonTetrahedralStereoEnvVar,
&RDKit::Chirality::getAllowNontetrahedralChirality,
&RDKit::Chirality::setAllowNontetrahedralChirality) {}
};
|