Exemple #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)
Exemple #2
0
    def __init__(self, *args, **kwargs):
        ParserTest.__init__(self, *args, **kwargs)
        self.ks = """
lang en_US
keyboard us
autopart
"""

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

        self.ksappend = """
Exemple #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)
    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)
Exemple #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)
    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)
Exemple #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)
Exemple #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)
    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)
Exemple #11
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.ks = """
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.ks = """
Exemple #13
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.ks = "\n%traceback\n%end\n"
Exemple #14
0
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._path)
Exemple #15
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.version = RHEL7
     self.ks = """
Exemple #16
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.includeKS = ""
Exemple #17
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.version = F7
Exemple #18
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.version = RHEL6
     self.ks = """
Exemple #19
0
 def __init__(self, *args, **kwargs):
     ParserTest.__init__(self, *args, **kwargs)
     self.version = F7
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._ksappendPath)
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._path)
     os.unlink(self._ksappendPath)
     if self._processedPath:
         os.unlink(self._processedPath)
Exemple #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"
Exemple #23
0
 def setUp(self):
     ParserTest.setUp(self)
     self._path = None
Exemple #24
0
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._ksappendPath)
 def setUp(self):
     ParserTest.setUp(self)
     self._path = None
Exemple #26
0
 def tearDown(self):
     ParserTest.tearDown(self)
     os.unlink(self._path)
     os.unlink(self._ksappendPath)
     if self._processedPath:
         os.unlink(self._processedPath)