mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
114 lines
3.4 KiB
C++
114 lines
3.4 KiB
C++
/* 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 JOBTEST_H
|
|
#define JOBTEST_H
|
|
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QObject>
|
|
#include <kio/job.h>
|
|
|
|
class JobTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
JobTest() {}
|
|
|
|
private Q_SLOTS:
|
|
void initTestCase();
|
|
void cleanupTestCase();
|
|
|
|
// Local tests (kio_file only)
|
|
void storedGet();
|
|
void put();
|
|
void storedPut();
|
|
void copyFileToSamePartition();
|
|
void copyDirectoryToSamePartition();
|
|
void copyDirectoryToExistingDirectory();
|
|
void copyFileToOtherPartition();
|
|
void copyDirectoryToOtherPartition();
|
|
void listRecursive();
|
|
void listFile();
|
|
void killJob();
|
|
void killJobBeforeStart();
|
|
void deleteJobBeforeStart();
|
|
void directorySize();
|
|
void directorySizeError();
|
|
void moveFileToSamePartition();
|
|
void moveDirectoryToSamePartition();
|
|
void moveFileToOtherPartition();
|
|
void moveSymlinkToOtherPartition();
|
|
void moveDirectoryToOtherPartition();
|
|
void moveFileNoPermissions();
|
|
void moveDirectoryNoPermissions();
|
|
void deleteFile();
|
|
void deleteDirectory();
|
|
void deleteSymlink();
|
|
void deleteManyDirs();
|
|
void deleteManyFilesIndependently();
|
|
void deleteManyFilesTogether();
|
|
void rmdirEmpty();
|
|
void rmdirNotEmpty();
|
|
void stat();
|
|
void mostLocalUrl();
|
|
void mimeType();
|
|
void mimeTypeError();
|
|
//void newApiPerformance();
|
|
void calculateRemainingSeconds();
|
|
void moveFileDestAlreadyExists();
|
|
void moveDestAlreadyExistsAutoRename_data();
|
|
void moveDestAlreadyExistsAutoRename();
|
|
|
|
void moveAndOverwrite();
|
|
void moveOverSymlinkToSelf();
|
|
|
|
void getInvalidUrl();
|
|
|
|
Q_SIGNALS:
|
|
void exitLoop();
|
|
|
|
protected Q_SLOTS:
|
|
void slotEntries( KIO::Job*, const KIO::UDSEntryList& lst );
|
|
void slotGetResult( KJob* );
|
|
void slotDataReq( KIO::Job*, QByteArray& );
|
|
void slotResult( KJob* );
|
|
void slotMimetype(KIO::Job*, const QString&);
|
|
|
|
private:
|
|
void enterLoop();
|
|
enum { AlreadyExists = 1 };
|
|
void copyLocalFile( const QString& src, const QString& dest );
|
|
void copyLocalDirectory( const QString& src, const QString& dest, int flags = 0 );
|
|
void moveLocalFile( const QString& src, const QString& dest );
|
|
void moveLocalDirectory( const QString& src, const QString& dest );
|
|
//void copyFileToSystem( bool resolve_local_urls );
|
|
void deleteSymlink(bool using_fast_path);
|
|
void deleteManyDirs(bool using_fast_path);
|
|
void deleteManyFilesTogether(bool using_fast_path);
|
|
void moveDestAlreadyExistsAutoRename(const QString& destDir, bool moveDirs);
|
|
|
|
int m_result;
|
|
QByteArray m_data;
|
|
QStringList m_names;
|
|
int m_dataReqCount;
|
|
QString m_mimetype;
|
|
};
|
|
|
|
#endif
|