DRDE/ACTK1_0/se/HelloTest.cpp

25 lines
623 B
C++

#include "se/Hello.hpp"
#include "se/CLTRID.hpp"
#include "common/init.hpp"
#include "common/Test.hpp"
#include <iostream>
using namespace std;
void doWork()
{
init("./etc/toolkit2.conf");
CLTRID::setClID("ACTKUTST");
Hello cmd;
const string xml(cmd.toXML());
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\"><hello/></epp>");
}
int main(int argc, char* argv[])
{
TEST_run(doWork);
return TEST_errorCount();
}