Skip to content

Latest commit

 

History

History
127 lines (110 loc) · 3.63 KB

urlresolvertest.cpp

File metadata and controls

127 lines (110 loc) · 3.63 KB
 
Oct 8, 2012
Oct 8, 2012
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* @file urlresolvertest.cpp
* @copyright 2012 Jolla Ltd.
* @author Bernd Wachter <bwachter@lart.info>
* @date 2012
*/
#include "urlresolvertest.h"
void UrlResolverTest::initTestCase(){
#ifdef TARGET_ARCH
// test will fail if executed without proper installation of libssu and repos
QString arch = "";
arch = TARGET_ARCH;
rndRepos["nemo"] = QString("https://packages.example.com/nemo/latest/platform/%1/").arg(arch);
rndRepos["mer-core"] = QString("https://packages.example.com/mer/latest/builds/%1/packages/").arg(arch);
/*
rndRepos["non-oss"] = "";
*/
releaseRepos["nemo"] = QString("https://packages.example.com/releases/0.1/nemo/platform/%1/").arg(arch);
releaseRepos["mer-core"] = QString("https://packages.example.com/0.1/mer/%1/packages/").arg(arch);
releaseRepos["jolla"] = QString("https://packages.example.com/releases/0.1/jolla/%1/").arg(arch);
#else
#warning "TARGET_ARCH not defined"
// if run in build dir, ssu.ini and repos missing the repo urls to compare will be empty!
rndRepos["nemo"] = "";
rndRepos["mer-core"] = "";
/*
rndRepos["non-oss"] = "";
*/
releaseRepos["nemo"] = "";
releaseRepos["mer-core"] = "";
releaseRepos["jolla"] = "";
#endif
}
void UrlResolverTest::cleanupTestCase(){
}
void UrlResolverTest::checkFlavour(){
ssu.setFlavour("testing");
QCOMPARE(ssu.flavour(), QString("testing"));
ssu.setFlavour("release");
QCOMPARE(ssu.flavour(), QString("release"));
Ssu ssu2;
QCOMPARE(ssu2.flavour(), QString("release"));
}
void UrlResolverTest::checkRelease(){
ssu.setRelease("0.1");
QCOMPARE(ssu.release(), QString("0.1"));
ssu.setRelease("0.2", true);
QCOMPARE(ssu.release(), QString("0.1"));
QCOMPARE(ssu.release(true), QString("0.2"));
Ssu ssu2;
QCOMPARE(ssu2.release(), QString("0.1"));
QCOMPARE(ssu2.release(true), QString("0.2"));
ssu.setRelease("latest", true);
}
Jan 15, 2013
Jan 15, 2013
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
void UrlResolverTest::checkDomain(){
QString credentialsUrl;
QString registerUrl;
// domain not defined -> default
ssu.setDomain("");
credentialsUrl = ssu.repoUrl("credentials-url");
QCOMPARE(credentialsUrl, QString("https://ssu.testing.com/ssu/device/%1/credentials.xml"));
// domain defined but not matching block -> default
ssu.setDomain("nevermind");
credentialsUrl = ssu.repoUrl("credentials-url");
QCOMPARE(credentialsUrl, QString("https://ssu.testing.com/ssu/device/%1/credentials.xml"));
ssu.setDomain("example");
QCOMPARE(ssu.domain(), QString("example"));
credentialsUrl = ssu.repoUrl("credentials-url");
QCOMPARE(credentialsUrl, QString("https://ssu.example.com/ssu/device/%1/credentials.xml"));
registerUrl = ssu.repoUrl("register-url");
QCOMPARE(registerUrl, QString("https://ssu.example.com/ssu/device/%1/register.xml"));
}
Oct 8, 2012
Oct 8, 2012
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
void UrlResolverTest::checkCleanUrl(){
QHashIterator<QString, QString> i(rndRepos);
while (i.hasNext()){
i.next();
QString url=ssu.repoUrl(i.key(), true);
QVERIFY(!url.contains("%("));
}
}
void UrlResolverTest::simpleRepoUrlLookup(){
QHashIterator<QString, QString> i(rndRepos);
while (i.hasNext()){
QString url;
i.next();
url=ssu.repoUrl(i.key(), true);
QCOMPARE(url, i.value());
url=ssu.repoUrl(i.key(), false);
#ifdef TARGET_ARCH
QVERIFY(url.compare(i.value()) != 0);
#else
QCOMPARE(url, i.value());
#endif
}
/*
QCOMPARE(ssu.repoUrl("jolla", 0), QString(""));
QCOMPARE(ssu.repoUrl("non-oss", 1), QString(""));
*/
}
void UrlResolverTest::checkReleaseRepoUrls(){
QHashIterator<QString, QString> i(releaseRepos);
while (i.hasNext()){
QString url;
i.next();
url=ssu.repoUrl(i.key(), false);
QCOMPARE(url, i.value());
url=ssu.repoUrl(i.key());
QCOMPARE(url, i.value());
}
}