summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/sets/files/testConfigFileSet.py
blob: c8aea50767ede75fa1f91efd62bdc99c96ed723c (plain)
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
# testConfigFileSet.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: testShell.py 7363 2007-07-22 23:21:14Z zmedico $

import tempfile, os

from portage.tests import TestCase, test_cps
from portage._sets.files import ConfigFileSet

class ConfigFileSetTestCase(TestCase):
	"""Simple Test Case for ConfigFileSet"""

	def setUp(self):
		fd, self.testfile = tempfile.mkstemp(suffix=".testdata", prefix=self.__class__.__name__, text=True)
		for i in range(0, len(test_cps)):
			atom = test_cps[i]
			if i % 2 == 0:
				os.write(fd, atom+" abc def"+"\n")
			else:
				os.write(fd, atom+"\n")
		os.close(fd)

	def tearDown(self):
		os.unlink(self.testfile)

	def testConfigStaticFileSet(self):
		s = ConfigFileSet(self.testfile)
		s.load()
		self.assertEqual(set(test_cps), s.getAtoms())