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
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# live-magic - GUI frontend to create Debian LiveCDs, etc.
# Copyright (C) 2007-2008 Chris Lamb <chris@chris-lamb.co.uk>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import unittest
import os
import sys
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from DebianLive import Config
class TestConfigConstructor(unittest.TestCase):
def setUp(self):
import tempfile
self.dir = tempfile.mkdtemp()
def tearDown(self):
import shutil
shutil.rmtree(self.dir)
class TestSimple(TestConfigConstructor):
def testArch386(self):
lh = Config(self.dir, architecture='i386')
self.assertEqual(lh.bootstrap['LH_ARCHITECTURE'], 'i386')
def testArchAmd64(self):
lh = Config(self.dir, architecture='amd64')
self.assertEqual(lh.bootstrap['LH_ARCHITECTURE'], 'amd64')
def testNoOptions(self):
lh = Config(self.dir)
def testInvalid(self):
self.assertRaises(TypeError, Config, self.dir, this_config_never_exists='value')
class TestOther(TestConfigConstructor):
def testArchChangesKernelFlavour(self):
lh_i386 = Config(self.dir, architecture='i386')
self.setUp()
lh_amd64 = Config(self.dir, architecture='amd64')
self.assertNotEqual(lh_i386.chroot['LH_LINUX_FLAVOURS'],
lh_amd64.chroot['LH_LINUX_FLAVOURS'])
def testHyphenatedOption(self):
lh = Config(self.dir, packages_lists='my-package-list')
self.assertEqual(lh.chroot['LH_PACKAGES_LISTS'], ['my-package-list'])
def testSpaceInValue(self):
lh = Config(self.dir, packages_lists="hello there")
self.assertEqual(lh.chroot['LH_PACKAGES_LISTS'], ['hello', 'there'])
def testAllowPassingOptionsSecondTime(self):
lh = Config(self.dir, packages_lists="one two")
lh = Config(self.dir, packages_lists="three four")
self.assertEqual(lh.chroot['LH_PACKAGES_LISTS'], ['three', 'four'])
if __name__ == "__main__":
unittest.main()
|