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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from gi.repository import GLib
import apt_pkg
import aptsources.distro
import aptsources.sourceslist
import dbus
import logging
import glob
import os
import subprocess
import sys
import threading
import time
import unittest
import pathlib
from dbus.mainloop.glib import DBusGMainLoop
sys.path.insert(0, "../")
from softwareproperties.dbus.SoftwarePropertiesDBus import (
SoftwarePropertiesDBus, DBUS_BUS_NAME, DBUS_PATH, DBUS_INTERFACE_NAME)
from softwareproperties import (
UPDATE_INST_SEC, UPDATE_DOWNLOAD, UPDATE_NOTIFY)
try:
DPKG_ARCH = subprocess.check_output(
["dpkg", "--print-architecture"]).strip().decode("utf-8")
except subprocess.CalledProcessError:
sys.stderr.write("WARNING: Failed to read dpkg arch")
DPKG_ARCH = None
if DPKG_ARCH in ("i386", "amd64"):
PRIMARY_MIRROR = "http://archive.ubuntu.com/ubuntu"
else:
PRIMARY_MIRROR = "http://ports.ubuntu.com/ubuntu-ports"
def get_test_source_line():
distro_release = get_distro_release()
return "deb %s %s main restricted #"\
" comment with unicode äöü" % (PRIMARY_MIRROR, distro_release)
def get_dpkg_arch():
return subprocess.check_output(
["dpkg", "--print-architecture"]).strip().decode("utf-8")
def get_distro_release():
return "bionic"
def clear_apt_config():
etc_apt = os.path.join(os.path.dirname(__file__), "aptroot", "etc", "apt")
for dirpath, dirnames, filenames in os.walk(etc_apt):
for name in filenames:
path = os.path.join(dirpath, name)
if os.path.isfile(path):
os.unlink(path)
for d in ["apt.conf.d", "sources.list.d", "trusted.gpg.d", "auth.conf.d"]:
os.makedirs(os.path.join(etc_apt, d), exist_ok=True)
def create_sources_list():
s = get_test_source_line() + "\n"
name = os.path.join(os.path.dirname(__file__),
"aptroot", "etc", "apt", "sources.list")
dirname = os.path.dirname(name)
if not os.path.exists(dirname):
pathlib.Path(dirname).mkdir(parents=True)
with open(name, "w") as f:
f.write(s)
return name
def session_bus_thread():
DBusGMainLoop(set_as_default=True)
loop = GLib.MainLoop()
threading.current_thread().loop = loop
bus = dbus.SessionBus(private=True)
bus.set_exit_on_disconnect(False)
rootdir = os.path.join(os.path.dirname(__file__), "aptroot")
spd = SoftwarePropertiesDBus(bus, rootdir=rootdir)
spd.enforce_polkit = False
loop.run()
bus.close()
class TestDBus(unittest.TestCase):
@classmethod
def setUpClass(cls):
for k in apt_pkg.config.keys():
apt_pkg.config.clear(k)
apt_pkg.init()
clear_apt_config()
# create sources.list file
create_sources_list()
apt_pkg.config.set("Dir::Etc::sourcelist", "sources.list")
cls.get_distro = aptsources.distro.get_distro
aptsources.distro.get_distro = lambda *a, **b: aptsources.distro.UbuntuDistribution(id="Ubuntu", codename="bionic", description="18.04", release="bionic")
cls.thread = threading.Thread(target=session_bus_thread)
cls.thread.loop = None
cls.thread.start()
while not cls.thread.loop or not cls.thread.loop.is_running():
time.sleep(1)
@classmethod
def tearDownClass(cls):
cls.thread.loop.quit()
cls.thread.join()
aptsources.distro.get_distro = cls.get_distro
def setUp(self):
# keep track of signal emissions
self.sources_list_count = 0
self.distro_release = get_distro_release()
create_sources_list()
self._sourceslist = aptsources.sourceslist.SourcesList()
# create the client proxy
self.bus = dbus.SessionBus(private=True, mainloop=DBusGMainLoop())
self.bus.set_exit_on_disconnect(False)
self.iface = dbus.Interface(self.bus.get_object(DBUS_BUS_NAME, DBUS_PATH),
DBUS_INTERFACE_NAME)
self._signal_id = self.iface.connect_to_signal(
"SourcesListModified", self._on_sources_list_modified)
def tearDown(self):
# ensure we remove the "modified" signal again
self._signal_id.remove()
self.bus.close()
def _on_sources_list_modified(self):
#print("_on_modified_sources_list")
self.sources_list_count += 1
@property
def sourceslist(self):
self._sourceslist.refresh()
return ''.join([str(e) for e in self._sourceslist])
@property
def enabled_sourceslist(self):
self._sourceslist.refresh()
return ''.join([str(e) for e in self._sourceslist
if not e.invalid and not e.disabled])
def _debug_sourceslist(self, text=""):
logging.debug("sourceslist: %s '%s'" % (text, self.sourceslist))
# this is an async call - give it a few seconds to catch up with what we expect
def _assert_eventually(self, prop, n):
for i in range(9):
if getattr(self, prop) == n:
self.assertEqual(getattr(self, prop), n)
else:
time.sleep(1)
# nope, you die now
self.assertEqual(getattr(self, prop), n)
def test_enable_disable_component(self):
# ensure its not there
self.assertNotIn("universe", self.sourceslist)
# enable
self.iface.EnableComponent("universe")
self._debug_sourceslist("2")
self.assertIn("universe", self.sourceslist)
# disable again
self.iface.DisableComponent("universe")
self._debug_sourceslist("3")
self.assertNotIn("universe", self.sourceslist)
self._assert_eventually("sources_list_count", 2)
def test_enable_enable_disable_source_code_sources(self):
# ensure its not there
self._debug_sourceslist("4")
self.assertNotIn('deb-src', self.enabled_sourceslist)
# enable
self.iface.EnableSourceCodeSources()
self._debug_sourceslist("5")
self.assertIn('deb-src', self.enabled_sourceslist)
# disable again
self.iface.DisableSourceCodeSources()
self._debug_sourceslist("6")
self.assertNotIn('deb-src', self.enabled_sourceslist)
self._assert_eventually("sources_list_count", 3)
def test_enable_child_source(self):
child_source = "%s-updates" % self.distro_release
# ensure its not there
self._debug_sourceslist("7")
self.assertNotIn(child_source, self.sourceslist)
# enable
self.iface.EnableChildSource(child_source)
self._debug_sourceslist("8")
self.assertIn(child_source, self.sourceslist)
# disable again
self.iface.DisableChildSource(child_source)
self._debug_sourceslist("9")
self.assertNotIn(child_source, self.sourceslist)
self._assert_eventually("sources_list_count", 2)
def test_toggle_source(self):
# test toggle
source = get_test_source_line()
self.iface.ToggleSourceUse(source)
self._debug_sourceslist("10")
primary_debline = "# deb %s" % PRIMARY_MIRROR
self.assertIn(primary_debline, self.sourceslist)
# to disable the line again, we need to match the new "#"
source = "# " + source
self.iface.ToggleSourceUse(source)
self._debug_sourceslist("11")
self.assertNotIn(primary_debline, self.sourceslist)
self._assert_eventually("sources_list_count", 2)
def test_replace_entry(self):
# test toggle
source = get_test_source_line()
source_new = "deb http://xxx/ %s" % self.distro_release
self.iface.ReplaceSourceEntry(source, source_new)
self._debug_sourceslist("11")
self.assertIn(source_new, self.sourceslist)
self.assertNotIn(source, self.sourceslist)
self._assert_eventually("sources_list_count", 1)
self.iface.ReplaceSourceEntry(source_new, source)
self._assert_eventually("sources_list_count", 2)
def test_popcon(self):
# ensure its set to no
popcon_p = os.path.join(os.path.dirname(__file__),
"aptroot", "etc", "popularity-contest.conf")
with open(popcon_p) as f:
popcon = f.read()
self.assertIn('PARTICIPATE="no"', popcon)
# toggle
self.iface.SetPopconPariticipation(True)
with open(popcon_p) as f:
popcon = f.read()
self.assertIn('PARTICIPATE="yes"', popcon)
self.assertNotIn('PARTICIPATE="no"', popcon)
# and back
self.iface.SetPopconPariticipation(False)
with open(popcon_p) as f:
popcon = f.read()
self.assertNotIn('PARTICIPATE="yes"', popcon)
self.assertIn('PARTICIPATE="no"', popcon)
def test_updates_automation(self):
states = [UPDATE_INST_SEC, UPDATE_DOWNLOAD, UPDATE_NOTIFY]
# security
self.iface.SetUpdateAutomationLevel(states[0])
cfg = os.path.join(os.path.dirname(__file__),
"aptroot", "etc", "apt", "apt.conf.d",
"10periodic")
with open(cfg) as f:
config = f.read()
self.assertIn('APT::Periodic::Unattended-Upgrade "1";', config)
# download
self.iface.SetUpdateAutomationLevel(states[1])
with open(cfg) as f:
config = f.read()
self.assertIn('APT::Periodic::Unattended-Upgrade "0";', config)
self.assertIn('APT::Periodic::Download-Upgradeable-Packages "1";', config)
# notify
self.iface.SetUpdateAutomationLevel(states[2])
with open(cfg) as f:
config = f.read()
self.assertIn('APT::Periodic::Unattended-Upgrade "0";', config)
self.assertIn('APT::Periodic::Download-Upgradeable-Packages "0";', config)
def test_updates_interval(self):
# interval
self.iface.SetUpdateInterval(0)
cfg = os.path.join(os.path.dirname(__file__),
"aptroot", "etc", "apt", "apt.conf.d",
"10periodic")
with open(cfg) as f:
config = f.read()
self.assertTrue(
'APT::Periodic::Update-Package-Lists' not in config or
'APT::Periodic::Update-Package-Lists "0";' in config)
self.iface.SetUpdateInterval(1)
with open(cfg) as f:
config = f.read()
self.assertIn('APT::Periodic::Update-Package-Lists "1";', config)
self.iface.SetUpdateInterval(0)
with open(cfg) as f:
config = f.read()
self.assertIn('APT::Periodic::Update-Package-Lists "0";', config)
def test_add_remove_source_by_line(self):
# add invalid
res = self.iface.AddSourceFromLine("xxx")
self.assertFalse(res)
# add real
s = "deb https://ppa.launchpadcontent.net/ foo bar"
self.iface.AddSourceFromLine(s)
self.assertIn(s, self.sourceslist)
self.assertIn(s.replace("deb", "# deb-src"), self.sourceslist)
# remove again
self.iface.RemoveSource(s)
self.iface.RemoveSource(s.replace("deb", "deb-src"))
self.assertNotIn(s, self.sourceslist)
self.assertNotIn(s.replace("deb", "# deb-src"), self.sourceslist)
self._assert_eventually("sources_list_count", 4)
def test_add_gpg_key(self):
# clean
gpg_glob = os.path.join(os.path.dirname(__file__),
"aptroot", "etc", "apt", "trusted.gpg.d", "*.asc")
trusted_gpg_d = os.path.join(os.path.dirname(__file__),
"aptroot", "etc", "apt", "trusted.gpg.d/")
testkey = os.path.join(os.path.dirname(__file__),
"data", "testkey.asc")
for f in glob.glob(gpg_glob):
os.remove(f)
self.assertTrue(len(glob.glob(gpg_glob)) == 0)
# add key from file
res = self.iface.AddKey(os.path.join(os.path.dirname(__file__),
"data", "testkey.asc"))
self.assertTrue(res)
self.assertEqual(len(glob.glob(gpg_glob)), 1)
self.assertNotEqual(os.path.getsize(trusted_gpg_d + "testkey.asc"), 0)
# remove the key
res = self.iface.RemoveKey(trusted_gpg_d + "testkey.asc")
self.assertTrue(res)
self.assertEqual(len(glob.glob(gpg_glob)), 0)
# add from data
with open(testkey) as keyfile:
data = keyfile.read()
res = self.iface.AddKeyFromData(data)
self.assertTrue(res)
self.assertEqual(len(os.listdir(trusted_gpg_d)), 1)
# remove the key
res = self.iface.RemoveKey(trusted_gpg_d + "/46caf96d27ee1eebcf139483275a5c1bb41590474e35f8bb4ae3cceb413f7518.gpg")
self.assertTrue(res)
self.assertEqual(len(os.listdir(trusted_gpg_d)), 1)
# test nonsense
res = self.iface.AddKeyFromData("nonsens")
self.assertFalse(res)
if __name__ == "__main__":
if "-d" in sys.argv:
logging.basicConfig(level=logging.DEBUG)
else:
logging.basicConfig(level=logging.INFO)
unittest.main()
|