示例#1
0
    def setUp(self):
        ParserTest.setUp(self)

        (handle, self._path) = tempfile.mkstemp(prefix="ks-", text=True)
        s = self.ks.encode('utf-8')

        os.write(handle, s)
        os.close(handle)
示例#2
0
    def __init__(self, *args, **kwargs):
        ParserTest.__init__(self, *args, **kwargs)
        self.ks = """
lang en_US
keyboard us
autopart
"""

        self.ksappend = """
示例#3
0
    def __init__(self, *args, **kwargs):
        ParserTest.__init__(self, *args, **kwargs)
        self.ks = """
lang en_US
keyboard us
autopart
"""

        self.ksappend = """
示例#4
0
    def setUp(self):
        ParserTest.setUp(self)

        (handle, self._ksappendPath) = tempfile.mkstemp(prefix="ksappend-", text=True)
        s = self.ksappend
        if six.PY3:
            s = s.encode('utf-8')

        os.write(handle, s)
        os.close(handle)
示例#5
0
    def setUp(self):
        ParserTest.setUp(self)

        (handle, self._ksappendPath) = tempfile.mkstemp(prefix="ksappend-", text=True)
        s = self.ksappend
        if six.PY3:
            s = s.encode('utf-8')

        os.write(handle, s)
        os.close(handle)
示例#6
0
    def setUp(self):
        ParserTest.setUp(self)

        (handle, self._path) = tempfile.mkstemp(prefix="include-", text=True)
        ks = self.includeKS
        if six.PY3:
            ks = ks.encode('utf-8')

        os.write(handle, ks)
        os.close(handle)
示例#7
0
    def setUp(self):
        ParserTest.setUp(self)
        self._processedPath = None

        (handle, self._path) = tempfile.mkstemp(prefix="ks-", text=True)
        s = self.ks
        if six.PY3:
            s = s.encode('utf-8')

        os.write(handle, s)
        os.close(handle)
示例#8
0
    def setUp(self):
        ParserTest.setUp(self)
        self._processedPath = None

        (handle, self._path) = tempfile.mkstemp(prefix="ks-", text=True)
        s = self.ks
        if six.PY3:
            s = s.encode('utf-8')

        os.write(handle, s)
        os.close(handle)
示例#9
0
    def setUp(self):
        ParserTest.setUp(self)

        (handle, self._ksappendPath) = tempfile.mkstemp(prefix="ksappend-", text=True)
        s = self.ksappend.encode('utf-8')

        os.write(handle, s)
        os.close(handle)

        # Write the ksappend file first so we know its filename for making the
        # %ksappend line.
        (handle, self._path) = tempfile.mkstemp(prefix="ks-", text=True)
        s = self.ks + "%ksappend " + self._ksappendPath
        s = s.encode('utf-8')

        os.write(handle, s)
        os.close(handle)
示例#10
0
    def setUp(self):
        ParserTest.setUp(self)

        (handle, self._ksappendPath) = tempfile.mkstemp(prefix="ksappend-", text=True)
        s = self.ksappend
        if six.PY3:
            s = s.encode('utf-8')

        os.write(handle, s)
        os.close(handle)

        # Write the ksappend file first so we know its filename for making the
        # %ksappend line.
        (handle, self._path) = tempfile.mkstemp(prefix="ks-", text=True)
        s = self.ks + "%ksappend " + self._ksappendPath
        if six.PY3:
            s = s.encode('utf-8')

        os.write(handle, s)
        os.close(handle)
示例#11
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.ks = """
示例#12
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.ks = """
示例#13
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.ks = "\n%traceback\n%end\n"
示例#14
0
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._path)
示例#15
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.version = RHEL7
     self.ks = """
示例#16
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.includeKS = ""
示例#17
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.version = F7
示例#18
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.version = RHEL6
     self.ks = """
示例#19
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.version = F7
示例#20
0
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._ksappendPath)
示例#21
0
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._path)
     os.unlink(self._ksappendPath)
     if self._processedPath:
         os.unlink(self._processedPath)
示例#22
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.version = F32
     self.ks = "%packages --instLangs cs_CZ --excludeWeakdeps\nsomething\n\n%end\n"
示例#23
0
 def setUp(self):
     ParserTest.setUp(self)
     self._path = None
示例#24
0
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._ksappendPath)
示例#25
0
 def setUp(self):
     ParserTest.setUp(self)
     self._path = None
示例#26
0
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._path)
     os.unlink(self._ksappendPath)
     if self._processedPath:
         os.unlink(self._processedPath)