summaryrefslogtreecommitdiffstats
path: root/kioslave/trash/testtrash.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit4aed2c8219774f5d797760606b8489a92ddc5163 (patch)
tree3f8c130f7d269626bf6a9447407ef6c35954426a /kioslave/trash/testtrash.h
downloadtdebase-4aed2c8219774f5d797760606b8489a92ddc5163.tar.gz
tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslave/trash/testtrash.h')
-rw-r--r--kioslave/trash/testtrash.h118
1 files changed, 118 insertions, 0 deletions
diff --git a/kioslave/trash/testtrash.h b/kioslave/trash/testtrash.h
new file mode 100644
index 000000000..70d06dc8b
--- /dev/null
+++ b/kioslave/trash/testtrash.h
@@ -0,0 +1,118 @@
+/* This file is part of the KDE project
+ Copyright (C) 2004 David Faure <faure@kde.org>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#ifndef TESTTRASH_H
+#define TESTTRASH_H
+
+#include <qobject.h>
+
+class TestTrash : public QObject
+{
+ Q_OBJECT
+
+public:
+ TestTrash() {}
+ void setup();
+ void cleanTrash();
+ void runAll();
+
+ // tests
+
+ void urlTestFile();
+ void urlTestDirectory();
+ void urlTestSubDirectory();
+
+ void trashFileFromHome();
+ void trashPercentFileFromHome();
+ void trashUtf8FileFromHome();
+ void trashUmlautFileFromHome();
+ void testTrashNotEmpty();
+ void trashFileFromOther();
+ void trashFileIntoOtherPartition();
+ void trashFileOwnedByRoot();
+ void trashSymlinkFromHome();
+ void trashSymlinkFromOther();
+ void trashBrokenSymlinkFromHome();
+ void trashDirectoryFromHome();
+ void trashReadOnlyDirFromHome();
+ void trashDirectoryFromOther();
+ void trashDirectoryOwnedByRoot();
+
+ void tryRenameInsideTrash();
+
+ void statRoot();
+ void statFileInRoot();
+ void statDirectoryInRoot();
+ void statSymlinkInRoot();
+ void statFileInDirectory();
+
+ void copyFileFromTrash();
+ void copyFileInDirectoryFromTrash();
+ void copyDirectoryFromTrash();
+ void copySymlinkFromTrash();
+
+ void moveFileFromTrash();
+ void moveFileInDirectoryFromTrash();
+ void moveDirectoryFromTrash();
+ void moveSymlinkFromTrash();
+
+ void listRootDir();
+ void listRecursiveRootDir();
+ void listSubDir();
+
+ void delRootFile();
+ void delFileInDirectory();
+ void delDirectory();
+
+ void getFile();
+ void restoreFile();
+ void restoreFileFromSubDir();
+ void restoreFileToDeletedDirectory();
+
+ void emptyTrash();
+
+private slots:
+ void slotEntries( KIO::Job*, const KIO::UDSEntryList& );
+
+private:
+ void trashFile( const QString& origFilePath, const QString& fileId );
+ void trashSymlink( const QString& origFilePath, const QString& fileName, bool broken );
+ void trashDirectory( const QString& origPath, const QString& fileName );
+ void copyFromTrash( const QString& fileId, const QString& destPath, const QString& relativePath = QString::null );
+ void moveFromTrash( const QString& fileId, const QString& destPath, const QString& relativePath = QString::null );
+
+ QString homeTmpDir() const;
+ QString otherTmpDir() const;
+ QString utf8FileName() const;
+ QString umlautFileName() const;
+ QString readOnlyDirPath() const;
+
+ QString m_trashDir;
+
+ QString m_otherPartitionTopDir;
+ QString m_otherPartitionTrashDir;
+ bool m_tmpIsWritablePartition;
+ int m_tmpTrashId;
+ int m_otherPartitionId;
+
+ int m_entryCount;
+ QStringList m_listResult;
+};
+
+#endif