summaryrefslogtreecommitdiffstats
path: root/tests/tst_UpdateChecker.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-12-17 00:41:31 +0100
committerPetr Mrázek <peterix@gmail.com>2013-12-17 00:41:31 +0100
commit911dfa853089a8ab4d5619dbd1f053ac90edff0d (patch)
tree5c4e7c7f0daff25bbb2257d50188464e5695dbf3 /tests/tst_UpdateChecker.cpp
parentf8067a60346207d4b9b9f0c0eb5b1c3a70e28485 (diff)
parent47bf7fff27665496bc4212bcaccc80350f665f97 (diff)
downloadMultiMC-911dfa853089a8ab4d5619dbd1f053ac90edff0d.tar
MultiMC-911dfa853089a8ab4d5619dbd1f053ac90edff0d.tar.gz
MultiMC-911dfa853089a8ab4d5619dbd1f053ac90edff0d.tar.lz
MultiMC-911dfa853089a8ab4d5619dbd1f053ac90edff0d.tar.xz
MultiMC-911dfa853089a8ab4d5619dbd1f053ac90edff0d.zip
Merge branch 'updater_tests' of https://github.com/02JanDal/MultiMC5 into develop
Diffstat (limited to 'tests/tst_UpdateChecker.cpp')
-rw-r--r--tests/tst_UpdateChecker.cpp9
1 files changed, 7 insertions, 2 deletions
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>()
- << 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);
}