Skip to content
Snippets Groups Projects
Commit 59d9ff3c authored by Owen Arnold's avatar Owen Arnold
Browse files

operator== for Run and dependencies

Also operator!=
Operators provided for LogManager, PropertyManager, Geometry and Run alongside testing
parent 56c9d2c7
No related branches found
No related tags found
No related merge requests found
......@@ -182,6 +182,9 @@ public:
/// Clear the logs
void clearLogs();
bool operator==(const LogManager &other) const;
bool operator!=(const LogManager &other) const;
protected:
/// Load the run from a NeXus file with a given group name
void loadNexus(::NeXus::File *file,
......
......@@ -41,6 +41,8 @@ public:
Run(const Run &other);
~Run();
Run &operator=(const Run &other);
bool operator==(const Run &other);
bool operator!=(const Run &other);
/// Clone
boost::shared_ptr<Run> clone();
......
......@@ -549,6 +549,14 @@ void LogManager::loadNexus(::NeXus::File *file,
*/
void LogManager::clearLogs() { m_manager->clear(); }
bool LogManager::operator==(const LogManager &other) const {
return *m_manager == *(other.m_manager);
}
bool LogManager::operator!=(const LogManager &other) const {
return *m_manager != *(other.m_manager);
}
//-----------------------------------------------------------------------------------------------------------------------
// Private methods
//-----------------------------------------------------------------------------------------------------------------------
......
......@@ -62,6 +62,14 @@ Run &Run::operator=(const Run &other) {
return *this;
}
bool Run::operator==(const Run &other) {
return *m_goniometer == *other.m_goniometer &&
LogManager::operator==(other) &&
this->m_histoBins == other.m_histoBins;
}
bool Run::operator!=(const Run &other) { return !this->operator==(other); }
boost::shared_ptr<Run> Run::clone() {
auto clone = boost::make_shared<Run>();
for (auto property : this->m_manager->getProperties()) {
......
......@@ -28,6 +28,7 @@ namespace {
class ConcreteProperty : public Property {
public:
ConcreteProperty() : Property("Test", typeid(int)) {}
ConcreteProperty(std::string name) : Property(name, typeid(int)) {}
ConcreteProperty *clone() const override {
return new ConcreteProperty(*this);
}
......@@ -35,15 +36,21 @@ public:
std::string getDefault() const override {
return "getDefault() is not implemented in this class";
}
std::string value() const override { return "Nothing"; }
std::string value() const override { return m_value; }
Json::Value valueAsJson() const override { return Json::Value(); }
std::string setValue(const std::string &) override { return ""; }
std::string setValue(const std::string &value) override {
m_value = value;
return m_value;
}
std::string setValueFromJson(const Json::Value &) override { return ""; }
std::string setValueFromProperty(const Property &) override { return ""; }
std::string setDataItem(const boost::shared_ptr<DataItem>) override {
return "";
}
Property &operator+=(Property const *) override { return *this; }
private:
std::string m_value = "Nothing";
};
template <typename T>
......@@ -185,7 +192,7 @@ public:
runInfo.addProperty(p);
TS_ASSERT_EQUALS(runInfo.getMemorySize(),
sizeof(ConcreteProperty) + sizeof(void *));
p->getMemorySize() + sizeof(Property *));
}
void test_GetTimeSeriesProperty_Returns_TSP_When_Log_Exists() {
......@@ -530,6 +537,48 @@ public:
run3.loadNexus(th.file.get(), "");
}
void test_operator_equals() {
LogManager a;
LogManager b;
a.addProperty(std::make_unique<ConcreteProperty>());
b.addProperty(std::make_unique<ConcreteProperty>());
TS_ASSERT_EQUALS(a, b);
TS_ASSERT(!(a != b));
}
void test_not_equals_when_number_of_entries_differ() {
LogManager a;
LogManager b;
a.addProperty(std::make_unique<ConcreteProperty>("a1"));
b.addProperty(std::make_unique<ConcreteProperty>("b1"));
b.addProperty(std::make_unique<ConcreteProperty>("b2"));
TS_ASSERT_DIFFERS(a, b);
TS_ASSERT(!(a == b));
}
void test_not_equals_when_values_differ() {
LogManager a;
LogManager b;
auto prop1 = std::make_unique<ConcreteProperty>();
auto prop2 = std::make_unique<ConcreteProperty>();
prop2->setValue("another_value");
a.addProperty(std::move(prop1));
b.addProperty(std::move(prop2));
TS_ASSERT_DIFFERS(a, b);
TS_ASSERT(!(a == b));
}
void test_not_equals_when_keys_differ() {
LogManager a;
LogManager b;
auto prop1 = std::make_unique<ConcreteProperty>("Temp");
auto prop2 = std::make_unique<ConcreteProperty>("Pressure");
a.addProperty(std::move(prop1));
b.addProperty(std::move(prop2));
TS_ASSERT_DIFFERS(a, b);
TS_ASSERT(!(a == b));
}
private:
template <typename T>
void doTest_GetPropertyAsSingleValue_SingleType(const T value) {
......
......@@ -609,6 +609,65 @@ public:
TS_ASSERT_DELTA(run3.getProtonCharge(), 1.234, 1e-5);
}
void test_equals_when_runs_empty() {
Run a{};
Run b{a};
TS_ASSERT_EQUALS(a, b);
}
void test_equals_when_runs_identical() {
Run a{};
a.addProperty(std::make_unique<ConcreteProperty>());
const DblMatrix rotation_x{
{1, 0, 0, 0, 0, -1, 0, 1, 0}}; // 90 degrees around x axis
a.setGoniometer(Goniometer{rotation_x}, false /*do not use log angles*/);
a.storeHistogramBinBoundaries({1, 2, 3, 4});
Run b{a};
TS_ASSERT_EQUALS(a, b);
TS_ASSERT(!(a != b));
}
void test_not_equal_when_histogram_bin_boundaries_differ() {
Run a{};
a.addProperty(std::make_unique<ConcreteProperty>());
DblMatrix rotation_x{
{1, 0, 0, 0, 0, -1, 0, 1, 0}}; // 90 degrees around x axis
a.setGoniometer(Goniometer{rotation_x}, false /*do not use log angles*/);
a.storeHistogramBinBoundaries({1, 2, 3, 4});
Run b{a};
b.storeHistogramBinBoundaries({0, 2, 3, 4});
TS_ASSERT_DIFFERS(a, b);
TS_ASSERT(!(a == b));
}
void test_not_equal_when_properties_differ() {
Run a{};
a.addProperty(std::make_unique<ConcreteProperty>());
DblMatrix rotation_x{
{1, 0, 0, 0, 0, -1, 0, 1, 0}}; // 90 degrees around x axis
a.setGoniometer(Goniometer{rotation_x}, false /*do not use log angles*/);
a.storeHistogramBinBoundaries({1, 2, 3, 4});
Run b{a};
b.removeProperty("Test");
TS_ASSERT_DIFFERS(a, b);
TS_ASSERT(!(a == b));
}
void test_not_equal_when_goniometer_differ() {
Run a{};
a.addProperty(std::make_unique<ConcreteProperty>());
DblMatrix rotation_x{
{1, 0, 0, 0, 0, -1, 0, 1, 0}}; // 90 degrees around x axis
a.setGoniometer(Goniometer{rotation_x}, false /*do not use log angles*/);
a.storeHistogramBinBoundaries({1, 2, 3, 4});
Run b{a};
Mantid::Kernel::DblMatrix rotation_y{
{0, 0, 1, 0, 1, 0, -1, 0, 0}}; // 90 degrees around y axis
b.setGoniometer(Goniometer{rotation_y}, false /*do not use log angles*/);
TS_ASSERT_DIFFERS(a, b);
TS_ASSERT(!(a == b));
}
private:
/// Testing bins
std::vector<double> m_test_energy_bins;
......
......@@ -97,6 +97,8 @@ public:
void loadNexus(::NeXus::File *file, const std::string &group);
/// the method reports if the goniometer was defined with some parameters
bool isDefined() const;
bool operator==(const Goniometer &other) const;
bool operator!=(const Goniometer &other) const;
private:
/// Global rotation matrix of the goniometer
......
......@@ -92,6 +92,14 @@ void Goniometer::setR(Kernel::DblMatrix rot) {
/// Function reports if the goniometer is defined
bool Goniometer::isDefined() const { return initFromR || (!motors.empty()); }
bool Goniometer::operator==(const Goniometer &other) const {
return this->R == other.R;
}
bool Goniometer::operator!=(const Goniometer &other) const {
return this->R != other.R;
}
/// Return information about axes.
/// @return str :: string that contains on each line one motor information (axis
/// name, direction, sense, angle)
......
......@@ -255,4 +255,24 @@ public:
// Rotation matrices should be the same after loading
TS_ASSERT_EQUALS(G2.getR(), G.getR());
}
void test_equals_when_identical() {
Mantid::Kernel::DblMatrix rotation_x{
{1, 0, 0, 0, 0, -1, 0, 1, 0}}; // 90 degrees around x axis
Goniometer a(rotation_x);
Goniometer b(rotation_x);
TS_ASSERT_EQUALS(a, b);
TS_ASSERT(!(a != b));
}
void test_not_equals_when_not_identical() {
Mantid::Kernel::DblMatrix rotation_x{
{1, 0, 0, 0, 0, -1, 0, 1, 0}}; // 90 degrees around x axis
Mantid::Kernel::DblMatrix rotation_y{
{0, 0, 1, 0, 1, 0, -1, 0, 0}}; // 90 degrees around y axis
Goniometer a(rotation_x);
Goniometer b(rotation_y);
TS_ASSERT_DIFFERS(a, b);
TS_ASSERT(!(a == b));
}
};
......@@ -108,6 +108,9 @@ public:
/// Return the property manager serialized as a json object.
::Json::Value asJson(bool withDefaultValues = false) const override;
bool operator==(const PropertyManager &other) const;
bool operator!=(const PropertyManager &other) const;
protected:
friend class PropertyManagerOwner;
......
......@@ -583,6 +583,22 @@ std::string PropertyManager::asString(bool withDefaultValues) const {
return jsonMap;
}
bool PropertyManager::operator==(const PropertyManager &other) const {
if (other.m_properties.size() != m_properties.size())
return false;
for (const auto & [ key, value ] : m_properties) {
if (other.m_properties.count(key) != 1)
return false;
if (*other.m_properties.at(key) != *value)
return false;
}
return true;
}
bool PropertyManager::operator!=(const PropertyManager &other) const {
return !this->operator==(other);
}
//-----------------------------------------------------------------------------------------------
/** Get a property by name
* @param name :: The name of the property (case insensitive)
......
......@@ -659,6 +659,43 @@ public:
TS_ASSERT_EQUALS(i, 33);
}
void test_operator_equals_same_contents() {
PropertyManager a;
PropertyManager b;
a.declareProperty("Prop1", 10);
b.declareProperty("Prop1", 10);
TS_ASSERT_EQUALS(a, b);
TS_ASSERT(!(a != b));
}
void test_operator_not_equals_different_sizes() {
PropertyManager a;
PropertyManager b;
b.declareProperty("Prop1", 10);
TSM_ASSERT_DIFFERS("Unequal sizes", a, b);
TSM_ASSERT("Unequal sizes", !(a == b));
}
void test_operator_not_equals_different_keys() {
PropertyManager a;
PropertyManager b;
a.declareProperty("Prop1", 1);
b.declareProperty("Prop2", 1);
TSM_ASSERT_DIFFERS("Different Keys", a, b);
TSM_ASSERT("Different Keys", !(a == b));
}
void test_operator_not_equals_different_vaues() {
PropertyManager a;
PropertyManager b;
a.declareProperty("Prop1", 1);
b.declareProperty("Prop1", 2);
TSM_ASSERT_DIFFERS("Different Values", a, b);
TSM_ASSERT("Different Values", !(a == b));
}
private:
std::unique_ptr<PropertyManagerHelper> manager;
};
......
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