summaryrefslogtreecommitdiffstats
path: root/tests/auto/qzip
diff options
context:
space:
mode:
authorQt by Nokia <qt-info@nokia.com>2011-04-27 12:05:43 +0200
committeraxis <qt-info@nokia.com>2011-04-27 12:05:43 +0200
commit38be0d13830efd2d98281c645c3a60afe05ffece (patch)
tree6ea73f3ec77f7d153333779883e8120f82820abe /tests/auto/qzip
Initial import from the monolithic Qt.
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
Diffstat (limited to 'tests/auto/qzip')
-rw-r--r--tests/auto/qzip/.gitignore1
-rw-r--r--tests/auto/qzip/qzip.pro11
-rw-r--r--tests/auto/qzip/testdata/symlink.zipbin0 -> 289 bytes
-rw-r--r--tests/auto/qzip/testdata/test.zipbin0 -> 286 bytes
-rw-r--r--tests/auto/qzip/tst_qzip.cpp167
5 files changed, 179 insertions, 0 deletions
diff --git a/tests/auto/qzip/.gitignore b/tests/auto/qzip/.gitignore
new file mode 100644
index 0000000000..2d7dfbe70c
--- /dev/null
+++ b/tests/auto/qzip/.gitignore
@@ -0,0 +1 @@
+tst_qzip
diff --git a/tests/auto/qzip/qzip.pro b/tests/auto/qzip/qzip.pro
new file mode 100644
index 0000000000..683da62e37
--- /dev/null
+++ b/tests/auto/qzip/qzip.pro
@@ -0,0 +1,11 @@
+load(qttest_p4)
+SOURCES += tst_qzip.cpp
+
+wince*|symbian: {
+ addFiles.files = testdata
+ addFiles.path = .
+ DEPLOYMENT += addFiles
+ !symbian:DEFINES += SRCDIR=\\\".\\\"
+} else {
+ DEFINES += SRCDIR=\\\"$$PWD\\\"
+}
diff --git a/tests/auto/qzip/testdata/symlink.zip b/tests/auto/qzip/testdata/symlink.zip
new file mode 100644
index 0000000000..027f96477a
--- /dev/null
+++ b/tests/auto/qzip/testdata/symlink.zip
Binary files differ
diff --git a/tests/auto/qzip/testdata/test.zip b/tests/auto/qzip/testdata/test.zip
new file mode 100644
index 0000000000..a57ba4e2a9
--- /dev/null
+++ b/tests/auto/qzip/testdata/test.zip
Binary files differ
diff --git a/tests/auto/qzip/tst_qzip.cpp b/tests/auto/qzip/tst_qzip.cpp
new file mode 100644
index 0000000000..536f6dd013
--- /dev/null
+++ b/tests/auto/qzip/tst_qzip.cpp
@@ -0,0 +1,167 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include <QtTest/QtTest>
+#include <QDebug>
+#include <private/qzipwriter_p.h>
+#include <private/qzipreader_p.h>
+
+#ifdef Q_OS_SYMBIAN
+#define SRCDIR "."
+#endif
+
+class tst_QZip : public QObject
+{
+ Q_OBJECT
+public slots:
+ void init();
+ void cleanup();
+
+private slots:
+ void basicUnpack();
+ void symlinks();
+ void readTest();
+ void createArchive();
+};
+
+void tst_QZip::init()
+{
+}
+
+void tst_QZip::cleanup()
+{
+}
+
+void tst_QZip::basicUnpack()
+{
+ QZipReader zip(QString(SRCDIR) + "/testdata/test.zip", QIODevice::ReadOnly);
+ QList<QZipReader::FileInfo> files = zip.fileInfoList();
+ QCOMPARE(files.count(), 2);
+
+ QZipReader::FileInfo fi = files.at(0);
+ QVERIFY(fi.isValid());
+ QCOMPARE(fi.filePath, QString("test/"));
+ QCOMPARE(uint(fi.isDir), (uint) 1);
+ QCOMPARE(uint(fi.isFile), (uint) 0);
+ QCOMPARE(uint(fi.isSymLink), (uint) 0);
+
+ QCOMPARE(fi.permissions,QFile::Permissions( QFile::ReadOwner | QFile::WriteOwner | QFile::ExeOwner
+ | QFile::ReadUser | QFile::WriteUser | QFile::ExeUser ));
+
+ QCOMPARE(fi.lastModified, QDateTime::fromString("2005.11.11 13:08:02", "yyyy.MM.dd HH:mm:ss"));
+
+ fi = files.at(1);
+ QVERIFY(fi.isValid());
+ QCOMPARE(fi.filePath, QString("test/test.txt"));
+ QCOMPARE(uint(fi.isDir), (uint) 0);
+ QCOMPARE(uint(fi.isFile), (uint) 1);
+ QCOMPARE(uint(fi.isSymLink), (uint) 0);
+
+ QVERIFY(fi.permissions == QFile::Permissions( QFile::ReadOwner | QFile::WriteOwner
+ | QFile::ReadUser | QFile::WriteUser ));
+
+ QCOMPARE(fi.lastModified, QDateTime::fromString("2005.11.11 13:08:02", "yyyy.MM.dd HH:mm:ss"));
+
+ QCOMPARE(zip.fileData("test/test.txt"), QByteArray("content\n"));
+
+ fi = files.at(-1);
+ QVERIFY(!fi.isValid());
+}
+
+void tst_QZip::symlinks()
+{
+ QZipReader zip(QString(SRCDIR) + "/testdata/symlink.zip", QIODevice::ReadOnly);
+ QList<QZipReader::FileInfo> files = zip.fileInfoList();
+ QCOMPARE(files.count(), 2);
+
+ QZipReader::FileInfo fi = files.at(0);
+ QVERIFY(fi.isValid());
+ QCOMPARE(fi.filePath, QString("symlink"));
+ QVERIFY(!fi.isDir);
+ QVERIFY(!fi.isFile);
+ QVERIFY(fi.isSymLink);
+
+ QCOMPARE(zip.fileData("symlink"), QByteArray("destination"));
+
+ fi = files.at(1);
+ QVERIFY(fi.isValid());
+ QCOMPARE(fi.filePath, QString("destination"));
+ QVERIFY(!fi.isDir);
+ QVERIFY(fi.isFile);
+ QVERIFY(!fi.isSymLink);
+}
+
+void tst_QZip::readTest()
+{
+ QZipReader zip("foobar.zip", QIODevice::ReadOnly); // non existing file.
+ QList<QZipReader::FileInfo> files = zip.fileInfoList();
+ QCOMPARE(files.count(), 0);
+ QByteArray b = zip.fileData("foobar");
+ QCOMPARE(b.size(), 0);
+}
+
+void tst_QZip::createArchive()
+{
+ QBuffer buffer;
+ QZipWriter zip(&buffer);
+ QByteArray fileContents("simple file contents\nline2\n");
+ zip.addFile("My Filename", fileContents);
+ zip.close();
+ QByteArray zipFile = buffer.buffer();
+
+ // QFile f("createArchiveTest.zip"); f.open(QIODevice::WriteOnly); f.write(zipFile); f.close();
+
+ QBuffer buffer2(&zipFile);
+ QZipReader zip2(&buffer2);
+ QList<QZipReader::FileInfo> files = zip2.fileInfoList();
+ QCOMPARE(files.count(), 1);
+ QZipReader::FileInfo file = files.at(0);
+ QCOMPARE(file.filePath, QString("My Filename"));
+ QCOMPARE(uint(file.isDir), (uint) 0);
+ QCOMPARE(uint(file.isFile), (uint) 1);
+ QCOMPARE(uint(file.isSymLink), (uint) 0);
+ QCOMPARE(file.permissions, QFile::Permissions(QFile::ReadOwner | QFile::WriteOwner | QFile::ReadUser | QFile::WriteUser) );
+ QCOMPARE(file.size, (long long) 27);
+ QCOMPARE(zip2.fileData("My Filename"), fileContents);
+}
+
+QTEST_MAIN(tst_QZip)
+#include "tst_qzip.moc"