예제 #1
0
 def test_resolve_virtfs_path(self):
     self.assertEqual('tests/data/fakeconfigfs',
                       drivers.resolve_virtfs_path(configfs.ConfigFS))
예제 #2
0
# Copyright 2012 Christopher MacGown. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


from virtfs import drivers
from virtfs.drivers import configfs
from virtfs.drivers import procfs
from virtfs.drivers import sysfs


sysfs = sysfs.SysFS()
procfs = procfs.ProcFS()

if drivers.resolve_virtfs_path(configfs.ConfigFS):
    # ConfigFS may not be enabled, so we don't want to enable it if it isn't.
    configfs = configfs.ConfigFS()
else:
    del configfs
예제 #3
0
    def __init__(self, procfs_path=None, contents=None):
        if not procfs_path:
            procfs_path = drivers.resolve_virtfs_path(ProcFS)

        super(ProcFS, self).__init__(virtfs_path=procfs_path, contents=contents)
예제 #4
0
 def test_resolve_virtfs_path(self):
     self.assertEqual('tests/data/fakeprocfs',
                       drivers.resolve_virtfs_path(procfs.ProcFS))
예제 #5
0
    def __init__(self, configfs_path=None, contents=None):
        if not configfs_path:
            configfs_path = drivers.resolve_virtfs_path(ConfigFS)

        super(ConfigFS, self).__init__(virtfs_path=configfs_path,
                                       contents=contents)
예제 #6
0
 def test_resolve_virtfs_path(self):
     self.assertEqual('tests/data/fakesysfs',
                       drivers.resolve_virtfs_path(sysfs.SysFS))
예제 #7
0
    def __init__(self, sysfs_path=None, contents=None):
        if not sysfs_path:
            sysfs_path = drivers.resolve_virtfs_path(SysFS)

        super(SysFS, self).__init__(virtfs_path=sysfs_path, contents=contents)