25 lines
786 B
C++
25 lines
786 B
C++
#include "se/PollAckCommand.hpp"
|
|
#include "se/CLTRID.hpp"
|
|
#include "session/Timer.hpp"
|
|
#include "common/Test.hpp"
|
|
#include "common/init.hpp"
|
|
|
|
using namespace std;
|
|
|
|
void doWork()
|
|
{
|
|
init("/home/drde/etc/toolkit2.conf");
|
|
Timer::setTime("20070101.010101");
|
|
CLTRID::setClID("JTKUTEST");
|
|
|
|
PollAckCommand cmd(123);
|
|
const string xml = cmd.toXML();
|
|
ASSERT_EQ("<?xml version=\"1.0\" encoding=\"UTF-8\"?><epp xmlns=\"urn:ietf:params:xml:ns:epp-1.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd\"><command><poll msgID=\"123\" op=\"ack\"/><clTRID>JTKUTEST.20070101.010101.0</clTRID></command></epp>", xml);
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
TEST_run(doWork);
|
|
return TEST_errorCount();
|
|
}
|