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
|
/*
This file is part of the KDE project
SPDX-FileCopyrightText: 2013 Kevin Funk <kevin@kfunk.org>
SPDX-FileCopyrightText: 2023 Igor Kushnir <igorkuo@gmail.com>
SPDX-License-Identifier: LGPL-2.0-only
*/
#ifndef KCOMPOUNDJOBTEST_H
#define KCOMPOUNDJOBTEST_H
#include <QObject>
#include "kcompoundjob.h"
using namespace KDevCoreAddons;
class TestJob : public KJob
{
Q_OBJECT
public:
explicit TestJob(QObject *parent = nullptr);
/// Takes 1 second to finish
void start() override;
using KJob::emitResult;
};
class KillableTestJob : public TestJob
{
Q_OBJECT
public:
explicit KillableTestJob(QObject *parent = nullptr);
protected:
bool doKill() override;
};
class TestCompoundJob : public KCompoundJob
{
Q_OBJECT
public:
explicit TestCompoundJob(QObject *parent = nullptr)
: KCompoundJob(parent)
{
}
void start() override;
using KCompoundJob::addSubjob;
using KCompoundJob::clearSubjobs;
protected Q_SLOTS:
void subjobFinished(KJob *job) override;
};
class KCompoundJobTest : public QObject
{
Q_OBJECT
public:
enum class Action { Finish, KillVerbosely, KillQuietly, Destroy };
Q_ENUM(Action)
KCompoundJobTest();
private Q_SLOTS:
void initTestCase();
void testDeletionDuringExecution_data();
void testDeletionDuringExecution();
void testFinishingSubjob_data();
void testFinishingSubjob();
};
#endif // KCOMPOUNDJOBTEST_H
|