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

Compactise AlgorithmHistory printout. Re #179.

parent 1a2e409a
No related branches found
No related tags found
No related merge requests found
...@@ -18,8 +18,6 @@ AlgorithmHistory::AlgorithmHistory(const Algorithm* const alg, const dateAndTime ...@@ -18,8 +18,6 @@ AlgorithmHistory::AlgorithmHistory(const Algorithm* const alg, const dateAndTime
m_name(alg->name()), m_version(alg->version()), m_executionDate(start), m_executionDuration(duration) m_name(alg->name()), m_version(alg->version()), m_executionDate(start), m_executionDuration(duration)
{ {
// Now go through the algorithm's properties and create the PropertyHistory objects. // Now go through the algorithm's properties and create the PropertyHistory objects.
// Would like to have PropertyManager & Property do this but can't because PropertyHistory has to know
// about Workspace Properties, which is in API whereas PropertyManager/Property are in Kernel.
const std::vector<Property*>& properties = alg->getProperties(); const std::vector<Property*>& properties = alg->getProperties();
std::vector<Property*>::const_iterator it; std::vector<Property*>::const_iterator it;
for (it = properties.begin(); it != properties.end(); ++it) for (it = properties.begin(); it != properties.end(); ++it)
...@@ -58,8 +56,8 @@ void AlgorithmHistory::addExecutionInfo(const dateAndTime& start, const double& ...@@ -58,8 +56,8 @@ void AlgorithmHistory::addExecutionInfo(const dateAndTime& start, const double&
*/ */
void AlgorithmHistory::printSelf(std::ostream& os, const int indent)const void AlgorithmHistory::printSelf(std::ostream& os, const int indent)const
{ {
os << std::string(indent,' ') << "Name : " << m_name << std::endl; os << std::string(indent,' ') << "Algorithm: " << m_name;
os << std::string(indent,' ') << "Version: " << m_version << std::endl; os << std::string(indent,' ') << " v" << m_version << std::endl;
if (m_executionDate) if (m_executionDate)
{ {
char buffer [25]; char buffer [25];
...@@ -72,7 +70,6 @@ void AlgorithmHistory::printSelf(std::ostream& os, const int indent)const ...@@ -72,7 +70,6 @@ void AlgorithmHistory::printSelf(std::ostream& os, const int indent)const
for (it=m_properties.begin();it!=m_properties.end();it++) for (it=m_properties.begin();it!=m_properties.end();it++)
{ {
os << std::endl;
it->printSelf( os, indent+2 ); it->printSelf( os, indent+2 );
} }
} }
......
...@@ -33,21 +33,19 @@ class AlgorithmHistoryTest : public CxxTest::TestSuite ...@@ -33,21 +33,19 @@ class AlgorithmHistoryTest : public CxxTest::TestSuite
public: public:
void testPopulate() void testPopulate()
{ {
std::string correctOutput = "Name : testalg\n"; std::string correctOutput = "Algorithm: testalg ";
correctOutput = correctOutput + "Version: 1\n"; correctOutput = correctOutput + "v1\n";
correctOutput = correctOutput + "Execution Date: 2008-Feb-29 09:54:49\n"; correctOutput = correctOutput + "Execution Date: 2008-Feb-29 09:54:49\n";
correctOutput = correctOutput + "Execution Duration: 14 seconds\n"; correctOutput = correctOutput + "Execution Duration: 14 seconds\n";
correctOutput = correctOutput + "Parameters:\n"; correctOutput = correctOutput + "Parameters:\n";
correctOutput = correctOutput + "\n"; correctOutput = correctOutput + " Name: arg1_param, ";
correctOutput = correctOutput + " Name: arg1_param\n"; correctOutput = correctOutput + "Value: 20, ";
correctOutput = correctOutput + " Value: 20\n"; correctOutput = correctOutput + "Default?: No, ";
correctOutput = correctOutput + " isDefault: No\n"; correctOutput = correctOutput + "Direction: Input\n";
correctOutput = correctOutput + " Direction: Input\n"; correctOutput = correctOutput + " Name: arg2_param, ";
correctOutput = correctOutput + "\n"; correctOutput = correctOutput + "Value: 23, ";
correctOutput = correctOutput + " Name: arg2_param\n"; correctOutput = correctOutput + "Default?: Yes, ";
correctOutput = correctOutput + " Value: 23\n"; correctOutput = correctOutput + "Direction: N/A\n";
correctOutput = correctOutput + " isDefault: Yes\n";
correctOutput = correctOutput + " Direction: N/A\n";
//set the time //set the time
std::time_t rawtime; std::time_t rawtime;
......
...@@ -216,7 +216,7 @@ public: ...@@ -216,7 +216,7 @@ public:
TS_ASSERT_THROWS_NOTHING( s << C_WH ) TS_ASSERT_THROWS_NOTHING( s << C_WH )
// Check size (in bytes) of output // Check size (in bytes) of output
int i = s.tellp(); int i = s.tellp();
TS_ASSERT_LESS_THAN( 1350, i ) TS_ASSERT_LESS_THAN( 1200, i )
// Check first line // Check first line
s.seekp(0); s.seekp(0);
char c[21]; char c[21];
......
...@@ -50,10 +50,10 @@ PropertyHistory& PropertyHistory::operator=(const PropertyHistory& A) ...@@ -50,10 +50,10 @@ PropertyHistory& PropertyHistory::operator=(const PropertyHistory& A)
*/ */
void PropertyHistory::printSelf(std::ostream& os, const int indent) const void PropertyHistory::printSelf(std::ostream& os, const int indent) const
{ {
os << std::string(indent,' ') << "Name: " << m_name << std::endl; os << std::string(indent,' ') << "Name: " << m_name;
os << std::string(indent,' ') << "Value: " << m_value << std::endl; os << ", Value: " << m_value;
os << std::string(indent,' ') << "isDefault: "<< (m_isDefault ? "Yes" : "No") << std::endl; os << ", Default?: "<< (m_isDefault ? "Yes" : "No");
os << std::string(indent,' ') << "Direction: " << Kernel::Direction::asText(m_direction) << std::endl; os << ", Direction: " << Kernel::Direction::asText(m_direction) << std::endl;
} }
/** Prints a text representation /** Prints a text representation
......
...@@ -13,9 +13,9 @@ public: ...@@ -13,9 +13,9 @@ public:
void testPopulate() void testPopulate()
{ {
std::string correctOutput = "Name: arg1_param\n"; std::string correctOutput = "Name: arg1_param, ";
correctOutput = correctOutput + "Value: 20\n"; correctOutput = correctOutput + "Value: 20, ";
correctOutput = correctOutput + "isDefault: Yes\n"; correctOutput = correctOutput + "Default?: Yes, ";
correctOutput = correctOutput + "Direction: Input\n"; correctOutput = correctOutput + "Direction: Input\n";
// Not really much to test // Not really much to test
......
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