From ae68adc3a536525990b0668703fd74eded8ccfde Mon Sep 17 00:00:00 2001 From: Jan Dalheimer Date: Mon, 16 Dec 2013 20:10:11 +0100 Subject: Fix some failing tests and attempt to fix running tests on a headless computer --- tests/tst_UpdateChecker.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'tests/tst_UpdateChecker.cpp') diff --git a/tests/tst_UpdateChecker.cpp b/tests/tst_UpdateChecker.cpp index 302473f7..0f023f0e 100644 --- a/tests/tst_UpdateChecker.cpp +++ b/tests/tst_UpdateChecker.cpp @@ -14,6 +14,12 @@ bool operator==(const UpdateChecker::ChannelListEntry &e1, const UpdateChecker:: e1.url == e2.url; } +QDebug operator<<(QDebug dbg, const UpdateChecker::ChannelListEntry &c) +{ + dbg.nospace() << "ChannelListEntry(id=" << c.id << " name=" << c.name << " description=" << c.description << " url=" << c.url << ")"; + return dbg.maybeSpace(); +} + class UpdateCheckerTest : public QObject { Q_OBJECT @@ -70,7 +76,7 @@ slots: << true << true << (QList() - << UpdateChecker::ChannelListEntry{"develop", "Develop", "The channel called \"develop\"", "http://example.org/stuff"} + << UpdateChecker::ChannelListEntry{"develop", "Develop", "The channel called \"develop\"", "file://$PWD/tests/data/"} << UpdateChecker::ChannelListEntry{"stable", "Stable", "It's stable at least", "ftp://username@host/path/to/stuff"} << UpdateChecker::ChannelListEntry{"42", "The Channel", "This is the channel that is going to answer all of your questions", "https://dent.me/tea"}); } @@ -103,7 +109,6 @@ slots: QCOMPARE(channelListLoadedSpy.size(), 0); } - QCOMPARE(checker.hasChannels(), hasChannels); QCOMPARE(checker.getChannelList(), result); } -- cgit v1.2.3