ceph/teuthology/test/test_get_distro.py

30 lines
864 B
Python
Raw Normal View History

from .. import misc as teuthology
class Mock: pass
class TestGetDistro(object):
def setup(self):
self.fake_ctx = Mock()
self.fake_ctx.config = {}
self.fake_ctx.os_type = 'ubuntu'
def test_default_distro(self):
distro = teuthology.get_distro(self.fake_ctx)
assert distro == 'ubuntu'
def test_argument(self):
self.fake_ctx.os_type = 'centos'
distro = teuthology.get_distro(self.fake_ctx)
assert distro == 'centos'
def test_teuth_config(self):
self.fake_ctx.config = {'os_type': 'fedora'}
distro = teuthology.get_distro(self.fake_ctx)
assert distro == 'fedora'
def test_teuth_config_downburst(self):
self.fake_ctx.config = {'downburst' : {'distro': 'sles'}}
distro = teuthology.get_distro(self.fake_ctx)
assert distro == 'sles'