blob: 0c5b30f53c6297d858da917a4a60a2cd59b88dc3 [file] [log] [blame]
# test_PackageMaskFile.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
from portage import os
from portage.env.config import PackageMaskFile
from portage.tests import TestCase, test_cps
from tempfile import mkstemp
class PackageMaskFileTestCase(TestCase):
def testPackageMaskFile(self):
self.BuildFile()
try:
f = PackageMaskFile(self.fname)
f.load()
for atom in f:
self.assertTrue(atom in test_cps)
finally:
self.NukeFile()
def BuildFile(self):
fd, self.fname = mkstemp()
f = os.fdopen(fd, 'w')
f.write("\n".join(test_cps))
f.close()
def NukeFile(self):
os.unlink(self.fname)