2013-12-31 19:36:07 +00:00
|
|
|
#include "se/ArDomainPolicyUndeleteCommand.hpp"
|
|
|
|
#include "se/CLTRID.hpp"
|
|
|
|
#include "common/init.hpp"
|
|
|
|
#include "session/Timer.hpp"
|
|
|
|
#include "common/Test.hpp"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
void doWork()
|
|
|
|
{
|
2014-01-16 20:28:52 +00:00
|
|
|
init("./etc/toolkit2.conf");
|
2013-12-31 19:36:07 +00:00
|
|
|
{
|
2014-01-18 20:35:18 +00:00
|
|
|
Timer::setTime("20140101.010101");
|
2014-01-21 23:01:41 +00:00
|
|
|
CLTRID::setClID("ACTKUTST");
|
2013-12-31 19:36:07 +00:00
|
|
|
|
2014-01-21 23:01:41 +00:00
|
|
|
ArDomainPolicyUndeleteCommand cmd("ACTKUTST.com.au");
|
2013-12-31 19:36:07 +00:00
|
|
|
const string xml(cmd.toXML());
|
2014-01-21 23:01:41 +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\"><extension><command xmlns=\"urn:X-ar:params:xml:ns:arext-1.0\" xsi:schemaLocation=\"urn:X-ar:params:xml:ns:arext-1.0 arext-1.0.xsd\"><policyUndelete><policyUndelete xmlns=\"urn:X-ar:params:xml:ns:ardomain-1.0\" xsi:schemaLocation=\"urn:X-ar:params:xml:ns:ardomain-1.0 ardomain-1.0.xsd\"><name>ACTKUTST.com.au</name></policyUndelete></policyUndelete><clTRID>ACTKUTST.20140101.010101.0</clTRID></command></extension></epp>");
|
2013-12-31 19:36:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
TEST_run(doWork);
|
|
|
|
return TEST_errorCount();
|
|
|
|
}
|
|
|
|
|