view ui/tests/cinstprocesstest.h @ 249:6a7eb102716d

Remove code duplication by unifying the certificatelist. You should now check for isInstallCert to determine wether this certificate should be installed or removed. Leaving the getInstallCertificates and getRemoveCertificates in place for compatibilty would have been easier to keep the tests stable.
author Andre Heinecke <aheinecke@intevation.de>
date Mon, 31 Mar 2014 08:06:17 +0000
parents 0df62decff90
children d95fd88f6616
line wrap: on
line source
#ifndef CINSTPROCESSTEST_H
#define CINSTPROCESSTEST_H

/* @file Tests for the cinst process
 * @brief Tests for the cinst process as well as the UI side
 */

#include <QObject>
#include <QProcess>
#include <QTest>
#include "certificatelist.h"

class CinstProcessTest: public QObject
{
    Q_OBJECT

private:
    QProcess* startCinstProcess();
    CertificateList validList;
    CertificateList otherList;
    CertificateList invalidList;

private Q_SLOTS:
    void initTestCase();
    void testValidInput();
    void testInvalidInstruction();
    void testNoInput();
    void testNoList();
    void testGarbageInput();
    void testNoInstructions();
    void testUninstall();
};
#endif


http://wald.intevation.org/projects/trustbridge/