dec5421ca2
Return status as int, not as string, and provide a separate function for converting to string. This allows to filter based on the actual status, not a (localized) status string, which is more robust. Fix a regression that made players with missing status value show up as retired. Change-Id: I15f83ae0df484199b1b3b5b95069db8b4d425987
128 lines
5.7 KiB
C++
128 lines
5.7 KiB
C++
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
*
|
|
* Copyright (C) 2012 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 <QtTest/QtTest>
|
|
#include <QObject>
|
|
#include "serverinfo.h"
|
|
|
|
class TestServerInfo : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testMain();
|
|
};
|
|
|
|
const char* testinfo =
|
|
"[release]\n"
|
|
"archosfmrecorder=3.11.2\n"
|
|
"iaudiom3=3.11.2,http://dl.rockbox.org/release/3.11.2/rockbox-iaudiom5-3.11.2.zip\n"
|
|
"sansae200 = 3.11.2\n"
|
|
"iriverh100 = 3.11.2, http://dl.rockbox.org/release/3.11.2/rockbox-iriverh100-3.11.2.zip\n"
|
|
"iriverh300 = \n"
|
|
"[release-candidate]\n"
|
|
"gigabeatfx=f9dce96,http://dl.rockbox.org/rc/f9dce96/rockbox-gigabeatfx.zip\n"
|
|
"archosfmrecorder=f9dce96\n"
|
|
"archosrecorder = f9dce96\n"
|
|
"iaudiox5=f9dce96,http://dl.rockbox.org/rc/f9dce96/rockbox-iaudiox5.zip\n"
|
|
"[dailies]\n"
|
|
"timestamp = 20201113\n"
|
|
"rev = 362f7a3\n"
|
|
"[bleeding]\n"
|
|
"timestamp = 20201114T105723Z\n"
|
|
"rev = be1be79\n"
|
|
"[status]\n"
|
|
"archosfmrecorder=3\n"
|
|
"iriverh100=2\n"
|
|
"iriverh300=1\n"
|
|
"iriverh10=0\n"
|
|
;
|
|
|
|
|
|
struct testvector {
|
|
const char* target;
|
|
ServerInfo::ServerInfos entry;
|
|
const char* expected;
|
|
};
|
|
|
|
|
|
const struct testvector testdata[] =
|
|
{
|
|
{ "archosfmrecorder", ServerInfo::CurReleaseVersion, "3.11.2" },
|
|
{ "archosfmrecorder", ServerInfo::CurStatus, "3" },
|
|
{ "iaudiom3", ServerInfo::CurReleaseVersion, "3.11.2" },
|
|
{ "iaudiom3", ServerInfo::CurReleaseUrl, "http://dl.rockbox.org/release/3.11.2/rockbox-iaudiom5-3.11.2.zip" },
|
|
{ "sansae200", ServerInfo::CurReleaseVersion, "3.11.2" },
|
|
{ "sansae200", ServerInfo::CurReleaseUrl, "https://unittest/release/3.11.2/rockbox-sansae200-3.11.2.zip" },
|
|
{ "iriverh100", ServerInfo::CurReleaseVersion, "3.11.2" },
|
|
{ "iriverh100", ServerInfo::CurReleaseUrl, "http://dl.rockbox.org/release/3.11.2/rockbox-iriverh100-3.11.2.zip" },
|
|
{ "iriverh100", ServerInfo::CurStatus, "2" },
|
|
{ "iriverh100", ServerInfo::CurDevelUrl, "https://unittest/dev/rockbox-iriverh100.zip" },
|
|
{ "iriverh300", ServerInfo::CurReleaseVersion, "" },
|
|
{ "iriverh300", ServerInfo::CurReleaseUrl, "" },
|
|
{ "iriverh300", ServerInfo::CurStatus, "1" },
|
|
{ "iriverh10", ServerInfo::CurReleaseVersion, "" },
|
|
{ "iriverh10", ServerInfo::CurReleaseUrl, "" },
|
|
{ "iriverh10", ServerInfo::CurStatus, "0" },
|
|
{ "gigabeatfx", ServerInfo::RelCandidateVersion, "f9dce96" },
|
|
{ "gigabeatfx", ServerInfo::RelCandidateUrl, "http://dl.rockbox.org/rc/f9dce96/rockbox-gigabeatfx.zip" },
|
|
{ "archosfmrecorder", ServerInfo::RelCandidateVersion, "f9dce96" },
|
|
{ "archosfmrecorder", ServerInfo::RelCandidateUrl, "https://unittest/rc/f9dce96/rockbox-archosfmrecorder-f9dce96.zip" },
|
|
{ "archosrecorder", ServerInfo::RelCandidateVersion, "f9dce96" },
|
|
{ "archosrecorder", ServerInfo::RelCandidateUrl, "https://unittest/rc/f9dce96/rockbox-archosrecorder-f9dce96.zip" },
|
|
{ "iaudiox5", ServerInfo::RelCandidateVersion, "f9dce96" },
|
|
{ "iaudiox5", ServerInfo::RelCandidateUrl, "http://dl.rockbox.org/rc/f9dce96/rockbox-iaudiox5.zip" },
|
|
{ "iaudiox5.v", ServerInfo::RelCandidateVersion, "f9dce96" },
|
|
{ "iaudiox5.v", ServerInfo::RelCandidateUrl, "http://dl.rockbox.org/rc/f9dce96/rockbox-iaudiox5.zip" },
|
|
{ "iaudiox5.v", ServerInfo::BleedingRevision, "be1be79" },
|
|
{ "iaudiox5.v", ServerInfo::BleedingDate, "2020-11-14T10:57:23" },
|
|
{ "iaudiox5.v", ServerInfo::CurDevelUrl, "https://unittest/dev/rockbox-iaudiox5.zip" },
|
|
{ "iaudiox5.v", ServerInfo::ManualPdfUrl, "https://unittest/manual/rockbox-iaudiox5.pdf" },
|
|
{ "ipodmini2g", ServerInfo::ManualPdfUrl, "https://unittest/manual/rockbox-ipodmini1g.pdf" },
|
|
{ "iriverh100", ServerInfo::ManualHtmlUrl, "https://unittest/manual/rockbox-iriverh100/rockbox-build.html" },
|
|
{ "iriverh120", ServerInfo::ManualZipUrl, "https://unittest/manual/rockbox-iriverh100-html.zip" },
|
|
};
|
|
|
|
|
|
void TestServerInfo::testMain()
|
|
{
|
|
// create a temporary file for test input. Do not use QSettings() to allow
|
|
// creating different format variations.
|
|
QTemporaryFile tf(this);
|
|
tf.open();
|
|
QString filename = tf.fileName();
|
|
tf.write(testinfo);
|
|
tf.close();
|
|
|
|
ServerInfo::readBuildInfo(filename);
|
|
|
|
unsigned int i;
|
|
for(i = 0; i < sizeof(testdata) / sizeof(struct testvector); i++) {
|
|
QString result = ServerInfo::platformValue(testdata[i].entry, testdata[i].target).toString();
|
|
QCOMPARE(result, QString(testdata[i].expected));
|
|
}
|
|
}
|
|
|
|
|
|
QTEST_MAIN(TestServerInfo)
|
|
|
|
// 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-serverinfo.moc"
|
|
|