salt/tests/integration/modules/lxc.py

111 lines
3.3 KiB
Python
Raw Normal View History

2014-07-10 17:37:48 +00:00
# -*- coding: utf-8 -*-
'''
Test the lxc module
'''
# Import Python libs
from __future__ import absolute_import
2014-07-10 17:37:48 +00:00
# Import Salt Testing libs
2015-01-29 23:40:42 +00:00
from salttesting.helpers import (
ensure_in_syspath,
skip_if_not_root,
skip_if_binaries_missing
)
from salttesting import skipIf
2014-07-10 17:37:48 +00:00
ensure_in_syspath('../../')
# Import salt libs
import integration
2014-11-22 11:04:16 +00:00
# Import 3rd-party libs
import salt.ext.six as six
2014-07-10 17:37:48 +00:00
2015-01-29 23:40:42 +00:00
@skipIf(True,
'Needs rewrite to be more distro agnostic. Also, the tearDown '
'function destroys ALL containers on the box, which is BAD.')
2014-08-31 11:32:11 +00:00
@skip_if_not_root
@skip_if_binaries_missing('lxc-start', message='LXC is not installed or minimal version not met')
2014-07-10 17:37:48 +00:00
class LXCModuleTest(integration.ModuleCase):
'''
Test the lxc module
'''
prefix = '_salttesting'
def setUp(self):
os = self.run_function('grains.item',
['os', 'oscodename', 'osarch'])
p = {'download':
{'dist': os['os'].lower(),
'arch': os['osarch'].lower(),
'template': 'download',
'release': os['oscodename'].lower()},
'sshd': {'template': 'sshd'}}
2014-07-10 17:37:48 +00:00
self.run_function('grains.setval', ['lxc.profile', p])
def tearDown(self):
'''
Clean up any LXCs created.
'''
r = self.run_function('lxc.list')
2014-11-22 11:04:16 +00:00
for k, v in six.iteritems(r):
2014-07-10 17:37:48 +00:00
for x in v:
if x.startswith(self.prefix):
self.run_function('lxc.destroy', [x])
def test_create_destroy(self):
'''
Test basic create/destroy of an LXC.
'''
r = self.run_function('lxc.create', [self.prefix],
template='sshd')
2015-01-29 23:40:42 +00:00
self.assertEqual(r, {'state': {'new': 'stopped', 'old': None},
'result': True})
2014-07-10 17:37:48 +00:00
self.assertTrue(self.run_function('lxc.exists', [self.prefix]))
r = self.run_function('lxc.destroy', [self.prefix])
self.assertEqual(r, {'state': None, 'change': True})
self.assertFalse(self.run_function('lxc.exists', [self.prefix]))
def test_init(self):
'''
Test basic init functionality.
'''
r = self.run_function('lxc.init', [self.prefix],
profile='sshd', seed=False)
2014-07-10 17:37:48 +00:00
self.assertTrue(r.get('created', False))
self.assertTrue(self.run_function('lxc.exists', [self.prefix]))
def test_macvlan(self):
'''
Regression test for macvlan nic profile.
'''
p = {"macvlan": {"eth0": {
"macvlan.mode": "bridge",
"link": "eth0",
"type": "macvlan"}}}
self.run_function('grains.setval', ['lxc.nic', p])
self.run_function('lxc.init', [self.prefix],
profile='sshd', nic='macvlan',
2014-07-12 17:38:03 +00:00
seed=False, start=False)
2014-07-10 17:37:48 +00:00
f = '/var/lib/lxc/{0}/config'.format(self.prefix)
conf = self.run_function('lxc.read_conf', [f])
# Due to a segfault in lxc-destroy caused by invalid configs,
# truncate the config.
self.run_function('cmd.run', ['truncate -s 0 {0}'.format(f)])
self.assertEqual(conf.get('lxc.network.type'), 'macvlan')
if __name__ == '__main__':
from integration import run_tests
run_tests(LXCModuleTest)