mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
907b79d3b8
We must not use the SI units if we use power of 2 I believe that we should use SI units and power of 10 But since the server still use power of 2, we need to show the same numbers But at least we use the proper standard IEC unit that are explicit
80 lines
2.9 KiB
C++
80 lines
2.9 KiB
C++
/*
|
|
This software is in the public domain, furnished "as is", without technical
|
|
support, and with no warranty, express or implied, as to its usefulness for
|
|
any purpose.
|
|
*/
|
|
|
|
#ifndef MIRALL_TESTUTILITY_H
|
|
#define MIRALL_TESTUTILITY_H
|
|
|
|
#include <QtTest>
|
|
|
|
#include "utility.h"
|
|
|
|
using namespace OCC::Utility;
|
|
|
|
class TestUtility : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
void testFormatFingerprint()
|
|
{
|
|
QVERIFY2(formatFingerprint("68ac906495480a3404beee4874ed853a037a7a8f")
|
|
== "68:ac:90:64:95:48:0a:34:04:be:ee:48:74:ed:85:3a:03:7a:7a:8f",
|
|
"Utility::formatFingerprint() is broken");
|
|
}
|
|
void testOctetsToString()
|
|
{
|
|
QLocale::setDefault(QLocale("en"));
|
|
QCOMPARE(octetsToString(999) , QString("999 B"));
|
|
QCOMPARE(octetsToString(1000) , QString("1,000 B"));
|
|
QCOMPARE(octetsToString(1010) , QString("1,010 B"));
|
|
QCOMPARE(octetsToString(1024) , QString("1 KiB"));
|
|
QCOMPARE(octetsToString(1110) , QString("1.1 KiB"));
|
|
|
|
QCOMPARE(octetsToString(9110) , QString("8.9 KiB"));
|
|
QCOMPARE(octetsToString(9910) , QString("9.7 KiB"));
|
|
QCOMPARE(octetsToString(9999) , QString("9.8 KiB"));
|
|
QCOMPARE(octetsToString(10240) , QString("10 KiB"));
|
|
|
|
QCOMPARE(octetsToString(123456) , QString("121 KiB"));
|
|
QCOMPARE(octetsToString(1234567) , QString("1.2 MiB"));
|
|
QCOMPARE(octetsToString(12345678) , QString("12 MiB"));
|
|
QCOMPARE(octetsToString(123456789) , QString("118 MiB"));
|
|
QCOMPARE(octetsToString(1000LL*1000*1000 * 5) , QString("4.7 GiB"));
|
|
QCOMPARE(octetsToString(1024LL*1024*1024 * 5) , QString("5 GiB"));
|
|
|
|
QCOMPARE(octetsToString(1), QString("1 B"));
|
|
QCOMPARE(octetsToString(2), QString("2 B"));
|
|
QCOMPARE(octetsToString(1024), QString("1 KiB"));
|
|
QCOMPARE(octetsToString(1024*1024), QString("1 MiB"));
|
|
QCOMPARE(octetsToString(1024LL*1024*1024), QString("1 GiB"));
|
|
QCOMPARE(octetsToString(1024LL*1024*1024*1024), QString("1 TiB"));
|
|
}
|
|
|
|
void testLaunchOnStartup()
|
|
{
|
|
qsrand(QDateTime::currentDateTime().toTime_t());
|
|
QString postfix = QString::number(qrand());
|
|
|
|
const QString appName = QString::fromLatin1("testLaunchOnStartup.%1").arg(postfix);
|
|
const QString guiName = "LaunchOnStartup GUI Name";
|
|
|
|
QVERIFY(hasLaunchOnStartup(appName) == false);
|
|
setLaunchOnStartup(appName, guiName, true);
|
|
QVERIFY(hasLaunchOnStartup(appName) == true);
|
|
setLaunchOnStartup(appName, guiName, false);
|
|
QVERIFY(hasLaunchOnStartup(appName) == false);
|
|
}
|
|
|
|
void testToCSyncScheme()
|
|
{
|
|
QVERIFY(toCSyncScheme("http://example.com/owncloud/") ==
|
|
"owncloud://example.com/owncloud/");
|
|
QVERIFY(toCSyncScheme("https://example.com/owncloud/") ==
|
|
"ownclouds://example.com/owncloud/");
|
|
}
|
|
};
|
|
|
|
#endif
|