From c876d3bbefe0dc00c27ca0c12d29da5874946962 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Wed, 15 Dec 2021 21:04:28 +0100 Subject: rbutil: Merge rbutil with utils folder. rbutil uses several components from the utils folder, and can be considered part of utils too. Having it in a separate folder is an arbitrary split that doesn't help anymore these days, so merge them. This also allows other utils to easily use libtools.make without the need to navigate to a different folder. Change-Id: I3fc2f4de19e3e776553efb5dea5f779dfec0dc21 --- utils/rbutilqt/test/test-compareversion.cpp | 145 ++++++++++++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 utils/rbutilqt/test/test-compareversion.cpp (limited to 'utils/rbutilqt/test/test-compareversion.cpp') diff --git a/utils/rbutilqt/test/test-compareversion.cpp b/utils/rbutilqt/test/test-compareversion.cpp new file mode 100644 index 0000000000..94d7697646 --- /dev/null +++ b/utils/rbutilqt/test/test-compareversion.cpp @@ -0,0 +1,145 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * + * Copyright (C) 2010 Dominik Riebeling + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#include +#include +#include "utils.h" + + +class TestVersionCompare : public QObject +{ + Q_OBJECT + private slots: + void testCompare(); + void testCompare_data(); + void testTrim(); + void testTrim_data(); +}; + + +struct { + const char* first; + const char* second; + const int expected; +} const compdata[] = +{ + { "1.2.3", "1.2.3 ", 0 }, + { "1.2.3", " 1.2.3", 0 }, + { "1.2.3", "1.2.4", 1 }, + { "1.2.3", "1.3.0", 1 }, + { "1.2.3", "2.0.0", 1 }, + { "10.22.33", "10.22.33", 0 }, + { "10.22.33", "10.23.0", 1 }, + { "10.22.33", "11.0.0", 1 }, + { "1.2.3", "1.2.3.1", 1 }, + { "1.2.3", "1.2.3-1", 1 }, + { "1.2.3-1", "1.2.3.1", 1 }, + { "1.2.3-10", "1.2.3.0", 1 }, + { "1.2.3-1", "1.2.3.10", 1 }, + { "1.2.3-1", "1.2.3a", 1 }, + { "1.2.3", "1.2.3a", 1 }, + { "1.2.3a", "1.2.3b", 1 }, + { "1.2.3", "1.2.3b", 1 }, + { "1.2.3.0", "2.0.0", 1 }, + { "1.2.3b", "2.0.0", 1 }, + { "1.2.3", "2.0.0.1", 1 }, + { "test-1.2.3", "test-1.2.3.tar.gz", 0 }, + { "1.2.3", "test-1.2.3.tar.bz2", 0 }, + { "test-1.2.3.tar.gz", "test-1.2.3.tar.bz2", 0 }, + { "test-1.2.3.tar.gz", "program-1.2.3.1.tar.bz2", 1 }, + { "program-1.2.3.zip", "program-1.2.3a.zip", 1 }, + { "program-1.2.3.tar.bz2", "2.0.0", 1 }, + { "prog-1.2-64bit.tar.bz2", "prog-1.2.3.tar.bz2", 1 }, + { "prog-1.2-64bit.tar.bz2", "prog-1.2-64bit.tar.bz2", 0 }, + { "prog-1.2-64bit.tar.bz2", "prog-1.2.3-64bit.tar.bz2", 1 }, + { "prog-1.2a-64bit.tar.bz2","prog-1.2b-64bit.tar.bz2", 1 }, + { "prog-1.2-64bit.tar.bz2", "prog-1.2.3a-64bit.tar.bz2", 1 }, + { "prog-1.2a-64bit.tar.bz2","prog-1.2.3-64bit.tar.bz2", 1 }, +}; + +struct { + const char* input; + const QString expected; +} const trimdata[] = +{ + { "prog-1.2-64bit.tar.bz2", "1.2" }, + { "prog-1.2.tar.bz2", "1.2" }, + { "1.2.3", "1.2.3" }, + { " 1.2.3", "1.2.3" }, + { "1.2.3 ", "1.2.3" }, + { "10.22.33", "10.22.33" }, + { "test-1.2.3", "1.2.3" }, + { "1.2.3", "1.2.3" }, + { "test-1.2.3.tar.gz", "1.2.3" }, + { "prog-1.2-64bit.tar.bz2", "1.2" }, + { "prog-1.2a.tar.bz2", "1.2a" }, + { "prog-1.2a-64bit.tar.bz2","1.2a" }, +}; + + +void TestVersionCompare::testCompare_data() +{ + QTest::addColumn("first"); + QTest::addColumn("second"); + QTest::addColumn("expected"); + for(size_t i = 0; i < sizeof(compdata) / sizeof(compdata[0]); i++) { + QTest::newRow("") << compdata[i].first << compdata[i].second << compdata[i].expected; + } +} + + +void TestVersionCompare::testCompare() +{ + QFETCH(QString, first); + QFETCH(QString, second); + QFETCH(int, expected); + + QCOMPARE(Utils::compareVersionStrings(first, second), expected); + if(expected != 0) { + QCOMPARE(Utils::compareVersionStrings(second, first), -expected); + } +} + + +void TestVersionCompare::testTrim_data() +{ + QTest::addColumn("input"); + QTest::addColumn("expected"); + for(size_t i = 0; i < sizeof(trimdata) / sizeof(trimdata[0]); i++) { + QTest::newRow("") << trimdata[i].input << trimdata[i].expected; + } +} + + +void TestVersionCompare::testTrim() +{ + QFETCH(QString, input); + QFETCH(QString, expected); + + QCOMPARE(Utils::trimVersionString(input), expected); +} + + +QTEST_MAIN(TestVersionCompare) + +// this include is needed because we don't use a separate header file for the +// test class. It also needs to be at the end. +#include "test-compareversion.moc" + -- cgit v1.2.3