#include "XmlRpcRequestProcessor.h" #include #include "XmlRpcRequestParserStateMachine.h" #include "RecoverableException.h" namespace aria2 { namespace xmlrpc { class XmlRpcRequestProcessorTest:public CppUnit::TestFixture { CPPUNIT_TEST_SUITE(XmlRpcRequestProcessorTest); CPPUNIT_TEST(testParseMemory); CPPUNIT_TEST(testParseMemory_shouldFail); CPPUNIT_TEST_SUITE_END(); public: void setUp() {} void tearDown() {} void testParseMemory(); void testParseMemory_shouldFail(); }; CPPUNIT_TEST_SUITE_REGISTRATION(XmlRpcRequestProcessorTest); void XmlRpcRequestProcessorTest::testParseMemory() { XmlRpcRequestProcessor proc; XmlRpcRequest req = proc.parseMemory("" "" " aria2.addURI" " " " " " 100" " " " " " " " " " " " max-count" " 65535" " " " " " seed-ratio" " 0.99" " " " " " " " " " " " " " " " " " pudding" " aGVsbG8gd29ybGQ=" " " " " " " " " " " ""); CPPUNIT_ASSERT_EQUAL(std::string("aria2.addURI"), req.methodName); CPPUNIT_ASSERT_EQUAL((size_t)3, req.params->size()); CPPUNIT_ASSERT_EQUAL((Integer::ValueType)100, asInteger(req.params->get(0))->i()); const Dict* dict = asDict(req.params->get(1)); CPPUNIT_ASSERT_EQUAL((Integer::ValueType)65535, asInteger(dict->get("max-count"))->i()); // Current implementation handles double as string. CPPUNIT_ASSERT_EQUAL(std::string("0.99"), asString(dict->get("seed-ratio"))->s()); const List* list = asList(req.params->get(2)); CPPUNIT_ASSERT_EQUAL(std::string("pudding"), asString(list->get(0))->s()); CPPUNIT_ASSERT_EQUAL(std::string("hello world"), asString(list->get(1))->s()); } void XmlRpcRequestProcessorTest::testParseMemory_shouldFail() { XmlRpcRequestProcessor proc; try { proc.parseMemory("" " aria2.addURI" " " " " " 100" " "); CPPUNIT_FAIL("exception must be thrown."); } catch(RecoverableException& e) { // success } { XmlRpcRequest req = proc.parseMemory("" " aria2.addURI" " " " " ""); CPPUNIT_ASSERT(req.params); } try { XmlRpcRequest req = proc.parseMemory("" " aria2.addURI" ""); CPPUNIT_FAIL("exception must be thrown."); } catch(RecoverableException& e) { // success } } } // namespace xmlrpc } // namespace aria2