Newer
Older
#ifndef MANTID_CONFIGSERVICETEST_H_
#define MANTID_CONFIGSERVICETEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidKernel/ConfigService.h"
#include "MantidKernel/Logger.h"
#include "MantidKernel/TestChannel.h"
#include "MantidKernel/FilterChannel.h"
#include "MantidKernel/InstrumentInfo.h"
#include "MantidKernel/FacilityInfo.h"
#include <Poco/Path.h>
#include <Poco/File.h>
#include <boost/shared_ptr.hpp>
Gigg, Martyn Anthony
committed
#include <fstream>
Michael Whitty
committed
#include <Poco/NObserver.h>
#include <Poco/SplitterChannel.h>
#include <Poco/Logger.h>
Janik Zikovsky
committed
#include <Poco/Environment.h>
#include <Poco/File.h>
Michael Whitty
committed
Russell Taylor
committed
using namespace Mantid::Kernel;
using Mantid::TestChannel;
class ConfigServiceTest : public CxxTest::TestSuite {
public:
void testLogging() {
// Force the setting to "notice" in case the developer uses a different
// level.
Mantid::Kernel::Logger::setLevelForAll(Poco::Message::PRIO_NOTICE);
Russell Taylor
committed
TS_ASSERT_THROWS_NOTHING(log1.debug("a debug string"));
TS_ASSERT_THROWS_NOTHING(log1.information("an information string"));
TS_ASSERT_THROWS_NOTHING(log1.information("a notice string"));
TS_ASSERT_THROWS_NOTHING(log1.warning("a warning string"));
TS_ASSERT_THROWS_NOTHING(log1.error("an error string"));
TS_ASSERT_THROWS_NOTHING(log1.fatal("a fatal string"));
TS_ASSERT_THROWS_NOTHING(
log1.fatal() << "A fatal message from the stream operators " << 4.5
log1.error() << "A error message from the stream operators " << -0.2
log1.warning() << "A warning message from the stream operators "
log1.notice() << "A notice message from the stream operators " << 0.0
log1.information() << "A information message from the stream operators "
log1.debug() << "A debug message from the stream operators " << 5684568
// checking the level - this is set above
TS_ASSERT(log1.is(Poco::Message::PRIO_DEBUG) == false); // debug
TS_ASSERT(log1.is(Poco::Message::PRIO_INFORMATION) == false); // information
TS_ASSERT(log1.is(Poco::Message::PRIO_NOTICE)); // notice
TS_ASSERT(log1.is(Poco::Message::PRIO_WARNING)); // warning
TS_ASSERT(log1.is(Poco::Message::PRIO_ERROR)); // error
TS_ASSERT(log1.is(Poco::Message::PRIO_FATAL)); // fatal
void testEnabled() {
// attempt some logging
Logger log1("logTestEnabled");
Russell Taylor
committed
TS_ASSERT(log1.getEnabled());
TS_ASSERT_THROWS_NOTHING(log1.fatal("a fatal string with enabled=true"));
TS_ASSERT_THROWS_NOTHING(
log1.fatal()
<< "A fatal message from the stream operators with enabled=true "
Russell Taylor
committed
TS_ASSERT_THROWS_NOTHING(log1.setEnabled(false));
TS_ASSERT(!log1.getEnabled());
TS_ASSERT_THROWS_NOTHING(log1.fatal("YOU SHOULD NEVER SEE THIS"));
log1.fatal() << "YOU SHOULD NEVER SEE THIS VIA A STREAM\n";);
Russell Taylor
committed
TS_ASSERT_THROWS_NOTHING(log1.setEnabled(true));
TS_ASSERT(log1.getEnabled());
TS_ASSERT_THROWS_NOTHING(log1.fatal("you are allowed to see this"));
log1.fatal() << "you are allowed to see this via a stream\n";);
void testLogLevelOffset() {
// attempt some logging
Logger log1("logTestOffset");
log1.setLevelOffset(0);
TS_ASSERT_THROWS_NOTHING(log1.fatal("a fatal string with offset 0"));
log1.setLevelOffset(-1);
TS_ASSERT_THROWS_NOTHING(
log1.fatal("a fatal string with offset -1 should still be fatal"));
TS_ASSERT_THROWS_NOTHING(log1.information(
"a information string with offset -1 should be notice"));
TS_ASSERT_THROWS_NOTHING(
log1.fatal("a fatal string with offset 1 should be critical"));
TS_ASSERT_THROWS_NOTHING(
log1.notice("a notice string with offset 1 should be information"));
TS_ASSERT_THROWS_NOTHING(
log1.debug("a debug string with offset 1 should be debug"));
TS_ASSERT_THROWS_NOTHING(
log1.fatal("a fatal string with offset 999 should be trace"));
TS_ASSERT_THROWS_NOTHING(
log1.notice("a notice string with offset 999 should be trace"));
TS_ASSERT_THROWS_NOTHING(
log1.debug("a debug string with offset 999 should be trace"));
TS_ASSERT_THROWS_NOTHING(ConfigService::Instance().setConsoleLogLevel(4));
TSM_ASSERT_THROWS(
"A false channel name for setFilterChannelLogLevel did not throw",
ConfigService::Instance().setFilterChannelLogLevel(
"AnIncorrectChannelName", 4),
std::invalid_argument);
TSM_ASSERT_THROWS(
"A correct channel name, but not a filterChannel for "
"setFilterChannelLogLevel did not throw",
ConfigService::Instance().setFilterChannelLogLevel("consoleChannel", 4),
std::invalid_argument);
void testLogLevelChangesWithFilteringLevels() {
Logger log1("testLogLevelChangesWithFilteringLevels");
TS_ASSERT_THROWS_NOTHING(ConfigService::Instance().setConsoleLogLevel(4));
TSM_ASSERT("The log level should be 4 after the filters are set to 4",
log1.is(4));
TS_ASSERT_THROWS_NOTHING(ConfigService::Instance().setConsoleLogLevel(3));
TSM_ASSERT("The log level should be 3 after the filters are set to 3",
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
167
168
169
170
171
172
173
log1.is(3));
// return back to previous values
TS_ASSERT_THROWS_NOTHING(ConfigService::Instance().setConsoleLogLevel(4));
}
void testRegisteringaNewFilter() {
Logger log1("testRegisteringaNewFilter");
Poco::FilterChannel *testFilterChannel = new Poco::FilterChannel();
std::string m_FilterChannelName = "testRegisteringaNewFilter";
// Setup logging
auto &rootLogger = Poco::Logger::root();
auto *rootChannel = Poco::Logger::root().getChannel();
// The root channel might be a SplitterChannel
if (auto *splitChannel =
dynamic_cast<Poco::SplitterChannel *>(rootChannel)) {
splitChannel->addChannel(testFilterChannel);
} else {
Poco::Logger::setChannel(rootLogger.name(), testFilterChannel);
}
auto &configService = ConfigService::Instance();
configService.registerLoggingFilterChannel(m_FilterChannelName,
testFilterChannel);
int prevLogLevel = log1.getLevel();
TSM_ASSERT("The log level start above PRIO_TRACE",
log1.getLevel() < Logger::Priority::PRIO_TRACE);
configService.setFilterChannelLogLevel(m_FilterChannelName,
Logger::Priority::PRIO_TRACE);
TSM_ASSERT("The log level should be PRIO_TRACE",
log1.getLevel() == Logger::Priority::PRIO_TRACE);
TSM_ASSERT("The log filter priority should be PRIO_TRACE",
testFilterChannel->getPriority() ==
Logger::Priority::PRIO_TRACE);
configService.setFilterChannelLogLevel(m_FilterChannelName, prevLogLevel);
TSM_ASSERT("The log level should be " + std::to_string(prevLogLevel),
log1.getLevel() == prevLogLevel);
TSM_ASSERT("The log filter priority should be " +
std::to_string(prevLogLevel),
testFilterChannel->getPriority() ==
static_cast<unsigned int>(prevLogLevel));
}
void testDefaultFacility() {
TS_ASSERT_THROWS_NOTHING(ConfigService::Instance().getFacility());
//
ConfigService::Instance().setFacility("ISIS");
const FacilityInfo &fac = ConfigService::Instance().getFacility();
TS_ASSERT_EQUALS(fac.name(), "ISIS");
ConfigService::Instance().setFacility("SNS");
const FacilityInfo &fac1 = ConfigService::Instance().getFacility();
TS_ASSERT_EQUALS(fac1.name(), "SNS");
// // Non existent facility
// TS_ASSERT_THROWS(ConfigService::Instance().setFacility(""),
// Mantid::Kernel::Exception::NotFoundError);
void testFacilityList() {
std::vector<FacilityInfo *> facilities =
ConfigService::Instance().getFacilities();
std::vector<std::string> names =
ConfigService::Instance().getFacilityNames();
TS_ASSERT_LESS_THAN(0, names.size());
TS_ASSERT_EQUALS(facilities.size(), names.size());
auto itNames = names.begin();
for (; itFacilities != facilities.end(); ++itFacilities, ++itNames) {
TS_ASSERT_EQUALS(*itNames, (**itFacilities).name());
}
// Set a default facility
ConfigService::Instance().setFacility("SNS");
// Try and find some instruments from a facility
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("BASIS").name(),
"BASIS");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("REF_L").name(),
"REF_L");
// Now find some from other facilities
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("OSIRIS").name(),
"OSIRIS");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("BIOSANS").name(),
"BIOSANS");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("NGSANS").name(),
"NGSANS");
// Check we throw the correct error for a nonsense beamline.
// TS_ASSERT_THROWS(ConfigService::Instance().getInstrument("MyBeamline").name(),
// NotFoundError);
// Now find by using short name
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("BSS").name(),
"BASIS");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("MAR").name(),
"MARI");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("PG3").name(),
"POWGEN");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("OSI").name(),
"OSIRIS");
// TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("HiResSANS").name(),
// "GPSANS");
// Now find some with the wrong case
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("baSis").name(),
"BASIS");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("TOPaZ").name(),
"TOPAZ");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("Seq").name(),
"SEQUOIA");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("eqsans").name(),
"EQ-SANS");
// Set the default instrument
ConfigService::Instance().setString("default.instrument", "OSIRIS");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument("").name(),
"OSIRIS");
TS_ASSERT_EQUALS(ConfigService::Instance().getInstrument().name(),
"OSIRIS");
void TestSystemValues() {
// we cannot test the return values here as they will differ based on the
// environment.
// therfore we will just check they return a non empty string.
Russell Taylor
committed
std::string osName = ConfigService::Instance().getOSName();
TS_ASSERT_LESS_THAN(0,
osName.length()); // check that the string is not empty
Russell Taylor
committed
std::string osArch = ConfigService::Instance().getOSArchitecture();
TS_ASSERT_LESS_THAN(0,
osArch.length()); // check that the string is not empty
Russell Taylor
committed
std::string osCompName = ConfigService::Instance().getComputerName();
TS_ASSERT_LESS_THAN(
0, osCompName.length()); // check that the string is not empty
std::string username = ConfigService::Instance().getUsername();
TS_ASSERT_LESS_THAN(0, username.length());
TS_ASSERT_LESS_THAN(0, ConfigService::Instance()
.getOSVersion()
.length()); // check that the string is not empty
TS_ASSERT_LESS_THAN(
0, ConfigService::Instance().getOSVersionReadable().length());
TS_ASSERT_LESS_THAN(0, ConfigService::Instance()
.getCurrentDir()
.length()); // check that the string is not empty
// TS_ASSERT_LESS_THAN(0,
// ConfigService::Instance().getHomeDir().length()); //check that the
// string is not empty
TS_ASSERT_LESS_THAN(0, ConfigService::Instance()
.getTempDir()
.length()); // check that the string is not empty
std::string appdataDir = ConfigService::Instance().getAppDataDir();
TS_ASSERT_LESS_THAN(0, appdataDir.length());
std::string::size_type index =
appdataDir.find("\\AppData\\Roaming\\mantidproject\\mantid");
TSM_ASSERT_LESS_THAN("Could not find correct path in getAppDataDir()",
index, appdataDir.size());
std::string::size_type index = appdataDir.find("/.mantid");
TSM_ASSERT_LESS_THAN("Could not find correct path in getAppDataDir()",
index, appdataDir.size());
void TestInstrumentDirectory() {
auto directories = ConfigService::Instance().getInstrumentDirectories();
TS_ASSERT_LESS_THAN(1, directories.size());
// the first entry should be the AppDataDir + instrument
TSM_ASSERT_LESS_THAN(
"Could not find the appData directory in getInstrumentDirectories()[0]",
directories[0].find(ConfigService::Instance().getAppDataDir()),
directories[0].size());
TSM_ASSERT_LESS_THAN("Could not find the 'instrument' directory in "
"getInstrumentDirectories()[0]",
directories[0].find("instrument"),
directories[0].size());
if (directories.size() == 3) {
// The middle entry should be /etc/mantid/instrument
TSM_ASSERT_LESS_THAN("Could not find /etc/mantid/instrument path in "
"getInstrumentDirectories()[1]",
directories[1].find("etc/mantid/instrument"),
directories[1].size());
}
// Check that the last directory matches that returned by
// getInstrumentDirectory
TS_ASSERT_EQUALS(directories.back(),
ConfigService::Instance().getInstrumentDirectory());
// check all of the directory entries actually exist
for (auto &directoryPath : directories) {
Poco::File directory(directoryPath);
TSM_ASSERT(directoryPath + " does not exist", directory.exists());
void TestSetInstrumentDirectory() {
auto originalDirectories =
ConfigService::Instance().getInstrumentDirectories();
std::vector<std::string> testDirectories;
testDirectories.push_back("Test Directory 1");
testDirectories.push_back("Test Directory 2");
ConfigService::Instance().setInstrumentDirectories(testDirectories);
auto readDirectories = ConfigService::Instance().getInstrumentDirectories();
TS_ASSERT_EQUALS(readDirectories.size(), testDirectories.size());
TS_ASSERT_EQUALS(readDirectories[0], testDirectories[0]);
TS_ASSERT_EQUALS(readDirectories[1], testDirectories[1]);
// Restore original settings
ConfigService::Instance().setInstrumentDirectories(originalDirectories);
readDirectories = ConfigService::Instance().getInstrumentDirectories();
TS_ASSERT_EQUALS(readDirectories.size(), originalDirectories.size());
TS_ASSERT_EQUALS(readDirectories[0], originalDirectories[0]);
}
void TestCustomProperty() {
std::string countString =
ConfigService::Instance().getString("algorithms.retained");
TS_ASSERT_EQUALS(countString, "50");
void TestCustomPropertyAsValue() {
// Mantid.legs is defined in the properties script as 6
Russell Taylor
committed
int value = 0;
ConfigService::Instance().getValue("algorithms.retained", value);
Russell Taylor
committed
double dblValue = 0;
ConfigService::Instance().getValue("algorithms.retained", dblValue);
Russell Taylor
committed
TS_ASSERT_EQUALS(value, 50);
TS_ASSERT_EQUALS(dblValue, 50.0);
void TestMissingProperty() {
// Mantid.noses is not defined in the properties script
std::string noseCountString =
ConfigService::Instance().getString("mantid.noses");
// this should return an empty string
Russell Taylor
committed
TS_ASSERT_EQUALS(noseCountString, "");
Gigg, Martyn Anthony
committed
void TestRelativeToAbsolute() {
// std::string path =
// ConfigService::Instance().getString("defaultsave.directory");
// TS_ASSERT( Poco::Path(path).isAbsolute() );
}
// This should clear out all old properties
const std::string propfilePath =
ConfigService::Instance().getDirectoryOfExecutable();
Russell Taylor
committed
const std::string propfile = propfilePath + "MantidTest.properties";
ConfigService::Instance().updateConfig(propfile);
// this should return an empty string
Russell Taylor
committed
TS_ASSERT_EQUALS(ConfigService::Instance().getString("mantid.noses"), "");
Russell Taylor
committed
TS_ASSERT_EQUALS(ConfigService::Instance().getString("mantid.legs"), "6");
TS_ASSERT_EQUALS(ConfigService::Instance().getString("mantid.thorax"), "1");
// This should append a new properties file properties
ConfigService::Instance().updateConfig(
propfilePath + "MantidTest.user.properties", true);
// this should now be valid
Russell Taylor
committed
TS_ASSERT_EQUALS(ConfigService::Instance().getString("mantid.noses"), "5");
// this should have been overridden
Russell Taylor
committed
TS_ASSERT_EQUALS(ConfigService::Instance().getString("mantid.legs"), "76");
// this should have been left alone
Russell Taylor
committed
TS_ASSERT_EQUALS(ConfigService::Instance().getString("mantid.thorax"), "1");
// This should clear out all old properties
Russell Taylor
committed
ConfigService::Instance().updateConfig(propfile);
// this should return an empty string
Russell Taylor
committed
TS_ASSERT_EQUALS(ConfigService::Instance().getString("mantid.noses"), "");
Russell Taylor
committed
TS_ASSERT_EQUALS(ConfigService::Instance().getString("mantid.legs"), "6");
TS_ASSERT_EQUALS(ConfigService::Instance().getString("mantid.thorax"), "1");
}
Russell Taylor
committed
void testSaveConfigCleanFile() {
const std::string propfile =
ConfigService::Instance().getDirectoryOfExecutable() +
"MantidTest.properties";
Russell Taylor
committed
ConfigService::Instance().updateConfig(propfile);
Gigg, Martyn Anthony
committed
const std::string filename("user.settings");
// save any previous changed settings to make sure we're on a clean slate
ConfigService::Instance().saveConfig(filename);
Gigg, Martyn Anthony
committed
Poco::File prop_file(filename);
// Start with a clean state
if (prop_file.exists())
prop_file.remove();
Gigg, Martyn Anthony
committed
ConfigServiceImpl &settings = ConfigService::Instance();
Gigg, Martyn Anthony
committed
TS_ASSERT_THROWS_NOTHING(settings.saveConfig(filename));
// No changes yet, file exists but is blank
TS_ASSERT_EQUALS(prop_file.exists(), true);
std::string contents = readFile(filename);
TS_ASSERT(contents.empty());
Gigg, Martyn Anthony
committed
Gigg, Martyn Anthony
committed
}
void testSaveConfigExistingSettings() {
Robert Whitley
committed
Gigg, Martyn Anthony
committed
const std::string filename("user.settings");
Gigg, Martyn Anthony
committed
Poco::File prop_file(filename);
if (prop_file.exists())
prop_file.remove();
Gigg, Martyn Anthony
committed
std::ofstream writer(filename.c_str(), std::ios_base::trunc);
Gigg, Martyn Anthony
committed
writer << "mantid.legs = 6";
writer.close();
Gigg, Martyn Anthony
committed
}
void testLoadChangeLoadSavesOriginalValueIfSettingExists() {
const std::string filename("user.settingsLoadChangeLoad");
Poco::File prop_file(filename);
if (prop_file.exists())
prop_file.remove();
const std::string value("15");
std::ofstream writer(filename.c_str());
writer << "mantid.legs = " << value << "\n";
writer.close();
const std::string propfile =
ConfigService::Instance().getDirectoryOfExecutable() +
"MantidTest.properties";
ConfigService::Instance().updateConfig(propfile);
ConfigService::Instance().setString("mantid.legs", value);
ConfigService::Instance().updateConfig(propfile, false, false);
ConfigService::Instance().saveConfig(filename);
const std::string contents = readFile(filename);
TS_ASSERT_EQUALS(contents, "mantid.legs=6\n");
prop_file.remove();
}
void testLoadChangeClearSavesOriginalPropsFile() {
// Backup current user settings
ConfigServiceImpl &settings = ConfigService::Instance();
const std::string userFileBackup = settings.getUserFilename() + ".unittest";
Poco::File userFile(settings.getUserFilename());
userFile.moveTo(userFileBackup);
const std::string propfile =
ConfigService::Instance().getDirectoryOfExecutable() +
"MantidTest.properties";
settings.updateConfig(propfile);
settings.setString("mantid.legs", "15");
settings.reset();
const std::string contents = readFile(settings.getUserFilename());
// No mention of mantid.legs but not empty
TS_ASSERT(!contents.empty());
TS_ASSERT(contents.find("mantid.legs") == std::string::npos);
Poco::File backup(userFileBackup);
backup.moveTo(settings.getUserFilename());
void testSaveConfigWithPropertyRemoved() {
const std::string filename(
"user.settings.testSaveConfigWithPropertyRemoved");
Robert Whitley
committed
Poco::File prop_file(filename);
if (prop_file.exists())
prop_file.remove();
Robert Whitley
committed
std::ofstream writer(filename.c_str(), std::ios_base::trunc);
writer << "mantid.legs = 6"
<< "\n";
Robert Whitley
committed
writer << "\n";
writer << "mantid.thorax = 10\n";
writer << "# This comment line\n";
writer << "key.withnospace=5\n";
writer << "key.withnovalue";
writer.close();
ConfigService::Instance().updateConfig(filename, false, false);
Robert Whitley
committed
std::string rootName = "mantid.thorax";
ConfigService::Instance().remove(rootName);
TS_ASSERT_EQUALS(ConfigService::Instance().hasProperty(rootName), false);
rootName = "key.withnovalue";
ConfigService::Instance().remove(rootName);
TS_ASSERT_EQUALS(ConfigService::Instance().hasProperty(rootName), false);
ConfigService::Instance().saveConfig(filename);
// Test the entry
std::ifstream reader(filename.c_str(), std::ios::in);
Robert Whitley
committed
TS_FAIL("Unable to open config file for saving");
}
std::string line("");
std::map<int, std::string> prop_lines;
int line_index(0);
prop_lines.emplace(line_index, line);
Robert Whitley
committed
++line_index;
}
reader.close();
TS_ASSERT_EQUALS(prop_lines.size(), 4);
TS_ASSERT_EQUALS(prop_lines[0], "mantid.legs=6");
Robert Whitley
committed
TS_ASSERT_EQUALS(prop_lines[1], "");
TS_ASSERT_EQUALS(prop_lines[2], "# This comment line");
TS_ASSERT_EQUALS(prop_lines[3], "key.withnospace=5");
// Clean up
prop_file.remove();
}
void testSaveConfigWithLineContinuation() {
/*const std::string propfile =
ConfigService::Instance().getDirectoryOfExecutable()
Robert Whitley
committed
+ "MantidTest.properties";
ConfigService::Instance().updateConfig(propfile);*/
const std::string filename("user.settingsLineContinuation");
Gigg, Martyn Anthony
committed
Poco::File prop_file(filename);
if (prop_file.exists())
prop_file.remove();
ConfigServiceImpl &settings = ConfigService::Instance();
std::ofstream writer(filename.c_str(), std::ios_base::trunc);
writer << "mantid.legs=6\n\n"
"search.directories=/test1;\\\n"
"/test2;/test3;\\\n"
"/test4\n";
Gigg, Martyn Anthony
committed
writer.close();
ConfigService::Instance().updateConfig(filename, true, false);
Robert Whitley
committed
TS_ASSERT_THROWS_NOTHING(settings.setString("mantid.legs", "15"));
Gigg, Martyn Anthony
committed
TS_ASSERT_THROWS_NOTHING(settings.saveConfig(filename));
// Should exist
TS_ASSERT_EQUALS(prop_file.exists(), true);
Gigg, Martyn Anthony
committed
Gigg, Martyn Anthony
committed
// Test the entry
std::ifstream reader(filename.c_str(), std::ios::in);
Gigg, Martyn Anthony
committed
TS_FAIL("Unable to open config file for saving");
}
std::string line("");
std::map<int, std::string> prop_lines;
int line_index(0);
prop_lines.emplace(line_index, line);
Gigg, Martyn Anthony
committed
++line_index;
}
reader.close();
TS_ASSERT_EQUALS(prop_lines.size(), 3);
Gigg, Martyn Anthony
committed
TS_ASSERT_EQUALS(prop_lines[1], "");
TS_ASSERT_EQUALS(prop_lines[2],
"search.directories=/test1;/test2;/test3;/test4");
Gigg, Martyn Anthony
committed
// Clean up
Gigg, Martyn Anthony
committed
}
Michael Whitty
committed
// Test that the ValueChanged notification is sent
void testNotifications() {
Poco::NObserver<ConfigServiceTest, ConfigServiceImpl::ValueChanged>
changeObserver(*this, &ConfigServiceTest::handleConfigChange);
Michael Whitty
committed
m_valueChangedSent = false;
ConfigServiceImpl &settings = ConfigService::Instance();
Michael Whitty
committed
TS_ASSERT_THROWS_NOTHING(settings.addObserver(changeObserver));
Michael Whitty
committed
settings.setString("default.facility", "SNS");
TS_ASSERT(m_valueChangedSent);
TS_ASSERT_EQUALS(m_key, "default.facility");
TS_ASSERT_DIFFERS(m_preValue, m_curValue);
TS_ASSERT_EQUALS(m_curValue, "SNS");
}
void testGetKeysWithValidInput() {
const std::string propfile =
ConfigService::Instance().getDirectoryOfExecutable() +
"MantidTest.properties";
Robert Whitley
committed
ConfigService::Instance().updateConfig(propfile);
Robert Whitley
committed
// Returns all subkeys with the given root key
std::vector<std::string> keyVector =
ConfigService::Instance().getKeys("workspace.sendto");
Robert Whitley
committed
TS_ASSERT_EQUALS(keyVector.size(), 4);
TS_ASSERT_EQUALS(keyVector[0], "1");
TS_ASSERT_EQUALS(keyVector[1], "2");
TS_ASSERT_EQUALS(keyVector[2], "3");
TS_ASSERT_EQUALS(keyVector[3], "4");
}
void testGetKeysWithZeroSubKeys() {
const std::string propfile =
ConfigService::Instance().getDirectoryOfExecutable() +
"MantidTest.properties";
Robert Whitley
committed
ConfigService::Instance().updateConfig(propfile);
std::vector<std::string> keyVector =
ConfigService::Instance().getKeys("mantid.legs");
Robert Whitley
committed
TS_ASSERT_EQUALS(keyVector.size(), 0);
std::vector<std::string> keyVector2 =
ConfigService::Instance().getKeys("mantidlegs");
Robert Whitley
committed
TS_ASSERT_EQUALS(keyVector2.size(), 0);
}
void testGetKeysWithEmptyPrefix() {
const std::string propfile =
ConfigService::Instance().getDirectoryOfExecutable() +
"MantidTest.properties";
Robert Whitley
committed
ConfigService::Instance().updateConfig(propfile);
// Returns all *root* keys, i.e. unique keys left of the first period
std::vector<std::string> keyVector = ConfigService::Instance().getKeys("");
// The 4 unique in the file and the ConfigService always sets a
// datasearch.directories key on creation
Gigg, Martyn Anthony
committed
TS_ASSERT_EQUALS(keyVector.size(), 5);
Robert Whitley
committed
}
void testGetAllKeys() {
const std::string propfilePath =
ConfigService::Instance().getDirectoryOfExecutable();
const std::string propfile = propfilePath + "MantidTest.properties";
ConfigService::Instance().updateConfig(propfile);
std::vector<std::string> keys = ConfigService::Instance().keys();
TS_ASSERT_EQUALS(keys.size(), 9);
void testRemovingProperty() {
const std::string propfile =
ConfigService::Instance().getDirectoryOfExecutable() +
"MantidTest.properties";
Robert Whitley
committed
ConfigService::Instance().updateConfig(propfile);
std::string rootName = "mantid.legs";
bool mantidLegs = ConfigService::Instance().hasProperty(rootName);
TS_ASSERT_EQUALS(mantidLegs, true);
// Remove the value from the key and test again
Robert Whitley
committed
ConfigService::Instance().remove(rootName);
mantidLegs = ConfigService::Instance().hasProperty(rootName);
TS_ASSERT_EQUALS(mantidLegs, false);
Robert Whitley
committed
}
Michael Whitty
committed
protected:
bool m_valueChangedSent;
std::string m_key;
std::string m_preValue;
std::string m_curValue;
void handleConfigChange(const Poco::AutoPtr<
Mantid::Kernel::ConfigServiceImpl::ValueChanged> &pNf) {
Michael Whitty
committed
m_valueChangedSent = true;
m_key = pNf->key();
m_preValue = pNf->preValue();
m_curValue = pNf->curValue();
}
Gigg, Martyn Anthony
committed
private:
void runSaveTest(const std::string &filename, const std::string &legs) {
ConfigServiceImpl &settings = ConfigService::Instance();
Gigg, Martyn Anthony
committed
// Make a change and save again
std::string key("mantid.legs");
Gigg, Martyn Anthony
committed
TS_ASSERT_THROWS_NOTHING(settings.setString(key, value));
TS_ASSERT_THROWS_NOTHING(settings.saveConfig(filename));
// Should exist
Poco::File prop_file(filename);
TS_ASSERT_EQUALS(prop_file.exists(), true);
// Test the entry
std::ifstream reader(filename.c_str(), std::ios::in);
Gigg, Martyn Anthony
committed
TS_FAIL("Unable to open config file for saving");
Gigg, Martyn Anthony
committed
}
std::string line("");
while (std::getline(reader, line)) {
if (line.empty())
continue;
else
break;
Gigg, Martyn Anthony
committed
}
Gigg, Martyn Anthony
committed
reader.close();
Gigg, Martyn Anthony
committed
std::string key_value = key + "=" + value;
TS_ASSERT_EQUALS(line, key_value);
// Clean up
prop_file.remove();
}
std::string readFile(const std::string &filename) {
std::ifstream reader(filename.c_str());
return std::string((std::istreambuf_iterator<char>(reader)),
std::istreambuf_iterator<char>());