Newer
Older
#ifndef MANTID_REMOTEALGORITHMS_DOWNLOADREMOTEFILETEST_H_
#define MANTID_REMOTEALGORITHMS_DOWNLOADREMOTEFILETEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidAPI/AlgorithmManager.h"
#include "MantidKernel/ConfigService.h"
#include "MantidKernel/FacilityInfo.h"
#include "MantidRemoteAlgorithms/DownloadRemoteFile.h"
using namespace Mantid::RemoteAlgorithms;
class DownloadRemoteFileTest : 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 DownloadRemoteFileTest *createSuite() {
return new DownloadRemoteFileTest();
}
static void destroySuite(DownloadRemoteFileTest *suite) { delete suite; }
void test_algorithm() {
testAlg = Mantid::API::AlgorithmManager::Instance().create(
"DownloadRemoteFile", 1);
TS_ASSERT(testAlg);
TS_ASSERT_EQUALS(testAlg->name(), "DownloadRemoteFile");
TS_ASSERT_EQUALS(testAlg->version(), 1);
}
void test_castAlgorithm() {
// can create
boost::shared_ptr<DownloadRemoteFile> a;
TS_ASSERT(a = boost::make_shared<DownloadRemoteFile>());
// can cast to inherited interfaces and base classes
TS_ASSERT(
dynamic_cast<Mantid::RemoteAlgorithms::DownloadRemoteFile *>(a.get()));
TS_ASSERT(dynamic_cast<Mantid::API::Algorithm *>(a.get()));
TS_ASSERT(dynamic_cast<Mantid::Kernel::PropertyManagerOwner *>(a.get()));
TS_ASSERT(dynamic_cast<Mantid::API::IAlgorithm *>(a.get()));
TS_ASSERT(dynamic_cast<Mantid::Kernel::IPropertyManager *>(a.get()));
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
80
81
82
83
84
85
86
87
88
89
}
void test_init() {
if (!testAlg->isInitialized())
TS_ASSERT_THROWS_NOTHING(testAlg->initialize());
TS_ASSERT(testAlg->isInitialized());
DownloadRemoteFile dl;
TS_ASSERT_THROWS_NOTHING(dl.initialize());
}
// TODO: when we have a RemoteJobManager capable of creating
// algorithms for different types of compute resources (example:
// Fermi@SNS and SCARF@STFC), create different algorithms for them
void test_propertiesMissing() {
DownloadRemoteFile alg1;
TS_ASSERT_THROWS_NOTHING(alg1.initialize());
// Transaction id missing
TS_ASSERT_THROWS(alg1.setPropertyValue("ComputeResource", "missing!"),
std::invalid_argument);
TS_ASSERT_THROWS_NOTHING(
alg1.setPropertyValue("RemoteFileName", "file name"));
TS_ASSERT_THROWS(alg1.execute(), std::runtime_error);
TS_ASSERT(!alg1.isExecuted());
DownloadRemoteFile alg2;
TS_ASSERT_THROWS_NOTHING(alg2.initialize());
// file name missing
TS_ASSERT_THROWS(alg2.setPropertyValue("ComputeResource", "missing!"),
std::invalid_argument);
TS_ASSERT_THROWS_NOTHING(alg2.setPropertyValue("TransactionID", "id001"));
TS_ASSERT_THROWS(alg2.execute(), std::runtime_error);
TS_ASSERT(!alg2.isExecuted());
DownloadRemoteFile alg3;
TS_ASSERT_THROWS_NOTHING(alg3.initialize());
// compute resource missing
TS_ASSERT_THROWS_NOTHING(
alg3.setPropertyValue("RemoteFileName", "file name"));
TS_ASSERT_THROWS_NOTHING(alg3.setPropertyValue("TransactionID", "id001"));
TS_ASSERT_THROWS(alg3.execute(), std::runtime_error);
TS_ASSERT(!alg3.isExecuted());
}
void test_wrongProperty() {
DownloadRemoteFile dl;
TS_ASSERT_THROWS_NOTHING(dl.initialize();)
TS_ASSERT_THROWS(dl.setPropertyValue("Compute", "anything"),
std::runtime_error);
TS_ASSERT_THROWS(dl.setPropertyValue("TransID", "anything"),
std::runtime_error);
TS_ASSERT_THROWS(dl.setPropertyValue("FileName", "anything"),
std::runtime_error);
}
void test_propertiesOK() {
testFacilities.emplace_back("SNS", "Fermi");
testFacilities.emplace_back("ISIS", "SCARF@STFC");
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
const Mantid::Kernel::FacilityInfo &prevFac =
Mantid::Kernel::ConfigService::Instance().getFacility();
for (size_t fi = 0; fi < testFacilities.size(); fi++) {
const std::string facName = testFacilities[fi].first;
const std::string compName = testFacilities[fi].second;
Mantid::Kernel::ConfigService::Instance().setFacility(facName);
DownloadRemoteFile dl;
TS_ASSERT_THROWS_NOTHING(dl.initialize());
TS_ASSERT_THROWS_NOTHING(
dl.setPropertyValue("ComputeResource", compName));
TS_ASSERT_THROWS_NOTHING(
dl.setPropertyValue("TransactionID", "anything"));
TS_ASSERT_THROWS_NOTHING(
dl.setPropertyValue("RemoteFileName", "anything"));
// TODO: this would run the algorithm and do a remote
// connection. uncomment only when/if we have a mock up for this
// TS_ASSERT_THROWS(dl.execute(), std::exception);
TS_ASSERT(!dl.isExecuted());
}
Mantid::Kernel::ConfigService::Instance().setFacility(prevFac.name());
}
// TODO: void test_runOK() - with a mock when we can add it.
// ideally, with different compute resources to check the remote job
// manager factory, etc.
private:
Mantid::API::IAlgorithm_sptr testAlg;
std::vector<std::pair<std::string, std::string>> testFacilities;
};
#endif // MANTID_REMOTEALGORITHMS_DOWNLOADREMOTEFILETEST_H_