Skip to content
Snippets Groups Projects
Commit f1c0cb23 authored by Russell Taylor's avatar Russell Taylor
Browse files

Added a couple of tests for new Property method. Also corrected a bug with...

Added a couple of tests for new Property method. Also corrected a bug with isDefault flag for Workspace properties. Re #179.
parent 0309f68b
No related branches found
No related tags found
No related merge requests found
...@@ -111,6 +111,7 @@ public: ...@@ -111,6 +111,7 @@ public:
if ( ! value.empty() ) if ( ! value.empty() )
{ {
m_workspaceName = value; m_workspaceName = value;
Kernel::PropertyWithValue<boost::shared_ptr<TYPE> >::m_isDefault = false;
return true; return true;
} }
// Setting an empty workspace name is not allowed // Setting an empty workspace name is not allowed
......
...@@ -41,7 +41,7 @@ public: ...@@ -41,7 +41,7 @@ public:
correctOutput = correctOutput + "\n"; correctOutput = correctOutput + "\n";
correctOutput = correctOutput + " Name: arg1_param\n"; correctOutput = correctOutput + " Name: arg1_param\n";
correctOutput = correctOutput + " Value: 20\n"; correctOutput = correctOutput + " Value: 20\n";
correctOutput = correctOutput + " isDefault: Yes\n"; correctOutput = correctOutput + " isDefault: No\n";
correctOutput = correctOutput + " Direction: Input\n"; correctOutput = correctOutput + " Direction: Input\n";
correctOutput = correctOutput + "\n"; correctOutput = correctOutput + "\n";
correctOutput = correctOutput + " Name: arg2_param\n"; correctOutput = correctOutput + " Name: arg2_param\n";
......
...@@ -12,8 +12,8 @@ using namespace Mantid::Kernel; ...@@ -12,8 +12,8 @@ using namespace Mantid::Kernel;
using namespace Mantid::API; using namespace Mantid::API;
class WorkspacePropertyTest : public CxxTest::TestSuite class WorkspacePropertyTest : public CxxTest::TestSuite
{ {
//private test class - using this removes the dependency on the DataObjects library //private test class - using this removes the dependency on the DataObjects library
class WorkspaceTest: public Workspace class WorkspaceTest: public Workspace
{ {
...@@ -28,7 +28,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite ...@@ -28,7 +28,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite
virtual std::vector<double>& dataY(int const index) {return data;} virtual std::vector<double>& dataY(int const index) {return data;}
///Returns the error data ///Returns the error data
virtual std::vector<double>& dataE(int const index) {return data;} virtual std::vector<double>& dataE(int const index) {return data;}
virtual const std::vector<double>& dataX(int const index)const {return data;} virtual const std::vector<double>& dataX(int const index)const {return data;}
///Returns the y data ///Returns the y data
virtual const std::vector<double>& dataY(int const index)const {return data;} virtual const std::vector<double>& dataY(int const index)const {return data;}
...@@ -42,7 +42,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite ...@@ -42,7 +42,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite
///Sets the ErrorHelper for this spectra ///Sets the ErrorHelper for this spectra
virtual void setErrorHelper(int const index,const IErrorHelper* errorHelper) {} virtual void setErrorHelper(int const index,const IErrorHelper* errorHelper) {}
//Methods for getting data via python. Do not use for anything else! //Methods for getting data via python. Do not use for anything else!
///Returns the x data const ///Returns the x data const
virtual const std::vector<double>& getX(int const index) const {return data;} virtual const std::vector<double>& getX(int const index) const {return data;}
...@@ -50,7 +50,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite ...@@ -50,7 +50,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite
virtual const std::vector<double>& getY(int const index) const {return data;} virtual const std::vector<double>& getY(int const index) const {return data;}
///Returns the error const ///Returns the error const
virtual const std::vector<double>& getE(int const index) const {return data;} virtual const std::vector<double>& getE(int const index) const {return data;}
private: private:
std::vector<double> data; std::vector<double> data;
int dummy; int dummy;
...@@ -70,7 +70,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite ...@@ -70,7 +70,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite
virtual std::vector<double>& dataY(int const index) {return data;} virtual std::vector<double>& dataY(int const index) {return data;}
///Returns the error data ///Returns the error data
virtual std::vector<double>& dataE(int const index) {return data;} virtual std::vector<double>& dataE(int const index) {return data;}
virtual const std::vector<double>& dataX(int const index)const {return data;} virtual const std::vector<double>& dataX(int const index)const {return data;}
///Returns the y data ///Returns the y data
virtual const std::vector<double>& dataY(int const index)const {return data;} virtual const std::vector<double>& dataY(int const index)const {return data;}
...@@ -84,7 +84,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite ...@@ -84,7 +84,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite
///Sets the ErrorHelper for this spectra ///Sets the ErrorHelper for this spectra
virtual void setErrorHelper(int const index,const IErrorHelper* errorHelper) {} virtual void setErrorHelper(int const index,const IErrorHelper* errorHelper) {}
//Methods for getting data via python. Do not use for anything else! //Methods for getting data via python. Do not use for anything else!
///Returns the x data const ///Returns the x data const
virtual const std::vector<double>& getX(int const index) const {return data;} virtual const std::vector<double>& getX(int const index) const {return data;}
...@@ -92,7 +92,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite ...@@ -92,7 +92,7 @@ class WorkspacePropertyTest : public CxxTest::TestSuite
virtual const std::vector<double>& getY(int const index) const {return data;} virtual const std::vector<double>& getY(int const index) const {return data;}
///Returns the error const ///Returns the error const
virtual const std::vector<double>& getE(int const index) const {return data;} virtual const std::vector<double>& getE(int const index) const {return data;}
private: private:
std::vector<double> data; std::vector<double> data;
int dummy; int dummy;
...@@ -117,7 +117,7 @@ public: ...@@ -117,7 +117,7 @@ public:
{ {
TS_ASSERT_THROWS( WorkspaceProperty<Workspace>("test","",3), std::out_of_range ) TS_ASSERT_THROWS( WorkspaceProperty<Workspace>("test","",3), std::out_of_range )
} }
void testValue() void testValue()
{ {
TS_ASSERT( ! wsp1->value().compare("ws1") ) TS_ASSERT( ! wsp1->value().compare("ws1") )
...@@ -152,7 +152,7 @@ public: ...@@ -152,7 +152,7 @@ public:
TS_ASSERT_THROWS_NOTHING(space = WorkspaceFactory::Instance().create("WorkspacePropertyTest") ); TS_ASSERT_THROWS_NOTHING(space = WorkspaceFactory::Instance().create("WorkspacePropertyTest") );
TS_ASSERT_THROWS_NOTHING( AnalysisDataService::Instance().add("ws1", space) ); TS_ASSERT_THROWS_NOTHING( AnalysisDataService::Instance().add("ws1", space) );
TS_ASSERT( wsp1->isValid() ) TS_ASSERT( wsp1->isValid() )
// Put workspace of wrong type and check validation fails // Put workspace of wrong type and check validation fails
TS_ASSERT_THROWS_NOTHING( AnalysisDataService::Instance().add("ws3", space) ); TS_ASSERT_THROWS_NOTHING( AnalysisDataService::Instance().add("ws3", space) );
TS_ASSERT( ! wsp3->isValid() ) TS_ASSERT( ! wsp3->isValid() )
...@@ -169,18 +169,43 @@ public: ...@@ -169,18 +169,43 @@ public:
TS_ASSERT_EQUALS( vals.size(), 2 ) TS_ASSERT_EQUALS( vals.size(), 2 )
TS_ASSERT_EQUALS( vals[0], "ws1" ) TS_ASSERT_EQUALS( vals[0], "ws1" )
TS_ASSERT_EQUALS( vals[1], "ws3" ) TS_ASSERT_EQUALS( vals[1], "ws3" )
TS_ASSERT( wsp2->allowedValues().empty() ) TS_ASSERT( wsp2->allowedValues().empty() )
TS_ASSERT_THROWS_NOTHING( vals = wsp3->allowedValues() ) TS_ASSERT_THROWS_NOTHING( vals = wsp3->allowedValues() )
TS_ASSERT_EQUALS( vals.size(), 2 ) TS_ASSERT_EQUALS( vals.size(), 2 )
} }
void testCreateHistory()
{
PropertyHistory history = wsp1->createHistory();
TS_ASSERT_EQUALS( history.name(), "workspace1" )
TS_ASSERT_EQUALS( history.value(), "ws1" )
TS_ASSERT( ! history.isDefault() )
TS_ASSERT_EQUALS( history.type(), wsp1->type() )
TS_ASSERT_EQUALS( history.direction(), 0 )
PropertyHistory history2 = wsp2->createHistory();
TS_ASSERT_EQUALS( history2.name(), "workspace2" )
TS_ASSERT_EQUALS( history2.value(), "ws2" )
TS_ASSERT( ! history2.isDefault() )
TS_ASSERT_EQUALS( history2.type(), wsp2->type() )
TS_ASSERT_EQUALS( history2.direction(), 1 )
PropertyHistory history3 = wsp3->createHistory();
TS_ASSERT_EQUALS( history3.name(), "workspace3" )
TS_ASSERT_EQUALS( history3.value(), "ws3" )
TS_ASSERT( history3.isDefault() )
TS_ASSERT_EQUALS( history3.type(), wsp3->type() )
TS_ASSERT_EQUALS( history3.direction(), 2 )
}
void testStore() void testStore()
{ {
// This is an input workspace so should return false // This is an input workspace so should return false
TS_ASSERT( ! wsp1->store() ) TS_ASSERT( ! wsp1->store() )
// Since no workspace has been assigned to this output property, it should throw // Since no workspace has been assigned to this output property, it should throw
TS_ASSERT_THROWS( wsp2->store(), std::runtime_error ) TS_ASSERT_THROWS( wsp2->store(), std::runtime_error )
// So now create and assign the workspace and test again // So now create and assign the workspace and test again
...@@ -192,7 +217,7 @@ public: ...@@ -192,7 +217,7 @@ public:
Workspace_sptr storedspace; Workspace_sptr storedspace;
TS_ASSERT_THROWS_NOTHING( storedspace = AnalysisDataService::Instance().retrieve("ws2") ) TS_ASSERT_THROWS_NOTHING( storedspace = AnalysisDataService::Instance().retrieve("ws2") )
TS_ASSERT( ! storedspace->id().compare("WorkspacePropTest") ) TS_ASSERT( ! storedspace->id().compare("WorkspacePropTest") )
// This one should pass // This one should pass
TS_ASSERT( wsp3->store() ) TS_ASSERT( wsp3->store() )
...@@ -208,7 +233,7 @@ public: ...@@ -208,7 +233,7 @@ public:
TS_ASSERT_EQUALS( wsp2->direction(), 1 ) TS_ASSERT_EQUALS( wsp2->direction(), 1 )
TS_ASSERT_EQUALS( wsp3->direction(), 2 ) TS_ASSERT_EQUALS( wsp3->direction(), 2 )
} }
private: private:
WorkspaceProperty<Workspace> *wsp1; WorkspaceProperty<Workspace> *wsp1;
WorkspaceProperty<Workspace> *wsp2; WorkspaceProperty<Workspace> *wsp2;
......
...@@ -199,15 +199,15 @@ public: ...@@ -199,15 +199,15 @@ public:
// isdefault is true for all parameters because a setProperty has not been called on them // isdefault is true for all parameters because a setProperty has not been called on them
TS_ASSERT_EQUALS(C_AP[0].name(),"InWS_1"); TS_ASSERT_EQUALS(C_AP[0].name(),"InWS_1");
TS_ASSERT_EQUALS(C_AP[0].value(),"A"); TS_ASSERT_EQUALS(C_AP[0].value(),"A");
TS_ASSERT_EQUALS(C_AP[0].isDefault(),true); TS_ASSERT_EQUALS(C_AP[0].isDefault(),false);
TS_ASSERT_EQUALS(C_AP[0].direction(),0); TS_ASSERT_EQUALS(C_AP[0].direction(),0);
TS_ASSERT_EQUALS(C_AP[1].name(),"InWS_2"); TS_ASSERT_EQUALS(C_AP[1].name(),"InWS_2");
TS_ASSERT_EQUALS(C_AP[1].value(),"B"); TS_ASSERT_EQUALS(C_AP[1].value(),"B");
TS_ASSERT_EQUALS(C_AP[1].isDefault(),true); TS_ASSERT_EQUALS(C_AP[1].isDefault(),false);
TS_ASSERT_EQUALS(C_AP[1].direction(),0); TS_ASSERT_EQUALS(C_AP[1].direction(),0);
TS_ASSERT_EQUALS(C_AP[2].name(),"InoutWS"); TS_ASSERT_EQUALS(C_AP[2].name(),"InoutWS");
TS_ASSERT_EQUALS(C_AP[2].value(),"C"); TS_ASSERT_EQUALS(C_AP[2].value(),"C");
TS_ASSERT_EQUALS(C_AP[2].isDefault(),true); TS_ASSERT_EQUALS(C_AP[2].isDefault(),false);
TS_ASSERT_EQUALS(C_AP[2].direction(),2); TS_ASSERT_EQUALS(C_AP[2].direction(),2);
// Test streamed output. // Test streamed output.
......
...@@ -67,7 +67,6 @@ public: ...@@ -67,7 +67,6 @@ public:
virtual const std::vector<std::string> allowedValues() const; virtual const std::vector<std::string> allowedValues() const;
/// Create a PropertyHistory object representing the current state of the Property.
virtual const PropertyHistory createHistory() const; virtual const PropertyHistory createHistory() const;
protected: protected:
......
...@@ -114,6 +114,7 @@ const std::vector<std::string> Property::allowedValues() const ...@@ -114,6 +114,7 @@ const std::vector<std::string> Property::allowedValues() const
return std::vector<std::string>(); return std::vector<std::string>();
} }
/// Create a PropertyHistory object representing the current state of the Property.
const PropertyHistory Property::createHistory() const const PropertyHistory Property::createHistory() const
{ {
return PropertyHistory(this->name(),this->value(),this->type(),this->isDefault()); return PropertyHistory(this->name(),this->value(),this->type(),this->isDefault());
......
...@@ -23,7 +23,7 @@ public: ...@@ -23,7 +23,7 @@ public:
{ {
p = new PropertyHelper; p = new PropertyHelper;
} }
void testName() void testName()
{ {
TS_ASSERT( ! p->name().compare("Test") ) TS_ASSERT( ! p->name().compare("Test") )
...@@ -46,7 +46,7 @@ public: ...@@ -46,7 +46,7 @@ public:
TS_ASSERT( ! p->type().compare("i") ) TS_ASSERT( ! p->type().compare("i") )
#else #else
TS_ASSERT( ! p->type().compare("int") ) TS_ASSERT( ! p->type().compare("int") )
#endif #endif
} }
void testIsValid() void testIsValid()
...@@ -70,10 +70,20 @@ public: ...@@ -70,10 +70,20 @@ public:
{ {
TS_ASSERT( p->allowedValues().empty() ) TS_ASSERT( p->allowedValues().empty() )
} }
void testCreateHistory()
{
PropertyHistory history = p->createHistory();
TS_ASSERT_EQUALS( history.name(), "Test" )
TS_ASSERT_EQUALS( history.value(), "Nothing" )
TS_ASSERT( history.isDefault() )
TS_ASSERT_EQUALS( history.type(), p->type() )
TS_ASSERT_EQUALS( history.direction(), 99 )
}
private: private:
Property *p; Property *p;
}; };
#endif /*PROPERTYTEST_H_*/ #endif /*PROPERTYTEST_H_*/
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