This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/tests/auto/macaddress/testmacaddress.cpp
2025-11-17 16:42:41 +01:00

129 lines
4.9 KiB
C++

// SPDX-License-Identifier: GPL-3.0-or-later
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright (C) 2013 - 2024, nymea GmbH
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
*
* This file is part of nymea.
*
* nymea is free 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.
*
* nymea 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 nymea. If not, see <https://www.gnu.org/licenses/>.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "nymeatestbase.h"
#include <network/macaddress.h>
using namespace nymeaserver;
class TestMacAddress: public NymeaTestBase
{
Q_OBJECT
protected slots:
void initTestCase();
private:
QString m_zeroMacString = QString("00:00:00:00:00:00");
QByteArray m_zeroMacByteArray = QByteArray(6, '\0');
QString m_alphaNumericMacString = QString("01:23:45:ab:cd:ef");
QByteArray m_alphaNumericByteArray = QByteArray::fromHex("012345abcdef");
private slots:
void defaultConstructor();
void macAddressValidation_data();
void macAddressValidation();
};
void TestMacAddress::initTestCase()
{
NymeaTestBase::initTestCase("*.debug=false\nTests.debug=true\n");
}
void TestMacAddress::defaultConstructor()
{
MacAddress mac;
QVERIFY(mac.isNull());
QVERIFY(mac.isValid());
QCOMPARE(mac.toByteArray().count(), 6);
QCOMPARE(mac.toByteArray(), QByteArray(6, '\0'));
QVERIFY(mac.toString() == m_zeroMacString);
QVERIFY(!MacAddress(QString("acme")).isValid());
QVERIFY(MacAddress(QString("acme")).isNull());
QVERIFY(!MacAddress(QByteArray()).isValid());
QVERIFY(MacAddress(QByteArray()).isNull());
QVERIFY(MacAddress(QByteArray()).toByteArray().isEmpty());
QCOMPARE(MacAddress(m_zeroMacByteArray).toString(), m_zeroMacString);
QCOMPARE(MacAddress(m_zeroMacString).toByteArray(), m_zeroMacByteArray);
QCOMPARE(MacAddress(m_alphaNumericByteArray).toString(), m_alphaNumericMacString);
QCOMPARE(MacAddress(m_alphaNumericMacString).toByteArray(), m_alphaNumericByteArray);
QByteArray validRawData = QByteArray::fromHex("aabbccddeeff");
QCOMPARE(MacAddress(QString("aa:bb:cc:dd:ee:ff")).toByteArray(), validRawData);
QCOMPARE(MacAddress(QString("aa:bb:cc:dd:ee:ff")), MacAddress(validRawData));
QCOMPARE(MacAddress(QString("aabbccddeeff")).toByteArray(), validRawData);
QCOMPARE(MacAddress(QString("aabbccddeeff")), MacAddress(validRawData));
}
void TestMacAddress::macAddressValidation_data()
{
QTest::addColumn<QString>("macString");
QTest::addColumn<bool>("isValid");
QTest::addColumn<bool>("isNull");
QTest::addColumn<QString>("toString");
QString mixedString = "11:22:33:dd:ee:ff";
QString aplhaString = "aa:bb:cc:dd:ee:ff";
QTest::newRow("Valid zero") << "00:00:00:00:00:00" << true << true << m_zeroMacString;
QTest::newRow("Valid zero no colon") << "000000000000" << true << true << m_zeroMacString;
QTest::newRow("Valid non zero lower") << "11:22:33:dd:ee:ff" << true << false << mixedString;
QTest::newRow("Valid non zero upper") << "11:22:33:DD:EE:FF" << true << false << mixedString;
QTest::newRow("Valid non zero mixed case") << "11:22:33:Dd:Ee:Ff" << true << false << mixedString;
QTest::newRow("Valid non zero space separator") << "aa bb cc dd ee ff" << true << false << aplhaString;
QTest::newRow("Valid non zero dash separator") << "aa-bb-cc-dd-ee-ff" << true << false << aplhaString;
QTest::newRow("Valid non zero dot separator") << "aa.bb.cc.dd.ee.ff" << true << false << aplhaString;
QTest::newRow("Valid non zero crazy separator") << "aa#bb?cclddxeeäff" << true << false << aplhaString;
QTest::newRow("Valid non zero mixed separators") << "aa-bb cc.dd ee-ff" << true << false << aplhaString;
QTest::newRow("Valid non zero without colon") << "aabbccddeeff" << true << false << aplhaString;
QTest::newRow("Invalid characters") << "xx:yy:zz:dd:ee:ff" << false << true << m_zeroMacString;
QTest::newRow("Too short") << "xx:yy:zz:dd:ee" << false << true << m_zeroMacString;
QTest::newRow("Too long") << "xx:yy:zz:dd:ee:ee:ee" << false << true << m_zeroMacString;
}
void TestMacAddress::macAddressValidation()
{
QFETCH(QString, macString);
QFETCH(bool, isValid);
QFETCH(bool, isNull);
QFETCH(QString, toString);
MacAddress mac(macString);
qCDebug(dcTests()) << "Verify" << macString << "resulting in" << mac;
QCOMPARE(mac.isValid(), isValid);
QCOMPARE(mac.isNull(), isNull);
QCOMPARE(mac.toString(), toString);
}
#include "testmacaddress.moc"
QTEST_MAIN(TestMacAddress)