test/file_cache.py: ported to pytest (#3429)

This commit is contained in:
Massimiliano Culpo 2017-03-14 17:07:04 +01:00 committed by Todd Gamblin
parent 64bd7adefa
commit 8c3edfd36f

View file

@ -22,62 +22,54 @@
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
"""
Test Spack's FileCache.
"""
"""Test Spack's FileCache."""
import os
import shutil
import tempfile
import unittest
import pytest
from spack.file_cache import FileCache
class FileCacheTest(unittest.TestCase):
"""Ensure that a file cache can properly write to a file and recover its
contents."""
@pytest.fixture()
def file_cache(tmpdir):
"""Returns a properly initialized FileCache instance"""
return FileCache(str(tmpdir))
def setUp(self):
self.scratch_dir = tempfile.mkdtemp()
self.cache = FileCache(self.scratch_dir)
def tearDown(self):
shutil.rmtree(self.scratch_dir)
def test_write_and_read_cache_file(self):
def test_write_and_read_cache_file(file_cache):
"""Test writing then reading a cached file."""
with self.cache.write_transaction('test.yaml') as (old, new):
self.assertTrue(old is None)
self.assertTrue(new is not None)
with file_cache.write_transaction('test.yaml') as (old, new):
assert old is None
assert new is not None
new.write("foobar\n")
with self.cache.read_transaction('test.yaml') as stream:
with file_cache.read_transaction('test.yaml') as stream:
text = stream.read()
self.assertEqual("foobar\n", text)
assert text == "foobar\n"
def test_remove(self):
"""Test removing an entry from the cache."""
self.test_write_and_write_cache_file()
self.cache.remove('test.yaml')
def test_write_and_remove_cache_file(file_cache):
"""Test two write transactions on a cached file. Then try to remove an
entry from it.
"""
self.assertFalse(os.path.exists(self.cache.cache_path('test.yaml')))
self.assertFalse(os.path.exists(self.cache._lock_path('test.yaml')))
def test_write_and_write_cache_file(self):
"""Test two write transactions on a cached file."""
with self.cache.write_transaction('test.yaml') as (old, new):
self.assertTrue(old is None)
self.assertTrue(new is not None)
with file_cache.write_transaction('test.yaml') as (old, new):
assert old is None
assert new is not None
new.write("foobar\n")
with self.cache.write_transaction('test.yaml') as (old, new):
self.assertTrue(old is not None)
with file_cache.write_transaction('test.yaml') as (old, new):
assert old is not None
text = old.read()
self.assertEqual("foobar\n", text)
self.assertTrue(new is not None)
assert text == "foobar\n"
assert new is not None
new.write("barbaz\n")
with self.cache.read_transaction('test.yaml') as stream:
with file_cache.read_transaction('test.yaml') as stream:
text = stream.read()
self.assertEqual("barbaz\n", text)
assert text == "barbaz\n"
file_cache.remove('test.yaml')
# After removal both the file and the lock file should not exist
assert not os.path.exists(file_cache.cache_path('test.yaml'))
assert not os.path.exists(file_cache._lock_path('test.yaml'))