Newer
Older
#ifndef LOG_MANAGER_TEST_H_
#define LOG_MANAGER_TEST_H_
#include "MantidAPI/LogManager.h"
#include "MantidKernel/Exception.h"
#include "MantidKernel/Matrix.h"
#include "MantidKernel/Property.h"
#include "MantidKernel/TimeSeriesProperty.h"
#include "MantidKernel/V3D.h"
#include <cxxtest/TestSuite.h>
#include "MantidTestHelpers/NexusTestHelper.h"
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
#include "MantidGeometry/Instrument/Goniometer.h"
using namespace Mantid::Kernel;
using namespace Mantid::API;
using namespace Mantid::Geometry;
// Helper class
namespace
{
class ConcreteProperty : public Property
{
public:
ConcreteProperty() : Property( "Test", typeid( int ) ) {}
ConcreteProperty* clone() const { return new ConcreteProperty(*this); }
bool isDefault() const { return true; }
std::string getDefault() const { return "getDefault() is not implemented in this class"; }
std::string value() const { return "Nothing"; }
std::string setValue( const std::string& ) { return ""; }
std::string setValueFromProperty( const Property& ) { return ""; }
std::string setDataItem(const boost::shared_ptr<DataItem>) { return ""; }
Property& operator+=( Property const * ) { return *this; }
};
void addTestTimeSeries(LogManager & run, const std::string & name)
{
auto timeSeries = new TimeSeriesProperty<double>(name);
timeSeries->addValue("2012-07-19T16:17:00",2);
timeSeries->addValue("2012-07-19T16:17:10",3);
timeSeries->addValue("2012-07-19T16:17:20",4);
timeSeries->addValue("2012-07-19T16:17:30",5);
timeSeries->addValue("2012-07-19T16:17:40",6);
timeSeries->addValue("2012-07-19T16:17:50",20);
timeSeries->addValue("2012-07-19T16:18:00",21);
timeSeries->addValue("2012-07-19T16:18:10",22);
timeSeries->addValue("2012-07-19T16:19:20",23);
timeSeries->addValue("2012-07-19T16:19:20",24);
run.addProperty(timeSeries);
}
}
void addTimeSeriesEntry(LogManager & runInfo, std::string name, double val)
{
TimeSeriesProperty<double> * tsp;
tsp = new TimeSeriesProperty<double>(name);
tsp->addValue("2011-05-24T00:00:00", val);
runInfo.addProperty(tsp);
}
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
class LogManagerTest : public CxxTest::TestSuite
{
public:
void testAddGetData()
{
LogManager runInfo;
Property *p = new ConcreteProperty();
TS_ASSERT_THROWS_NOTHING( runInfo.addProperty(p) );
Property *pp = NULL;
TS_ASSERT_THROWS_NOTHING( pp = runInfo.getProperty("Test") );
TS_ASSERT_EQUALS( p, pp );
TS_ASSERT( ! pp->name().compare("Test") );
TS_ASSERT( dynamic_cast<ConcreteProperty*>(pp) );
TS_ASSERT_THROWS( pp = runInfo.getProperty("NotThere"), Exception::NotFoundError );
std::vector< Property* > props = runInfo.getProperties();
TS_ASSERT( ! props.empty() );
TS_ASSERT_EQUALS( props.size(), 1 );
TS_ASSERT( ! props[0]->name().compare("Test") );
TS_ASSERT( dynamic_cast<ConcreteProperty*>(props[0]) );
}
void testRemoveLogData()
{
LogManager runInfo;
Property *p = new ConcreteProperty();
TS_ASSERT_THROWS_NOTHING( runInfo.addProperty(p) );
TS_ASSERT_THROWS_NOTHING( runInfo.removeProperty("Test") );
TS_ASSERT_EQUALS( runInfo.getProperties().size(), 0 );
}
void testStartTime()
{
LogManager runInfo;
// Nothing there yet
TS_ASSERT_THROWS( runInfo.startTime(), std::runtime_error );
// Add run_start and see that get picked up
const std::string run_start("2013-12-19T13:38:00");
auto run_start_prop = new PropertyWithValue<std::string>("run_start",run_start);
runInfo.addProperty(run_start_prop);
TS_ASSERT_EQUALS( runInfo.startTime(), DateAndTime(run_start) );
// Add start_time and see that get picked up in preference
const std::string start_time("2013-12-19T13:40:00");
auto start_time_prop = new PropertyWithValue<std::string>("start_time",start_time);
runInfo.addProperty(start_time_prop);
TS_ASSERT_EQUALS( runInfo.startTime(), DateAndTime(start_time) );
// But get back run_start again if start_time is equal to the epoch
const std::string epoch("1990-01-01T00:00:00");
start_time_prop->setValue(epoch);
TS_ASSERT_EQUALS( runInfo.startTime(), DateAndTime(run_start) );
// And back to failure if they're both that
run_start_prop->setValue(epoch);
TS_ASSERT_THROWS( runInfo.startTime(), std::runtime_error );
// Set run_start back to valid value and make start_time contain nonsense
run_start_prop->setValue(run_start);
start_time_prop->setValue("__");
TS_ASSERT_EQUALS( runInfo.startTime(), DateAndTime(run_start) );
// Now make start_time a completely different property type
runInfo.removeProperty("start_time");
runInfo.addProperty(new PropertyWithValue<double>("start_time",3.33));
TS_ASSERT_EQUALS( runInfo.startTime(), DateAndTime(run_start) );
// Now make run_start something invalid
run_start_prop->setValue("notADate");
TS_ASSERT_THROWS( runInfo.startTime(), std::runtime_error );
// And check things if it's the wrong property type
runInfo.removeProperty("run_start");
addTimeSeriesEntry(runInfo,"run_start",4.44);
TS_ASSERT_THROWS( runInfo.startTime(), std::runtime_error );
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
void testEndTime()
{
LogManager runInfo;
// Nothing there yet
TS_ASSERT_THROWS( runInfo.endTime(), std::runtime_error );
// Add run_end and see that get picked up
const std::string run_end("2013-12-19T13:38:00");
auto run_end_prop = new PropertyWithValue<std::string>("run_end",run_end);
runInfo.addProperty(run_end_prop);
TS_ASSERT_EQUALS( runInfo.endTime(), DateAndTime(run_end) );
// Add end_time and see that get picked up in preference
const std::string end_time("2013-12-19T13:40:00");
auto end_time_prop = new PropertyWithValue<std::string>("end_time",end_time);
runInfo.addProperty(end_time_prop);
TS_ASSERT_EQUALS( runInfo.endTime(), DateAndTime(end_time) );
// Set run_end back to valid value and make end_time contain nonsense
run_end_prop->setValue(run_end);
end_time_prop->setValue("__");
TS_ASSERT_EQUALS( runInfo.endTime(), DateAndTime(run_end) );
// Now make end_time a completely different property type
runInfo.removeProperty("end_time");
runInfo.addProperty(new PropertyWithValue<double>("end_time",3.33));
TS_ASSERT_EQUALS( runInfo.endTime(), DateAndTime(run_end) );
// Now make run_end something invalid
run_end_prop->setValue("notADate");
TS_ASSERT_THROWS( runInfo.endTime(), std::runtime_error );
// And check things if it's the wrong property type
runInfo.removeProperty("run_end");
addTimeSeriesEntry(runInfo,"run_end",4.44);
TS_ASSERT_THROWS( runInfo.endTime(), std::runtime_error );
}
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
void testMemory()
{
LogManager runInfo;
TS_ASSERT_EQUALS( runInfo.getMemorySize(), 0);
Property *p = new ConcreteProperty();
runInfo.addProperty(p);
TS_ASSERT_EQUALS( runInfo.getMemorySize(), sizeof(ConcreteProperty) + sizeof( void *));
}
void test_GetTimeSeriesProperty_Returns_TSP_When_Log_Exists()
{
LogManager runInfo;
const std::string & name = "double_time_series";
const double value = 10.9;
addTimeSeriesEntry(runInfo, name, value);
TimeSeriesProperty<double> * tsp(NULL);
TS_ASSERT_THROWS_NOTHING(tsp = runInfo.getTimeSeriesProperty<double>(name));
TS_ASSERT_DELTA(tsp->firstValue(), value, 1e-12);
}
void test_GetTimeSeriesProperty_Throws_When_Log_Does_Not_Exist()
{
LogManager runInfo;
TS_ASSERT_THROWS(runInfo.getTimeSeriesProperty<double>("not_a_log"), Exception::NotFoundError);
}
void test_GetTimeSeriesProperty_Throws_When_Log_Exists_But_Is_Not_Correct_Type()
{
LogManager runInfo;
const std::string & name = "double_prop";
runInfo.addProperty(name, 5.6); // Standard double property
TS_ASSERT_THROWS(runInfo.getTimeSeriesProperty<double>(name), std::invalid_argument);
}
void test_GetPropertyAsType_Throws_When_Property_Does_Not_Exist()
{
LogManager runInfo;
TS_ASSERT_THROWS(runInfo.getPropertyValueAsType<double>("not_a_log"), Exception::NotFoundError);
}
void test_GetPropertyAsType_Returns_Expected_Value_When_Type_Is_Correct()
{
LogManager runInfo;
const std::string & name = "double_prop";
const double value = 5.6;
runInfo.addProperty(name, value); // Standard double property
double retrieved(0.0);
TS_ASSERT_THROWS_NOTHING(retrieved = runInfo.getPropertyValueAsType<double>(name));
TS_ASSERT_DELTA(retrieved, value, 1e-12);
}
void test_GetPropertyAsType_Throws_When_Requested_Type_Does_Not_Match()
{
LogManager runInfo;
runInfo.addProperty("double_prop", 6.7); // Standard double property
TS_ASSERT_THROWS(runInfo.getPropertyValueAsType<int>("double_prop"), std::invalid_argument);
}
void test_GetPropertyAsSingleValue_Throws_If_Type_Is_Not_Double_Or_TimeSeries_Double()
{
LogManager runInfo;
const std::string name = "int_prop";
runInfo.addProperty(name, 1); // Adds an int property
TS_ASSERT_THROWS(runInfo.getPropertyAsSingleValue(name), std::invalid_argument);
}
void test_GetPropertyAsSingleValue_Returns_Simple_Mean_By_Default_For_Time_Series()
{
LogManager runInfo;
const std::string name = "series";
addTestTimeSeries(runInfo, name);
const double expectedValue(13.0);
TS_ASSERT_DELTA(runInfo.getPropertyAsSingleValue(name), expectedValue, 1e-12);
}
void test_GetPropertyAsSingleValue_Returns_Correct_SingleValue_For_Each_StatisticType()
{
LogManager runInfo;
const std::string name = "series";
addTestTimeSeries(runInfo, name);
TS_ASSERT_DELTA(runInfo.getPropertyAsSingleValue(name, Math::Mean), 13.0, 1e-12);
TS_ASSERT_DELTA(runInfo.getPropertyAsSingleValue(name, Math::Minimum), 2.0, 1e-12);
TS_ASSERT_DELTA(runInfo.getPropertyAsSingleValue(name, Math::Maximum), 24.0, 1e-12);
TS_ASSERT_DELTA(runInfo.getPropertyAsSingleValue(name, Math::FirstValue), 2.0, 1e-12);
TS_ASSERT_DELTA(runInfo.getPropertyAsSingleValue(name, Math::LastValue), 24.0, 1e-12);
TS_ASSERT_DELTA(runInfo.getPropertyAsSingleValue(name, Math::Median), 13.0, 1e-12);
}
void test_GetPropertyAsSingleValue_Returns_Expected_Single_Value_On_Successive_Calls_With_Different_Stat_Types()
{
LogManager run;
const std::string name = "series";
addTestTimeSeries(run, name);
TS_ASSERT_EQUALS(run.getPropertyAsSingleValue(name,Math::Mean), 13.0);
TS_ASSERT_EQUALS(run.getPropertyAsSingleValue(name,Math::Mean), 13.0);
TS_ASSERT_EQUALS(run.getPropertyAsSingleValue(name,Math::Minimum), 2.0);
TS_ASSERT_EQUALS(run.getPropertyAsSingleValue(name,Math::Minimum), 2.0);
}
void test_GetPropertyAsSingleValue_Returns_Correct_Value_On_Second_Call_When_Log_Has_Been_Replaced()
{
LogManager runInfo;
const std::string name = "double";
double value(5.1);
runInfo.addProperty(name, value);
TS_ASSERT_EQUALS(runInfo.getPropertyAsSingleValue(name), value);
// Replace the log with a different value
value = 10.3;
runInfo.addProperty(name, value, /*overwrite*/true);
TS_ASSERT_EQUALS(runInfo.getPropertyAsSingleValue(name), value);
}
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
void test_clear()
{
// Set up a Run object with 3 properties in it (1 time series, 2 single value)
LogManager runInfo;
const std::string stringProp("aStringProp");
const std::string stringVal("testing");
runInfo.addProperty(stringProp,stringVal);
const std::string intProp("anIntProp");
runInfo.addProperty(intProp,99);
const std::string tspProp("tsp");
addTestTimeSeries(runInfo,"tsp");
// Check it's set up right
TS_ASSERT_EQUALS( runInfo.getProperties().size(), 3 );
auto tsp = runInfo.getTimeSeriesProperty<double>(tspProp);
TS_ASSERT_EQUALS( tsp->realSize(), 10 )
// Do the clearing work
TS_ASSERT_THROWS_NOTHING( runInfo.clearTimeSeriesLogs() );
// Check the time-series property is empty, but not the others
TS_ASSERT_EQUALS( runInfo.getProperties().size(), 3 );
TS_ASSERT_EQUALS( tsp->realSize(), 0 )
TS_ASSERT_EQUALS( runInfo.getPropertyValueAsType<std::string>(stringProp), stringVal );
TS_ASSERT_EQUALS( runInfo.getPropertyValueAsType<int>(intProp), 99 );
}
void clearOutdatedTimeSeriesLogValues()
{
// Set up a Run object with 3 properties in it (1 time series, 2 single value)
LogManager runInfo;
const std::string stringProp("aStringProp");
const std::string stringVal("testing");
runInfo.addProperty(stringProp,stringVal);
const std::string intProp("anIntProp");
runInfo.addProperty(intProp,99);
const std::string tspProp("tsp");
addTestTimeSeries(runInfo,"tsp");
// Check it's set up right
TS_ASSERT_EQUALS( runInfo.getProperties().size(), 3 );
auto tsp = runInfo.getTimeSeriesProperty<double>(tspProp);
TS_ASSERT_EQUALS( tsp->realSize(), 10 );
auto lastTime = tsp->lastTime();
auto lastValue = tsp->lastValue();
// Do the clearing work
TS_ASSERT_THROWS_NOTHING( runInfo.clearOutdatedTimeSeriesLogValues() );
// Check the time-series property has 1 entry, & the others are unchanged
TS_ASSERT_EQUALS( runInfo.getProperties().size(), 3 );
TS_ASSERT_EQUALS( tsp->realSize(), 1 );
TS_ASSERT_EQUALS( tsp->firstTime(), lastTime );
TS_ASSERT_EQUALS( tsp->firstValue(), lastValue );
TS_ASSERT_EQUALS( runInfo.getPropertyValueAsType<std::string>(stringProp), stringVal );
TS_ASSERT_EQUALS( runInfo.getPropertyValueAsType<int>(intProp), 99 );
}
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/** Save and load to NXS file */
void test_nexus()
{
NexusTestHelper th(true);
th.createFile("LogManagerTest.nxs");
LogManager run1;
addTimeSeriesEntry(run1, "double_series", 45.0);
run1.addProperty( new PropertyWithValue<int>("int_val", 1234) );
run1.addProperty( new PropertyWithValue<std::string>("string_val", "help_im_stuck_in_a_log_file") );
run1.addProperty( new PropertyWithValue<double>("double_val", 5678.9) );
addTimeSeriesEntry(run1, "phi", 12.3);
addTimeSeriesEntry(run1, "chi", 45.6);
addTimeSeriesEntry(run1, "omega", 78.9);
addTimeSeriesEntry(run1, "proton_charge", 78.9);
run1.saveNexus(th.file, "logs");
th.file->openGroup("logs", "NXgroup");
th.file->makeGroup("junk_to_ignore", "NXmaterial");
th.file->makeGroup("more_junk_to_ignore", "NXsample");
// ---- Now re-load the same and compare ------
th.reopenFile();
LogManager run2;
run2.loadNexus(th.file, "logs");
TS_ASSERT( run2.hasProperty("double_series") );
TS_ASSERT( run2.hasProperty("int_val") );
TS_ASSERT( run2.hasProperty("string_val") );
TS_ASSERT( run2.hasProperty("double_val") );
// This test both uses the goniometer axes AND looks up some values.
// Reload without opening the group (for backwards-compatible reading of old files)
LogManager run3;
th.file->openGroup("logs", "NXgroup");
run3.loadNexus(th.file, "");
TS_ASSERT( run3.hasProperty("double_series") );
TS_ASSERT( run3.hasProperty("int_val") );
TS_ASSERT( run3.hasProperty("string_val") );
TS_ASSERT( run3.hasProperty("double_val") );
}
/** Check for loading the old way of saving proton_charge */
void test_legacy_nexus()
{
NexusTestHelper th(true);
th.createFile("LogManagerTest.nxs");
th.file->makeGroup("sample", "NXsample", 1);
th.file->writeData("proton_charge", 1.234);
th.reopenFile();
th.file->openGroup("sample", "NXsample");
LogManager run3;
run3.loadNexus(th.file, "");
}
};
//---------------------------------------------------------------------------------------
// Performance test
//---------------------------------------------------------------------------------------
class LogManagerTestPerformance : public CxxTest::TestSuite
{
public:
// This pair of boilerplate methods prevent the suite being created statically
// This means the constructor isn't called when running other tests
static LogManagerTestPerformance *createSuite() { return new LogManagerTestPerformance(); }
static void destroySuite( LogManagerTestPerformance *suite ) { delete suite; }
LogManagerTestPerformance() : m_testRun(), m_propName("test")
{
addTestTimeSeries(m_testRun, m_propName);
}
void test_Accessing_Single_Value_From_Times_Series_A_Large_Number_Of_Times()
{
double value(0.0);
for(size_t i = 0; i < 20000; ++i)
{
value = m_testRun.getPropertyAsSingleValue(m_propName);
}
// Enure variable is used so that it is not optimised away by the compiler
value += 1.0;
}
LogManager m_testRun;
std::string m_propName;
};
#endif