71 lines
2.3 KiB
Python
71 lines
2.3 KiB
Python
# This file is part of h5py, a Python interface to the HDF5 library.
|
|
#
|
|
# http://www.h5py.org
|
|
#
|
|
# Copyright 2008-2013 Andrew Collette and contributors
|
|
#
|
|
# License: Standard 3-clause BSD; see "license.txt" for full license terms
|
|
# and contributor agreement.
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import tempfile
|
|
import shutil
|
|
import os
|
|
from h5py import File
|
|
|
|
from ..common import TestCase
|
|
|
|
|
|
class TestFileID(TestCase):
|
|
def test_descriptor_core(self):
|
|
with File('TestFileID.test_descriptor_core', driver='core', backing_store=False) as f:
|
|
with self.assertRaises(NotImplementedError):
|
|
f.id.get_vfd_handle()
|
|
|
|
def test_descriptor_sec2(self):
|
|
dn_tmp = tempfile.mkdtemp('h5py.lowtest.test_h5f.TestFileID.test_descriptor_sec2')
|
|
fn_h5 = os.path.join(dn_tmp, 'test.h5')
|
|
try:
|
|
with File(fn_h5, driver='sec2') as f:
|
|
descriptor = f.id.get_vfd_handle()
|
|
self.assertNotEqual(descriptor, 0)
|
|
os.fsync(descriptor)
|
|
finally:
|
|
shutil.rmtree(dn_tmp)
|
|
|
|
|
|
class TestCacheConfig(TestCase):
|
|
def test_simple_gets(self):
|
|
dn_tmp = tempfile.mkdtemp('h5py.lowtest.test_h5f.TestFileID.TestCacheConfig.test_simple_gets')
|
|
fn_h5 = os.path.join(dn_tmp, 'test.h5')
|
|
try:
|
|
with File(fn_h5) as f:
|
|
hit_rate = f._id.get_mdc_hit_rate()
|
|
mdc_size = f._id.get_mdc_size()
|
|
|
|
finally:
|
|
shutil.rmtree(dn_tmp)
|
|
|
|
def test_hitrate_reset(self):
|
|
dn_tmp = tempfile.mkdtemp('h5py.lowtest.test_h5f.TestFileID.TestCacheConfig.test_hitrate_reset')
|
|
fn_h5 = os.path.join(dn_tmp, 'test.h5')
|
|
try:
|
|
with File(fn_h5) as f:
|
|
hit_rate = f._id.get_mdc_hit_rate()
|
|
f._id.reset_mdc_hit_rate_stats()
|
|
hit_rate = f._id.get_mdc_hit_rate()
|
|
assert hit_rate == 0
|
|
|
|
finally:
|
|
shutil.rmtree(dn_tmp)
|
|
|
|
def test_mdc_config_get(self):
|
|
dn_tmp = tempfile.mkdtemp('h5py.lowtest.test_h5f.TestFileID.TestCacheConfig.test_mdc_config_get')
|
|
fn_h5 = os.path.join(dn_tmp, 'test.h5')
|
|
try:
|
|
with File(fn_h5) as f:
|
|
conf = f._id.get_mdc_config()
|
|
f._id.set_mdc_config(conf)
|
|
finally:
|
|
shutil.rmtree(dn_tmp)
|