#include <anna/xml/Compiler.hpp>
#include <anna/core/util/Millisecond.hpp>
#include <anna/diameter.comm/Message.hpp>
+#include <anna/diameter.comm/ClientSession.hpp>
+#include <anna/diameter.comm/ServerSession.hpp>
+#include <anna/diameter.comm/Server.hpp>
#include <anna/core/tracing/Logger.hpp>
+#include <anna/diameter/codec/Message.hpp>
#include <anna/diameter/codec/functions.hpp>
#include <anna/diameter/helpers/base/functions.hpp>
// TODO: terminate thread when deprecated (RT signal ?)
// TODO: mutex the step while setting data here !!
}
+
+ bool decodeMessage(const anna::DataBlock &message, anna::diameter::codec::Message *messageCodec) throw() {
+
+ if (message.isEmpty())
+ return false;
+
+ bool result = true;
+ try {
+ if (!messageCodec) {
+ Launcher& my_app = static_cast <Launcher&>(anna::app::functions::getApp());
+ messageCodec = new anna::diameter::codec::Message(my_app.getCodecEngine());
+ }
+
+ messageCodec->decode(message);
+ }
+ catch (anna::RuntimeException &ex) {
+ ex.trace();
+ result = false;
+ }
+
+ return result;
+ }
+
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
// TestStepSendxml
////////////////////////////////////////////////////////////////////////////////////////////////////////
+TestStepSendxml::~TestStepSendxml() {
+ delete a_messageCodec;
+ a_messageCodec = NULL;
+}
+
anna::xml::Node* TestStepSendxml::asXML(anna::xml::Node* parent) const
throw() {
anna::xml::Node* result = TestStep::asXML(parent);
}
}
- if (!a_message.isEmpty()) {
- try {
- Launcher& my_app = static_cast <Launcher&>(anna::app::functions::getApp());
- static anna::diameter::codec::Message codecMsg(my_app.getCodecEngine());
- codecMsg.decode(a_message);
- xmlmsg = "\n"; xmlmsg += codecMsg.asXMLString(); xmlmsg += "\n";
- }
- catch (anna::RuntimeException &ex) {
- ex.trace();
- }
+ if (decodeMessage(a_message, a_messageCodec)) {
+ xmlmsg = "\n";
+ xmlmsg += a_messageCodec->asXMLString();
+ xmlmsg += "\n";
}
if (msg != "") result->createAttribute("Message", msg);
}
bool TestStepSendxml::do_execute() throw() {
- anna::diameter::comm::Message *msg = a_realmNode->createCommMessage();
bool success = false;
std::string failReason, s_warn;
+ MyDiameterEntity *entity = a_realmNode->getEntity(); // by default
+ MyLocalServer *localServer = a_realmNode->getDiameterServer(); // by default
+ const TestStepWait *tsw = NULL;
+
+ // Create comm message:
+ anna::diameter::comm::Message *msg = a_realmNode->createCommMessage();
+ //msg->clearBody();
+ msg->setBody(a_message);
try {
// Update sequence for answers:
if (a_waitForRequestStepNumber != -1) { // is an answer: try to copy sequence information; alert about Session-Id discrepance
// Request which was received:
- const TestStepWait *tsw = (const TestStepWait*)(a_testCase->getStep(a_waitForRequestStepNumber));
+ tsw = (const TestStepWait*)(a_testCase->getStep(a_waitForRequestStepNumber));
const anna::DataBlock &request = tsw->getMsgDataBlock();
anna::diameter::HopByHop hbh = anna::diameter::codec::functions::getHopByHop(request);
anna::diameter::EndToEnd ete = anna::diameter::codec::functions::getEndToEnd(request);
}
if (getType() == Type::Sendxml2e) {
- MyDiameterEntity *entity = a_realmNode->getEntity();
- if (entity) {
- //msg->clearBody();
- msg->setBody(a_message);
- /* response = NULL =*/entity->send(msg);
- success = true;
+ anna::diameter::comm::ClientSession *usedClientSession = NULL;
+
+ if (tsw) { // is an answer for a received request on wait condition
+ anna::diameter::comm::ClientSession *clientSession = tsw->getClientSession();
+ if (clientSession) {
+ /* response NULL (is an answer) */clientSession->send(msg);
+ success = true;
+ usedClientSession = clientSession;
+ }
+ else {
+ failReason = "Reference wait step didn't store a valid client session. Unable to send the message";
+ LOGWARNING(anna::Logger::warning(failReason, ANNA_FILE_LOCATION));
+ }
}
else {
- failReason = "There is no diameter entity currently configured. Unable to send the message";
- LOGWARNING(anna::Logger::warning(failReason, ANNA_FILE_LOCATION));
+ if (entity) {
+ success = entity->send(msg);
+ anna::diameter::comm::Server *usedServer = entity->getLastUsedResource();
+ usedClientSession = usedServer ? usedServer->getLastUsedResource() : NULL;
+ }
+ else {
+ failReason = "There is no diameter entity currently configured. Unable to send the message";
+ LOGWARNING(anna::Logger::warning(failReason, ANNA_FILE_LOCATION));
+ }
+ } // else (normal sending)
+
+ // Detailed log:
+ if(a_realmNode->logEnabled()) {
+ if (!a_messageCodec)
+ decodeMessage(a_message, a_messageCodec);
+
+ if (a_messageCodec) {
+ std::string detail = usedClientSession ? usedClientSession->asString() : "<null client session>"; // shouldn't happen
+ a_realmNode->writeLogFile(*a_messageCodec, (success ? "sent2e" : "send2eError"), detail);
+ }
}
}
else if (getType() == Type::Sendxml2c) {
- MyLocalServer *localServer = a_realmNode->getDiameterServer();
- if (localServer) {
- //msg->clearBody();
- msg->setBody(a_message);
- /* response = NULL =*/localServer->send(msg);
- success = true;
+ anna::diameter::comm::ServerSession *usedServerSession = NULL;
+
+ if (tsw) { // is an answer for a received request on wait condition
+ anna::diameter::comm::ServerSession *serverSession = tsw->getServerSession();
+ if (serverSession) {
+ /* response NULL (is an answer) */serverSession->send(msg);
+ success = true;
+ usedServerSession = serverSession;
+ }
+ else {
+ failReason = "Reference wait step didn't store a valid server session. Unable to send the message";
+ LOGWARNING(anna::Logger::warning(failReason, ANNA_FILE_LOCATION));
+ }
}
else {
- failReason = "There is no diameter local server currently configured. Unable to send the message";
- LOGWARNING(anna::Logger::warning(failReason, ANNA_FILE_LOCATION));
+ if (localServer) {
+ success = localServer->send(msg);
+ usedServerSession = localServer->getLastUsedResource();
+ }
+ else {
+ failReason = "There is no diameter local server currently configured. Unable to send the message";
+ LOGWARNING(anna::Logger::warning(failReason, ANNA_FILE_LOCATION));
+ }
+ } // else (normal sending)
+
+ // Detailed log:
+ if(a_realmNode->logEnabled()) {
+ if (!a_messageCodec)
+ decodeMessage(a_message, a_messageCodec);
+
+ if (a_messageCodec) {
+ std::string detail = usedServerSession ? usedServerSession->asString() : "<null server session>"; // shouldn't happen
+ a_realmNode->writeLogFile(*a_messageCodec, (success ? "sent2c" : "send2cError"), detail);
+ }
}
}
+
} catch(anna::RuntimeException &ex) {
failReason = ex.asString();
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
// TestStepWait
////////////////////////////////////////////////////////////////////////////////////////////////////////
+TestStepWait::~TestStepWait() {
+ delete a_messageCodec;
+ a_messageCodec = NULL;
+}
+
void TestStepWait::setCondition(bool fromEntity,
const std::string &code, const std::string &bitR, const std::string &resultCode, const std::string &sessionId,
const std::string &hopByHop, const std::string &msisdn, const std::string &imsi, const std::string &serviceContextId) throw() {
}
}
- if (!a_message.isEmpty()) {
- try {
- Launcher& my_app = static_cast <Launcher&>(anna::app::functions::getApp());
- static anna::diameter::codec::Message codecMsg(my_app.getCodecEngine());
- codecMsg.decode(a_message);
- xmlmsg = "\n"; xmlmsg += codecMsg.asXMLString(); xmlmsg += "\n";
- }
- catch (anna::RuntimeException &ex) {
- ex.trace();
- }
+ if (decodeMessage(a_message, a_messageCodec)) {
+ xmlmsg = "\n";
+ xmlmsg += a_messageCodec->asXMLString();
+ xmlmsg += "\n";
}
if (msg != "") result->createAttribute("MatchedMessage", msg);
bool TestStepWait::fulfilled(const anna::DataBlock &db/*, bool matchSessionId*/) throw() {
if (a_condition.comply(db/*, matchSessionId*/)) {
- a_message = db; // store matched
+ //a_message = db; // store matched
+ a_message.assign(db);
complete();
return true;
}
class Node;
}
namespace diameter {
+ namespace codec {
+ class Message;
+ }
namespace comm {
class ClientSession;
class ServerSession;
// Message
anna::DataBlock a_message;
+ anna::diameter::codec::Message *a_messageCodec; // used as helper and for traffic logs
// Expired ?
bool a_expired; // a_endTimestamp will be the expiration reception timestamp
public:
- TestStepSendxml(TestCase *testCase) : TestStep(testCase), a_message(true), a_expired(false), a_realmNode(NULL), a_waitForRequestStepNumber(-1) {;}
+ TestStepSendxml(TestCase *testCase) : TestStep(testCase), a_message(true), a_messageCodec(NULL), a_expired(false), a_realmNode(NULL), a_waitForRequestStepNumber(-1) {;}
+ ~TestStepSendxml();
// setter & getters
void setRealmNode(RealmNode *realm) throw() { a_realmNode = realm; }
TestCondition a_condition;
anna::DataBlock a_message; // message which complies with condition
+ anna::diameter::codec::Message *a_messageCodec; // used as helper and for traffic logs
anna::diameter::comm::ClientSession *a_clientSession;
anna::diameter::comm::ServerSession *a_serverSession;
public:
- TestStepWait(TestCase *testCase) : TestStep(testCase), a_message(true) { a_type = Type::Wait; a_clientSession = NULL; a_serverSession = NULL; }
- ~TestStepWait() {;}
+ TestStepWait(TestCase *testCase) : TestStep(testCase), a_message(true), a_messageCodec(NULL) { a_type = Type::Wait; a_clientSession = NULL; a_serverSession = NULL; }
+ ~TestStepWait();
// setter & getters
void setCondition(bool fromEntity,
void setClientSession(anna::diameter::comm::ClientSession *cs) throw() { a_clientSession = cs; }
void setServerSession(anna::diameter::comm::ServerSession *ss) throw() { a_serverSession = ss; }
+ anna::diameter::comm::ClientSession *getClientSession() const throw() { return a_clientSession; }
+ anna::diameter::comm::ServerSession *getServerSession() const throw() { return a_serverSession; }
const TestCondition &getCondition() const throw() { return a_condition; }
//void setMsgDataBlock(const anna::DataBlock &db) throw() { a_message = db; }