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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
#!/usr/bin/python
import os
import sys
sys.path.insert(0,"../")
import shutil
import subprocess
import apt
import apt_pkg
import unittest
from DistUpgrade.DistUpgradeController import DistUpgradeController
from DistUpgrade.DistUpgradeViewNonInteractive import DistUpgradeViewNonInteractive
import logging
class testSourcesListUpdate(unittest.TestCase):
testdir = os.path.abspath("./data-sources-list-test/")
def setUp(self):
apt_pkg.Config.Set("Dir::Etc",self.testdir)
apt_pkg.Config.Set("Dir::Etc::sourceparts",os.path.join(self.testdir,"sources.list.d"))
if os.path.exists(os.path.join(self.testdir, "sources.list")):
os.unlink(os.path.join(self.testdir, "sources.list"))
def test_sources_list_with_nothing(self):
"""
test sources.list rewrite with nothing in it
"""
shutil.copy(os.path.join(self.testdir,"sources.list.nothing"),
os.path.join(self.testdir,"sources.list"))
apt_pkg.Config.Set("Dir::Etc::sourcelist","sources.list")
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
d.openCache(lock=False)
res = d.updateSourcesList()
self.assert_(res == True)
# now test the result
self._verifySources("""
deb http://archive.ubuntu.com/ubuntu gutsy main restricted
deb http://archive.ubuntu.com/ubuntu gutsy-updates main restricted
deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted
""")
def test_sources_list_rewrite(self):
"""
test regular sources.list rewrite
"""
shutil.copy(os.path.join(self.testdir,"sources.list.in"),
os.path.join(self.testdir,"sources.list"))
apt_pkg.Config.Set("Dir::Etc::sourcelist","sources.list")
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
d.openCache(lock=False)
res = d.updateSourcesList()
self.assert_(res == True)
# now test the result
#print open(os.path.join(self.testdir,"sources.list")).read()
self._verifySources("""
# main repo
deb http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse universe
deb http://de.archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse
deb-src http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse
deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted multiverse
deb http://security.ubuntu.com/ubuntu/ gutsy-security universe
""")
# check that the backup file was created correctly
self.assert_(subprocess.call(
["cmp",
apt_pkg.Config.FindFile("Dir::Etc::sourcelist")+".in",
apt_pkg.Config.FindFile("Dir::Etc::sourcelist")+".distUpgrade"
]) == 0)
def test_commercial_transition(self):
"""
test transition of pre-gutsy archive.canonical.com archives
"""
shutil.copy(os.path.join(self.testdir,"sources.list.commercial-transition"),
os.path.join(self.testdir,"sources.list"))
apt_pkg.Config.Set("Dir::Etc::sourceparts",os.path.join(self.testdir,"sources.list.d"))
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
d.openCache(lock=False)
res = d.updateSourcesList()
self.assert_(res == True)
# now test the result
self._verifySources("""
deb http://archive.canonical.com/ubuntu gutsy partner
""")
def test_powerpc_transition(self):
"""
test transition of powerpc to ports.ubuntu.com
"""
arch = apt_pkg.Config.Find("APT::Architecture")
apt_pkg.Config.Set("APT::Architecture","powerpc")
shutil.copy(os.path.join(self.testdir,"sources.list.powerpc"),
os.path.join(self.testdir,"sources.list"))
apt_pkg.Config.Set("Dir::Etc::sourceparts",os.path.join(self.testdir,"sources.list.d"))
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
d.openCache(lock=False)
res = d.updateSourcesList()
self.assert_(res == True)
# now test the result
self._verifySources("""
deb http://ports.ubuntu.com/ubuntu-ports/ gutsy main restricted multiverse universe
deb-src http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ gutsy-security main restricted
""")
apt_pkg.Config.Set("APT::Architecture",arch)
def test_sparc_transition(self):
"""
test transition of sparc to ports.ubuntu.com
"""
arch = apt_pkg.Config.Find("APT::Architecture")
apt_pkg.Config.Set("APT::Architecture","sparc")
shutil.copy(os.path.join(self.testdir,"sources.list.sparc"),
os.path.join(self.testdir,"sources.list"))
apt_pkg.Config.Set("Dir::Etc::sourceparts",os.path.join(self.testdir,"sources.list.d"))
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
d.fromDist = "gutsy"
d.toDist = "hardy"
d.openCache(lock=False)
res = d.updateSourcesList()
self.assert_(res == True)
# now test the result
self._verifySources("""
deb http://ports.ubuntu.com/ubuntu-ports/ hardy main restricted multiverse universe
deb-src http://archive.ubuntu.com/ubuntu/ hardy main restricted multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ hardy-security main restricted
""")
apt_pkg.Config.Set("APT::Architecture",arch)
def testVerifySourcesListEntry(self):
from aptsources.sourceslist import SourceEntry
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
for scheme in ["ftp","http"]:
entry = "deb %s://archive.ubuntu.com/ubuntu/ hardy main universe restricted multiverse" % scheme
self.assertTrue(d._sourcesListEntryDownloadable(SourceEntry(entry)))
entry = "deb %s://archive.ubuntu.com/ubuntu/ warty main universe restricted multiverse" % scheme
self.assertFalse(d._sourcesListEntryDownloadable(SourceEntry(entry)))
entry = "deb %s://archive.ubuntu.com/ubuntu/ xxx main" % scheme
self.assertFalse(d._sourcesListEntryDownloadable(SourceEntry(entry)))
def testEOL2EOLUpgrades(self):
" test upgrade from EOL release to EOL release "
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
shutil.copy(os.path.join(self.testdir,"sources.list.EOL"),
os.path.join(self.testdir,"sources.list"))
apt_pkg.Config.Set("Dir::Etc::sourceparts",os.path.join(self.testdir,"sources.list.d"))
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
d.fromDist = "warty"
d.toDist = "hoary"
d.openCache(lock=False)
res = d.updateSourcesList()
self.assert_(res == True)
self._verifySources("""
# main repo
deb http://old-releases.ubuntu.com/ubuntu hoary main restricted multiverse universe
deb-src http://old-releases.ubuntu.com/ubuntu hoary main restricted multiverse
deb http://old-releases.ubuntu.com/ubuntu hoary-security main restricted
""")
def testEOL2SupportedWithMirrorUpgrade(self):
" test upgrade from a EOL release to a supported release with mirroor"
os.environ["LANG"] = "de_DE.UTF-8"
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
shutil.copy(os.path.join(self.testdir,"sources.list.EOL2Supported"),
os.path.join(self.testdir,"sources.list"))
apt_pkg.Config.Set("Dir::Etc::sourceparts",os.path.join(self.testdir,"sources.list.d"))
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
d.fromDist = "feisty"
d.toDist = "gutsy"
d.openCache(lock=False)
res = d.updateSourcesList()
self.assert_(res == True)
self._verifySources("""
# main repo
deb http://de.archive.ubuntu.com/ubuntu gutsy main restricted multiverse universe
deb-src http://de.archive.ubuntu.com/ubuntu gutsy main restricted multiverse
deb http://de.archive.ubuntu.com/ubuntu gutsy-security main restricted
""")
def testEOL2SupportedUpgrade(self):
" test upgrade from a EOL release to a supported release "
os.environ["LANG"] = "C"
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
shutil.copy(os.path.join(self.testdir,"sources.list.EOL2Supported"),
os.path.join(self.testdir,"sources.list"))
apt_pkg.Config.Set("Dir::Etc::sourceparts",os.path.join(self.testdir,"sources.list.d"))
v = DistUpgradeViewNonInteractive()
d = DistUpgradeController(v,datadir=self.testdir)
d.fromDist = "feisty"
d.toDist = "gutsy"
d.openCache(lock=False)
res = d.updateSourcesList()
self.assert_(res == True)
self._verifySources("""
# main repo
deb http://archive.ubuntu.com/ubuntu gutsy main restricted multiverse universe
deb-src http://archive.ubuntu.com/ubuntu gutsy main restricted multiverse
deb http://archive.ubuntu.com/ubuntu gutsy-security main restricted
""")
def _verifySources(self, expected):
sources_list = open(apt_pkg.Config.FindFile("Dir::Etc::sourcelist")).read()
for l in expected.split("\n"):
self.assert_(l in sources_list,
"expected entry '%s' in sources.list missing. got:\n'''%s'''" % (l, sources_list))
if __name__ == "__main__":
import sys
for e in sys.argv:
if e == "-v":
logging.basicConfig(level=logging.DEBUG)
unittest.main()
|