aria2/test/SignatureTest.cc
Tatsuhiro Tsujikawa 3ee6784b76 Made `make distcheck' pass.
We added 2 macros A2_TEST_DIR and A2_TEST_OUT_DIR to pass tests in
`make distcheck`.  A2_TEST_DIR refers to test directory.  All output
files by unit tests are now created under A2_TEST_OUT_DIR directory.
2010-12-02 22:52:35 +09:00

48 lines
984 B
C++

#include "Signature.h"
#include <fstream>
#include <cppunit/extensions/HelperMacros.h>
#include "Exception.h"
#include "File.h"
namespace aria2 {
class SignatureTest:public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(SignatureTest);
CPPUNIT_TEST(testSave);
CPPUNIT_TEST_SUITE_END();
public:
void setUp() {}
void tearDown() {}
void testSave();
};
CPPUNIT_TEST_SUITE_REGISTRATION(SignatureTest);
void SignatureTest::testSave()
{
Signature sig;
sig.setBody("SIGNATURE");
std::string filepath = A2_TEST_OUT_DIR"/aria2_SignatureTest_testSave";
File outfile(filepath);
if(outfile.exists()) {
outfile.remove();
}
CPPUNIT_ASSERT(sig.save(filepath));
{
std::ifstream in(filepath.c_str(), std::ios::binary);
std::string fileContent;
in >> fileContent;
CPPUNIT_ASSERT_EQUAL(sig.getBody(), fileContent);
}
// second attempt to save will fail because file already exists.
CPPUNIT_ASSERT(!sig.save(filepath));
}
} // namespace aria2