git-svn-id: https://svn.microneil.com/svn/SNFUtility/trunk@24 aa37657e-1934-4a5f-aa6d-2d8eab27ff7cmaster
std::string FileName = CFGData.paths_log_path + CFGData.node_licenseid + ".status.second"; | std::string FileName = CFGData.paths_log_path + CFGData.node_licenseid + ".status.second"; | ||||
AppendDatestampToLogFileName(&FileName); | |||||
if (CFGData.Status_SecondReport_Append_OnOff) { | |||||
AppendDatestampToLogFileName(&FileName); | |||||
} | |||||
FileName += ".log"; | FileName += ".log"; | ||||
std::string FileName = CFGData.paths_log_path + CFGData.node_licenseid + ".status.minute"; | std::string FileName = CFGData.paths_log_path + CFGData.node_licenseid + ".status.minute"; | ||||
AppendDatestampToLogFileName(&FileName); | |||||
if (CFGData.Status_MinuteReport_Append_OnOff) { | |||||
AppendDatestampToLogFileName(&FileName); | |||||
} | |||||
FileName += ".log"; | FileName += ".log"; | ||||
UtilityConfig::AppendDatestampToLogFileName(std::string *FileBaseName) { | UtilityConfig::AppendDatestampToLogFileName(std::string *FileBaseName) { | ||||
if (CFGData.Scan_XML_Rotate || | |||||
CFGData.Status_MinuteReport_Append_OnOff || | |||||
CFGData.Status_SecondReport_Append_OnOff) { | |||||
char TimestampBuffer[20]; | |||||
tm *BrokenDownTime; | |||||
time_t Timestamp; | |||||
time(&Timestamp); | |||||
char TimestampBuffer[20]; | |||||
tm *BrokenDownTime; | |||||
time_t Timestamp; | |||||
if (CFGData.Logs_Rotation_LocalTime_OnOff) { | |||||
time(&Timestamp); | |||||
BrokenDownTime = gmtime(&Timestamp); | |||||
if (CFGData.Logs_Rotation_LocalTime_OnOff) { | |||||
} else { | |||||
BrokenDownTime = gmtime(&Timestamp); | |||||
BrokenDownTime = localtime(&Timestamp); | |||||
} else { | |||||
} | |||||
BrokenDownTime = localtime(&Timestamp); | |||||
snprintf(TimestampBuffer, sizeof TimestampBuffer, "%04d%02d%02d", | |||||
BrokenDownTime->tm_year+1900, | |||||
BrokenDownTime->tm_mon+1, | |||||
BrokenDownTime->tm_mday); | |||||
} | |||||
*FileBaseName += "."; | |||||
*FileBaseName += TimestampBuffer; | |||||
snprintf(TimestampBuffer, sizeof TimestampBuffer, "%04d%02d%02d", | |||||
BrokenDownTime->tm_year+1900, | |||||
BrokenDownTime->tm_mon+1, | |||||
BrokenDownTime->tm_mday); | |||||
} | |||||
*FileBaseName += "."; | |||||
*FileBaseName += TimestampBuffer; | |||||
} | } | ||||
bool | bool | ||||
UtilityConfig::CommandLineIsOkay() { | UtilityConfig::CommandLineIsOkay() { | ||||
return (AuthenticationIsSpecified == LicenseIdIsSpecified); | |||||
std::string ConfigFile = GetConfigFileName(); | |||||
bool NoCredentialSpecified = !(AuthenticationIsSpecified || LicenseIdIsSpecified); | |||||
int NumCommandsSpecified = 0; | |||||
if (UpdateCredentialsSpecified()) { | |||||
if (ConfigFile.length() > 0) { | |||||
return false; | |||||
} | |||||
NumCommandsSpecified++; | |||||
} | |||||
// AVD modified to here. | |||||
return true; | |||||
} | } | ||||
// | // | ||||
void AppendDatestampToLogFileName(std::string *FileBaseName); | void AppendDatestampToLogFileName(std::string *FileBaseName); | ||||
/// Get the identity file name. | /// Get the identity file name. | ||||
// | // | ||||
// \returns the identity file name. | // \returns the identity file name. |
Result: Pass. | Result: Pass. | ||||
CONFLICT-05: Run with -config=SNFMilter_second.xml -start. Verify | |||||
that help message is output, and that SNFMilterConfig takes no action. | |||||
Result: Pass. | |||||
Setup/Repair functionality | Setup/Repair functionality | ||||
-------------------------- | -------------------------- | ||||
----------------------------------------------------------------- | ----------------------------------------------------------------- | ||||
START_STOP_SEC-01: Install default configuration files, and ensure | START_STOP_SEC-01: Install default configuration files, and ensure | ||||
that SNFMilter is stopped. Create a configuration file | |||||
SNFMilter_second.xml as follows: | |||||
that SNFMilter is stopped. Install configuration file | |||||
SNFMilter_second.xml with the following configuration: | |||||
1) Disable XCI. | 1) Disable XCI. | ||||
Do the following, specifying the configuration file SNFMilter_second.xml: | Do the following, specifying the configuration file SNFMilter_second.xml: | ||||
1) Run "SNFMilterConfig -config=SNFMilter_second.xml -start", and verify that SNFMilter starts. | |||||
1) Run "SNFMilterConfig -start -v", and verify that SNFMilter | |||||
starts. | |||||
2) Run "SNFMilterConfig -config=SNFMilter_second.xml -start" again | |||||
and verify that SNFMilter is not started again. | |||||
2) Run "SNFMilterConfig -start -v" again and verify that SNFMilter | |||||
is not started again. | |||||
3) Run "SNFMilterConfig -config=SNFMilter_second.xml -stop" and | |||||
verify that SNFMilter stops. | |||||
3) Run "SNFMilterConfig -stop -v" and verify that SNFMilter stops. | |||||
4) Run "SNFMilterConfig -config=SNFMilter_second.xml -stop" again | |||||
and verify that SNFMilter is not stopped again. | |||||
4) Run "SNFMilterConfig -stop -v" again and verify that SNFMilter is | |||||
not stopped again. | |||||
Result: Pass | |||||
Result: | |||||
START_STOP_SEC-02: Repeat START_STOP_SEC-01 but with "-v" in the | |||||
START_STOP_SEC-02: Repeat START_STOP_SEC-01 but without "-v" in the | |||||
command-line. | command-line. | ||||
Result: Pass | |||||
Result: | |||||
START_STOP_SEC-03: Configure as for START_STOP_SEC-01, and do the | START_STOP_SEC-03: Configure as for START_STOP_SEC-01, and do the | ||||
following: | following: | ||||
5) Run SNFMilterConfig with "-stop -explain". Verify correct | 5) Run SNFMilterConfig with "-stop -explain". Verify correct | ||||
output, and that SNFMilterConfig doesn't stop SNFMilter. | output, and that SNFMilterConfig doesn't stop SNFMilter. | ||||
Result: Pass | |||||
Result: | |||||
Start/stop functionality with XCI and status.second enabled, append mode | Start/stop functionality with XCI and status.second enabled, append mode | ||||
------------------------------------------------------------------------ | ------------------------------------------------------------------------ |