DRDE/ACTK1_0/se/DomainDeleteCommandTest.cpp

29 lines
982 B
C++
Raw Normal View History

#include "common/init.hpp"
#include "common/Test.hpp"
#include "se/CLTRID.hpp"
#include "se/DomainDeleteCommand.hpp"
#include "session/Timer.hpp"
#include <iostream>
using namespace std;
void doWork()
{
2014-01-16 20:28:52 +00:00
init("./etc/toolkit2.conf");
{
CLTRID::setClID("JTKUTEST");
2014-01-18 20:35:18 +00:00
Timer::setTime("20140101.010101");
DomainDeleteCommand cmd("jtkutest.com.au");
const string xml(cmd.toXML());
2014-01-18 20:35:18 +00:00
ASSERT_EQ(xml, "<?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><delete><delete xmlns=\"urn:ietf:params:xml:ns:domain-1.0\" xsi:schemaLocation=\"urn:ietf:params:xml:ns:domain-1.0 domain-1.0.xsd\"><name>jtkutest.com.au</name></delete></delete><clTRID>JTKUTEST.20140101.010101.0</clTRID></command></epp>");
}
}
int main(int argc, char* argv[])
{
TEST_run(doWork);
return TEST_errorCount();
}