2014-01-06 19:19:17 +00:00
|
|
|
#include "common/init.hpp"
|
|
|
|
#include "common/Test.hpp"
|
|
|
|
#include "se/CLTRID.hpp"
|
|
|
|
#include "se/HostCheckCommand.hpp"
|
|
|
|
#include "session/Timer.hpp"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
void doWork()
|
|
|
|
{
|
2014-01-16 20:28:52 +00:00
|
|
|
init("./etc/toolkit2.conf");
|
2014-01-06 19:19:17 +00:00
|
|
|
{
|
2014-01-21 23:01:41 +00:00
|
|
|
CLTRID::setClID("ACTKUTST");
|
2014-01-18 20:35:18 +00:00
|
|
|
Timer::setTime("20140101.010101");
|
2014-01-24 20:49:09 +00:00
|
|
|
HostCheckCommand hcc("ns1.ACTKUTST.mop.biz");
|
2014-01-06 19:19:17 +00:00
|
|
|
const string xml(hcc.toXML());
|
2014-01-24 20:49:09 +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><check><check xmlns=\"urn:ietf:params:xml:ns:host-1.0\" xsi:schemaLocation=\"urn:ietf:params:xml:ns:host-1.0 host-1.0.xsd\"><name>ns1.ACTKUTST.mop.biz</name></check></check><clTRID>ACTKUTST.20140101.010101.0</clTRID></command></epp>");
|
2014-01-06 19:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2014-01-21 23:01:41 +00:00
|
|
|
CLTRID::setClID("ACTKUTST");
|
2014-01-18 20:35:18 +00:00
|
|
|
Timer::setTime("20140101.010101");
|
2014-01-06 19:19:17 +00:00
|
|
|
std::vector<std::string> names;
|
2014-01-24 20:49:09 +00:00
|
|
|
names.push_back("ns1.ACTKUTST.mop.biz");
|
|
|
|
names.push_back("ns2.ACTKUTST.mop.biz");
|
2014-01-06 19:19:17 +00:00
|
|
|
|
|
|
|
HostCheckCommand hcc(names);
|
|
|
|
const string xml(hcc.toXML());
|
2014-01-24 20:49:09 +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><check><check xmlns=\"urn:ietf:params:xml:ns:host-1.0\" xsi:schemaLocation=\"urn:ietf:params:xml:ns:host-1.0 host-1.0.xsd\"><name>ns1.ACTKUTST.mop.biz</name><name>ns2.ACTKUTST.mop.biz</name></check></check><clTRID>ACTKUTST.20140101.010101.0</clTRID></command></epp>");
|
2014-01-06 19:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
TEST_run(doWork);
|
|
|
|
return TEST_errorCount();
|
|
|
|
}
|