2008-04-27 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Rewritten Exception class. Throw exception object, not its pointer and
	catch by reference, so that remove problematic delete operator for
	catched exception.
	* src/Exception.cc
	* src/Exception.h
	* test/ExceptionTest.cc
	* src/*: All files throwing/catching exception.
	* test/*: All files throwing/catching exception.
This commit is contained in:
Tatsuhiro Tsujikawa 2008-04-27 02:22:14 +00:00
parent a7952cce05
commit 1ef99931e1
159 changed files with 1135 additions and 1000 deletions

37
test/ExceptionTest.cc Normal file
View file

@ -0,0 +1,37 @@
#include "Exception.h"
#include "DownloadFailureException.h"
#include "Util.h"
#include <iostream>
#include <cppunit/extensions/HelperMacros.h>
namespace aria2 {
class ExceptionTest:public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(ExceptionTest);
CPPUNIT_TEST(testStackTrace);
CPPUNIT_TEST_SUITE_END();
public:
void setUp() {}
void tearDown() {}
void testStackTrace();
};
CPPUNIT_TEST_SUITE_REGISTRATION(ExceptionTest);
void ExceptionTest::testStackTrace()
{
DownloadFailureException c1("cause1");
DownloadFailureException c2("cause2", c1);
DownloadFailureException e("exception thrown", c2);
CPPUNIT_ASSERT_EQUAL(std::string("Exception: exception thrown\n"
" -> cause2\n"
" -> cause1\n"),
e.stackTrace());
}
} // namespace aria2