tests: Ensure osdict.py aliases is never extended

This commit is contained in:
Cole Robinson 2014-09-21 15:26:03 -04:00
parent 662922dc95
commit b3fa8bb650
2 changed files with 11 additions and 0 deletions

View File

@ -120,3 +120,12 @@ class TestMisc(unittest.TestCase):
raise AssertionError("The following files should require gtk "
"version of gtk-3.8, which is what we target:\n" +
"\n".join([("%s version=%s" % tup) for tup in failures]))
def test_libosinfo_aliases_ro(self):
from virtinst import osdict
aliases = getattr(osdict, "_aliases")
if len(aliases) != 39:
raise AssertionError(_("osdict._aliases changed size. It "
"should never be extended, since it is only for back "
"compat with pre-libosinfo osdict."))

View File

@ -25,6 +25,8 @@ from datetime import datetime
from gi.repository import Libosinfo as libosinfo
from inspect import isfunction
# This is only for back compatibility with pre-libosinfo support.
# This should never change.
_aliases = {
"altlinux" : "altlinux1.0",
"debianetch" : "debian4",