def runTest(self): DevelPackagesBase.runTest(self) pkgs = Packages() pkgs.add(["@GroupA"]) pkgs.add(["@group-b"]) pkgs.add(["@GroupC"]) # Groups are printed out in alphabetic order, so group-b comes after Group* self.assertEqual("""%packages @GroupA @GroupC @group-b %end""", str(pkgs).strip()) pkgs = Packages() pkgs.add(["@group-a --nodefaults"]) self.assertEqual("""%packages @group-a --nodefaults %end""", str(pkgs).strip()) pkgs = Packages() pkgs.add(["@group-a --optional"]) self.assertEqual("""%packages @group-a --optional %end""", str(pkgs).strip()) self.assertRaises(KickstartParseError, pkgs.add, ["@group-b --optional --nodefaults"])
def __init__(self, mapping=None, dataMapping=None, commandUpdates=None, dataUpdates=None, *args, **kwargs): """Create a new BaseHandler instance. This method must be provided by all subclasses, but subclasses must call BaseHandler.__init__ first. mapping -- A custom map from command strings to classes, useful when creating your own handler with special command objects. It is otherwise unused and rarely needed. If you give this argument, the mapping takes the place of the default one and so must include all commands you want recognized. dataMapping -- This is the same as mapping, but for data objects. All the same comments apply. commandUpdates -- This is similar to mapping, but does not take the place of the defaults entirely. Instead, this mapping is applied after the defaults and updates it with just the commands you want to modify. dataUpdates -- This is the same as commandUpdates, but for data objects. Instance attributes: packages -- An instance of pykickstart.parser.Packages which describes the packages section of the input file. platform -- A string describing the hardware platform, which is needed only by system-config-kickstart. scripts -- A list of pykickstart.parser.Script instances, which is populated by KickstartParser.addScript and describes the %pre/%pre-install/%post/%traceback script section of the input file. """ # We don't want people using this class by itself. if self.__class__ is BaseHandler: raise TypeError("BaseHandler is an abstract class.") KickstartHandler.__init__(self, *args, **kwargs) # This isn't really a good place for these, but it's better than # everything else I can think of. self.scripts = [] self.packages = Packages() self.platform = "" # Any sections that we do not understand but want to prevent causing errors # are represented by a NullSection. We want to preserve those on output, so # keep a list of their string representations here. This is likely to change # in the future. Don't rely on this exact implementation. self._null_section_strings = [] self._registerCommands(mapping, dataMapping, commandUpdates, dataUpdates)
def runTest(self): pkgs = Packages() pkgs.default = True pkgs.multiLib = True self.assertEqual("""%packages --default --multilib %end""", str(pkgs).strip())
def runTest(self): DevelPackagesBase.runTest(self) pkgs = Packages() pkgs.default = True pkgs.excludeWeakdeps = True self.assertEqual("""%packages --default --excludeWeakdeps %end""", str(pkgs).strip())
def runTest(self): pkgs = Packages() pkgs.add(["vim-*"]) pkgs.add(["kde*"]) self.assertEqual("""%packages kde* vim-* %end""", str(pkgs).strip())
def runTest(self): pkgs = Packages() pkgs.add(["-@Conflicts"]) pkgs.add(["-@Clustering"]) self.assertEqual("""%packages -@Clustering -@Conflicts %end""", str(pkgs).strip())
def runTest(self): pkgs = Packages() pkgs.add(["vim-enhanced"]) pkgs.add(["package-b"]) pkgs.add(["-vim-enhanced"]) self.assertEqual("""%packages package-b -vim-enhanced %end""", str(pkgs).strip())
def runTest(self): pkgs = Packages() pkgs.add(["@group-a"]) pkgs.add(["@group-b"]) pkgs.add(["-@group-a"]) self.assertEqual("""%packages @group-b -@group-a %end""", str(pkgs).strip())
def runTest(self): pkgs = Packages() pkgs.add(["-kde*"]) pkgs.add(["-perl*"]) pkgs.add(["-*spell"]) self.assertEqual("""%packages -*spell -kde* -perl* %end""", str(pkgs).strip())
def runTest(self): pkgs = Packages() pkgs.add(["packageA"]) pkgs.add(["packageB"]) pkgs.add(["packageC"]) self.assertEqual("""%packages packageA packageB packageC %end""", str(pkgs).strip())
def runTest(self): pkgs = Packages() pkgs.add(["@^EnvironmentA"]) pkgs.add(["@GroupB"]) pkgs.add(["packageC"]) self.assertEqual("""%packages @^EnvironmentA @GroupB packageC %end""", str(pkgs).strip())
def runTest(self): pkgs = Packages() pkgs.add(["-enlightenment"]) pkgs.add(["-clanlib"]) pkgs.add(["-libass"]) self.assertEqual("""%packages -clanlib -enlightenment -libass %end""", str(pkgs).strip())
def runTest(self): DevelPackagesBase.runTest(self) pkgs = Packages() pkgs.add(["vim-enhanced"]) pkgs.add(["package-b"]) pkgs.add(["-vim*"]) self.assertEqual("""%packages package-b vim-enhanced -vim* %end""", str(pkgs).strip())
def __init__(self, mapping=None, dataMapping=None, commandUpdates=None, dataUpdates=None, *args, **kwargs): """Create a new BaseHandler instance. This method must be provided by all subclasses, but subclasses must call BaseHandler.__init__ first. mapping -- A custom map from command strings to classes, useful when creating your own handler with special command objects. It is otherwise unused and rarely needed. If you give this argument, the mapping takes the place of the default one and so must include all commands you want recognized. dataMapping -- This is the same as mapping, but for data objects. All the same comments apply. commandUpdates -- This is similar to mapping, but does not take the place of the defaults entirely. Instead, this mapping is applied after the defaults and updates it with just the commands you want to modify. dataUpdates -- This is the same as commandUpdates, but for data objects. Instance attributes: commands -- A mapping from a string command to a KickstartCommand subclass object that handles it. Multiple strings can map to the same object, but only one instance of the command object should ever exist. Most users should never have to deal with this directly, as it is manipulated internally and called through dispatcher. currentLine -- The current unprocessed line from the input file that caused this handler to be run. packages -- An instance of pykickstart.parser.Packages which describes the packages section of the input file. platform -- A string describing the hardware platform, which is needed only by system-config-kickstart. scripts -- A list of pykickstart.parser.Script instances, which is populated by KickstartParser.addScript and describes the %pre/%pre-install/%post/%traceback script section of the input file. """ # We don't want people using this class by itself. if self.__class__ is BaseHandler: raise TypeError("BaseHandler is an abstract class.") KickstartObject.__init__(self, *args, **kwargs) # This isn't really a good place for these, but it's better than # everything else I can think of. self.scripts = [] self.packages = Packages() self.platform = "" # These will be set by the dispatcher. self.commands = {} self.currentLine = "" # A dict keyed by an integer priority number, with each value being a # list of KickstartCommand subclasses. This dict is maintained by # registerCommand and used in __str__. No one else should be touching # it. self._writeOrder = {} self._registerCommands(mapping, dataMapping, commandUpdates, dataUpdates)