1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/test/core/toxpk_test.cpp
noavarice 87f219a78f refactor: message text formatting works better now
- tag intersection detected
- variables and constants' names became shorter
2017-02-19 23:53:11 +03:00

112 lines
2.7 KiB
C++

/*
Copyright © 2017 by The qTox Project Contributors
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
qTox 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
*/
#include "src/core/toxid.h"
#include "test/common.h"
#include <QString>
#include <QByteArray>
#include <check.h>
const uint8_t testPkArray[32] = {
0xC7, 0x71, 0x9C, 0x68, 0x08, 0xC1, 0x4B, 0x77, 0x34, 0x80, 0x04,
0x95, 0x6D, 0x1D, 0x98, 0x04, 0x6C, 0xE0, 0x9A, 0x34, 0x37, 0x0E,
0x76, 0x08, 0x15, 0x0E, 0xAD, 0x74, 0xC3, 0x81, 0x5D, 0x30
};
const QString testStr = QStringLiteral("C7719C6808C14B77348004956D1D98046CE09A34370E7608150EAD74C3815D30");
const QByteArray testPk = QByteArray::fromHex(testStr.toLatin1());
const QString echoStr = QStringLiteral("76518406F6A9F2217E8DC487CC783C25CC16A15EB36FF32E335A235342C48A39");
const QByteArray echoPk = QByteArray::fromHex(echoStr.toLatin1());
START_TEST(toStringTest)
{
ToxPk pk(testPk);
ck_assert(testStr == pk.toString());
}
END_TEST
START_TEST(equalTest)
{
ToxPk pk1(testPk);
ToxPk pk2(testPk);
ToxPk pk3(echoPk);
ck_assert(pk1 == pk2);
ck_assert(pk1 != pk3);
ck_assert(!(pk1 != pk2));
}
END_TEST
START_TEST(clearTest)
{
ToxPk empty;
ToxPk pk(testPk);
ck_assert(empty.isEmpty());
ck_assert(!pk.isEmpty());
}
END_TEST
START_TEST(copyTest)
{
ToxPk src(testPk);
ToxPk copy = src;
ck_assert(copy == src);
}
END_TEST
START_TEST(publicKeyTest)
{
ToxPk pk(testPk);
ck_assert(testPk == pk.getKey());
for (int i = 0; i < ToxPk::getPkSize(); i++) {
ck_assert(testPkArray[i] == pk.getBytes()[i]);
}
}
END_TEST
static Suite *toxPkSuite(void)
{
Suite *s = suite_create("ToxPk");
DEFTESTCASE(toString);
DEFTESTCASE(equal);
DEFTESTCASE(clear);
DEFTESTCASE(publicKey);
DEFTESTCASE(copy);
return s;
}
int main(int argc, char *argv[])
{
srand((unsigned int) time(NULL));
Suite *toxPk = toxPkSuite();
SRunner *runner = srunner_create(toxPk);
srunner_run_all(runner, CK_NORMAL);
int res = srunner_ntests_failed(runner);
srunner_free(runner);
return res;
}