1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
#include "zipios++/zipios-config.h"
#include "zipios++/meta-iostreams.h"
#include <memory>
#include <vector>
#include <sstream>
#include <stdlib.h>
#include <fstream>
#include "zipios++/zipfile.h"
#include "zipios++/zipinputstream.h"
#include "src/outputstringstream.h"
#include "zipfiletest.h"
using namespace zipios ;
using std::cerr;
using std::cout;
using std::endl;
using std::auto_ptr;
using std::ifstream;
using std::string;
using std::vector;
void zipios::ZipFileTest::testUnzip() {
vector<string> entries;
entries.push_back("file1.txt");
entries.push_back("file2.txt");
entries.push_back("file3.txt");
entries.push_back("testfile.bin");
ZipFile zipFile("test.zip");
CPPUNIT_ASSERT_EQUAL(4, zipFile.size());
compareZipFile("test.zip", entries);
}
void zipios::ZipFileTest::testZipUnzip() {
const string zipFileName = "gentest.zip";
vector<string> entries;
entries.push_back("testfile.bin");
entries.push_back("Makefile.in");
entries.push_back("zipfiletest.cpp");
entries.push_back("zipfiletest.h");
entries.push_back("all_tests");
writeZipFile(zipFileName, entries);
compareZipFile(zipFileName, entries);
}
void zipios::ZipFileTest::testComment(){
// ZipFile zipFile("test.zip");
//CPPUNIT_ASSERT_EQUAL("something", zipFile.getComment());
}
void zipios::ZipFileTest::writeZipFile(const string &zipFileName, vector<string> entryFileNames) {
ZipOutputStream zos(zipFileName);
std::vector<string>::const_iterator it = entryFileNames.begin();
for ( ; it != entryFileNames.end() ; ++it ) {
writeFileToZipOutputStream(zos, *it);
}
zos.close();
}
void zipios::ZipFileTest::compareZipFile(const string &zipFileName, vector<string> entryFileNames) {
using namespace std;
ZipFile zipFile(zipFileName);
vector<string>::const_iterator it = entryFileNames.begin();
for ( ; it != entryFileNames.end() ; ++it ) {
auto_ptr<istream> zis(zipFile.getInputStream(*it));
if (zis.get() == 0)
CPPUNIT_FAIL("Entry '"+*it+"' not found in zip file");
ifstream fis((*it).c_str(), ios::in | ios::binary);
compareStreams(*it, *zis, fis);
}
}
void zipios::ZipFileTest::writeFileToZipOutputStream( ZipOutputStream &zos, const string &filename ) {
zos.putNextEntry( ZipCDirEntry( filename ) ) ;
ifstream ifs( filename.c_str(), ios::in | ios::binary ) ;
if (! ifs)
CPPUNIT_FAIL("Could not open file '"+filename+"'");
zos << ifs.rdbuf() ;
// cerr << "ostream Stream state: " ;
// cerr << "good() = " << zos.good() << ",\t" ;
// cerr << "fail() = " << zos.fail() << ",\t" ;
// cerr << "bad() = " << zos.bad() << ",\t" ;
// cerr << "eof() = " << zos.eof() << endl ;
// cerr << "istream Stream state: " ;
// cerr << "good() = " << ifs.good() << ",\t" ;
// cerr << "fail() = " << ifs.fail() << ",\t" ;
// cerr << "bad() = " << ifs.bad() << ",\t" ;
// cerr << "eof() = " << ifs.eof() << endl ;
}
void zipios::ZipFileTest::compareStreams(const std::string& entryName,
istream &is1, istream &is2) {
OutputStringStream buf1, buf2;
buf1 << is1.rdbuf();
buf2 << is2.rdbuf();
CPPUNIT_ASSERT_MESSAGE("Streams differ for entry '"+entryName+"'",
buf1.str() == buf2.str());
}
void zipios::ZipFileTest::testClone(){
ZipFile zipFile("test.zip");
std::cout<<"Testing cloning..need some help here"<<std::endl;
// FileCollection newzip = clone("test.zip");
//newzip.clone("test.zip");
}
/** \file
\anchor zipfiletest_anchor
Source code to a small program that tests the functionality of Zipios++.
*/
/*
Zipios++ - a small C++ library that provides easy access to .zip files.
Copyright (C) 2000 Thomas Sndergaard
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
|