mirror of
https://github.com/aria2/aria2.git
synced 2025-01-01 15:44:55 +00:00
49 lines
983 B
C++
49 lines
983 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
|