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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
#include "testutils.h"
#include "common/checksums.h"
#include "gui/accountmanager.h"
#include "libsync/creds/httpcredentials.h"
#include <QCoreApplication>
#include <QRandomGenerator>
namespace {
class HttpCredentialsTest : public OCC::HttpCredentials
{
public:
HttpCredentialsTest(const QString &user, const QString &password)
: HttpCredentials(OCC::DetermineAuthTypeJob::AuthType::Basic, user, password)
{
}
void askFromUser() override
{
}
};
}
namespace OCC {
namespace TestUtils {
TestUtilsPrivate::AccountStateRaii createDummyAccount()
{
// ensure we have an instance of folder man
std::ignore = folderMan();
// don't use the account manager to create the account, it would try to use widgets
auto acc = Account::create(QUuid::createUuid());
HttpCredentialsTest *cred = new HttpCredentialsTest(QStringLiteral("testuser"), QStringLiteral("secret"));
acc->setCredentials(cred);
acc->setUrl(QUrl(QStringLiteral("http://localhost/owncloud")));
acc->setDavDisplayName(QStringLiteral("fakename") + acc->uuid().toString(QUuid::WithoutBraces));
acc->setCapabilities({acc->url(), OCC::TestUtils::testCapabilities()});
return {OCC::AccountManager::instance()->addAccount(acc).get(), &TestUtilsPrivate::accountStateDeleter};
}
FolderDefinition createDummyFolderDefinition(const AccountPtr &account, const QString &path)
{
// TODO: legacy
auto d = OCC::FolderDefinition::createNewFolderDefinition(account->davUrl(), {});
d.setLocalPath(path);
d.setTargetPath(path);
return d;
}
QTemporaryDir createTempDir()
{
return QTemporaryDir { QStringLiteral("%1/ownCloud-unit-test-%2-XXXXXX").arg(QDir::tempPath(), qApp->applicationName()) };
}
FolderMan *folderMan()
{
static QPointer<FolderMan> man;
if (!man) {
man = FolderMan::createInstance().release();
QObject::connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit, man, &FolderMan::deleteLater);
};
return man;
}
bool writeRandomFile(const QString &fname, int size)
{
auto rg = QRandomGenerator::global();
const int maxSize = 10 * 10 * 1024;
if (size == -1) {
size = static_cast<int>(rg->generate() % maxSize);
}
QString randString;
for (int i = 0; i < size; i++) {
int r = static_cast<int>(rg->generate() % 128);
randString.append(QChar(r));
}
QFile file(fname);
if (file.open(QIODevice::WriteOnly | QIODevice::Text)) {
QTextStream out(&file);
out << randString;
// optional, as QFile destructor will already do it:
file.close();
return true;
}
return false;
}
const QVariantMap testCapabilities(CheckSums::Algorithm algo)
{
static const auto algorithmNames = [] {
QVariantList out;
for (const auto &a : CheckSums::All) {
out.append(Utility::enumToString(a.first));
}
return out;
}();
return {{QStringLiteral("core"),
QVariantMap{{QStringLiteral("status"),
QVariantMap{{QStringLiteral("installed"), QStringLiteral("1")}, {QStringLiteral("maintenance"), QStringLiteral("0")},
{QStringLiteral("needsDbUpgrade"), QStringLiteral("0")}, {QStringLiteral("version"), QStringLiteral("10.11.0.0")},
{QStringLiteral("versionstring"), QStringLiteral("10.11.0")}, {QStringLiteral("edition"), QStringLiteral("Community")},
{QStringLiteral("productname"), QStringLiteral("Infinite Scale")}, {QStringLiteral("product"), QStringLiteral("Infinite Scale")},
{QStringLiteral("productversion"), QStringLiteral("2.0.0-beta1+7c2e3201b")}}}}},
{QStringLiteral("files"), QVariantList{}}, {QStringLiteral("dav"), QVariantMap{{QStringLiteral("chunking"), QStringLiteral("1.0")}}},
{QStringLiteral("checksums"),
QVariantMap{{QStringLiteral("preferredUploadType"), Utility::enumToString(algo)}, {QStringLiteral("supportedTypes"), algorithmNames}}}};
}
void TestUtilsPrivate::accountStateDeleter(OCC::AccountState *acc)
{
if (acc) {
OCC::AccountManager::instance()->deleteAccount(acc);
}
}
}
}
|