本文整理汇总了Python中ovs.extensions.generic.sshclient.SSHClient.file_list方法的典型用法代码示例。如果您正苦于以下问题:Python SSHClient.file_list方法的具体用法?Python SSHClient.file_list怎么用?Python SSHClient.file_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ovs.extensions.generic.sshclient.SSHClient
的用法示例。
在下文中一共展示了SSHClient.file_list方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: clean_leftover_arakoon_data
# 需要导入模块: from ovs.extensions.generic.sshclient import SSHClient [as 别名]
# 或者: from ovs.extensions.generic.sshclient.SSHClient import file_list [as 别名]
def clean_leftover_arakoon_data(ip, directories):
"""
Delete existing arakoon data or copy to the side
Directories should be a dict with key the absolute paths and value a boolean indicating archive or delete
eg: {'/var/log/arakoon/ovsdb': True, --> Files under this directory will be archived
'/opt/OpenvStorage/db/arakoon/ovsdb/tlogs': False} --> Files under this directory will be deleted
:param ip: IP on which to check for existing data
:type ip: str
:param directories: Directories to archive or delete
:type directories: dict
:return: None
"""
root_client = SSHClient(ip, username='root')
# Verify whether all files to be archived have been released properly
open_file_errors = []
ArakoonInstaller._logger.debug('Cleanup old arakoon - Checking open files')
dirs_with_files = {}
for directory, archive in directories.iteritems():
ArakoonInstaller._logger.debug('Cleaning old arakoon - Checking directory {0}'.format(directory))
if root_client.dir_exists(directory):
ArakoonInstaller._logger.debug('Cleaning old arakoon - Directory {0} exists'.format(directory))
file_names = root_client.file_list(directory, abs_path=True, recursive=True)
if len(file_names) > 0:
ArakoonInstaller._logger.debug('Cleaning old arakoon - Files found in directory {0}'.format(directory))
dirs_with_files[directory] = {'files': file_names,
'archive': archive}
for file_name in file_names:
try:
open_files = root_client.run('lsof {0}'.format(file_name))
if open_files != '':
open_file_errors.append('Open file {0} detected in directory {1}'.format(os.path.basename(file_name), directory))
except CalledProcessError:
continue
if len(open_file_errors) > 0:
raise RuntimeError('\n - ' + '\n - '.join(open_file_errors))
for directory, info in dirs_with_files.iteritems():
if info['archive'] is True:
# Create zipped tar
ArakoonInstaller._logger.debug('Cleanup old arakoon - Start archiving directory {0}'.format(directory))
archive_dir = '{0}/archive'.format(directory)
if not root_client.dir_exists(archive_dir):
ArakoonInstaller._logger.debug('Cleanup old arakoon - Creating archive directory {0}'.format(archive_dir))
root_client.dir_create(archive_dir)
ArakoonInstaller._logger.debug('Cleanup old arakoon - Creating tar file')
tar_name = '{0}/{1}.tgz'.format(archive_dir, int(time.time()))
root_client.run('cd {0}; tar -cz -f {1} --exclude "archive" *'.format(directory, tar_name))
ArakoonInstaller._logger.debug('Cleanup old arakoon - Removing old files from {0}'.format(directory))
root_client.file_delete(info['files'])
示例2: clean_leftover_arakoon_data
# 需要导入模块: from ovs.extensions.generic.sshclient import SSHClient [as 别名]
# 或者: from ovs.extensions.generic.sshclient.SSHClient import file_list [as 别名]
def clean_leftover_arakoon_data(ip, directories):
"""
Delete existing arakoon data
:param ip: IP on which to check for existing data
:type ip: str
:param directories: Directories to delete
:type directories: list
:return: None
"""
if os.environ.get('RUNNING_UNITTESTS') == 'True':
return
root_client = SSHClient(ip, username='root')
# Verify whether all files to be archived have been released properly
open_file_errors = []
ArakoonInstaller._logger.debug('Cleanup old arakoon - Checking open files')
dirs_with_files = {}
for directory in directories:
ArakoonInstaller._logger.debug('Cleaning old arakoon - Checking directory {0}'.format(directory))
if root_client.dir_exists(directory):
ArakoonInstaller._logger.debug('Cleaning old arakoon - Directory {0} exists'.format(directory))
file_names = root_client.file_list(directory, abs_path=True, recursive=True)
if len(file_names) > 0:
ArakoonInstaller._logger.debug('Cleaning old arakoon - Files found in directory {0}'.format(directory))
dirs_with_files[directory] = file_names
for file_name in file_names:
try:
open_files = root_client.run(['lsof', file_name])
if open_files != '':
open_file_errors.append('Open file {0} detected in directory {1}'.format(os.path.basename(file_name), directory))
except CalledProcessError:
continue
if len(open_file_errors) > 0:
raise RuntimeError('\n - ' + '\n - '.join(open_file_errors))
for directory, info in dirs_with_files.iteritems():
ArakoonInstaller._logger.debug('Cleanup old arakoon - Removing old files from {0}'.format(directory))
root_client.file_delete(info)
示例3: test_basic_logrotate
# 需要导入模块: from ovs.extensions.generic.sshclient import SSHClient [as 别名]
# 或者: from ovs.extensions.generic.sshclient.SSHClient import file_list [as 别名]
def test_basic_logrotate():
"""
Verify current openvstorage logrotate configuration
Apply the openvstorage logrotate on custom logfile and see if it rotates as predicted
Update ownership of custom file and verify logrotate raises issue
"""
storagerouters = GeneralStorageRouter.get_storage_routers()
logrotate_content = """{0} {{
rotate 5
size 20M
compress
copytruncate
notifempty
}}
{1} {{
su ovs ovs
rotate 10
size 19M
compress
delaycompress
notifempty
create 666 ovs ovs
postrotate
/usr/bin/pkill -SIGUSR1 arakoon
endscript
}}"""
if len(storagerouters) == 0:
raise ValueError('No Storage Routers found in the model')
logrotate_include_dir = '/etc/logrotate.d'
logrotate_cfg_file = '/etc/logrotate.conf'
logrotate_cron_file = '/etc/cron.daily/logrotate'
logrotate_ovs_file = '{0}/openvstorage-logs'.format(logrotate_include_dir)
expected_logrotate_content = logrotate_content.format('/var/log/ovs/*.log', '/var/log/arakoon/*/*.log')
# Verify basic logrotate configurations
for storagerouter in storagerouters:
root_client = SSHClient(endpoint=storagerouter, username='root')
assert_true(expr=root_client.file_exists(filename=logrotate_cfg_file),
msg='Logrotate config {0} does not exist on Storage Router {1}'.format(logrotate_cfg_file, storagerouter.name))
assert_true(expr=root_client.file_exists(filename=logrotate_ovs_file),
msg='Logrotate file {0} does not exist on Storage Router {1}'.format(logrotate_ovs_file, storagerouter.name))
assert_true(expr=root_client.file_exists(filename=logrotate_cron_file),
msg='Logrotate file {0} does not exist on Storage Router {1}'.format(logrotate_cron_file, storagerouter.name))
assert_true(expr='include {0}'.format(logrotate_include_dir) in root_client.file_read(filename=logrotate_cfg_file).splitlines(),
msg='Logrotate on Storage Router {0} does not include {1}'.format(storagerouter.name, logrotate_include_dir))
assert_true(expr='/usr/sbin/logrotate /etc/logrotate.conf' in root_client.file_read(filename=logrotate_cron_file).splitlines(),
msg='Logrotate will not be executed on Storage Router {0}'.format(storagerouter.name))
actual_file_contents = root_client.file_read(filename=logrotate_ovs_file).rstrip('\n')
assert_equal(first=expected_logrotate_content,
second=actual_file_contents,
msg='Logrotate contents does not match expected contents on Storage Router {0}'.format(storagerouter.name))
# Create custom logrotate file for testing purposes
custom_logrotate_cfg_file = '/opt/OpenvStorage/ci/logrotate-conf'
custom_logrotate_dir = '/opt/OpenvStorage/ci/logrotate'
custom_logrotate_file1 = '{0}/logrotate_test_file1.log'.format(custom_logrotate_dir)
custom_logrotate_file2 = '{0}/logrotate_test_file2.log'.format(custom_logrotate_dir)
custom_logrotate_content = logrotate_content.format(custom_logrotate_file1, custom_logrotate_file2)
local_sr = GeneralStorageRouter.get_local_storagerouter()
root_client = SSHClient(endpoint=local_sr, username='root')
root_client.file_write(filename=custom_logrotate_cfg_file, contents=custom_logrotate_content)
# No logfile present --> logrotate should fail
assert_raises(excClass=CalledProcessError,
callableObj=root_client.run,
command='logrotate {0}'.format(custom_logrotate_cfg_file))
##########################################
# Test 1st logrotate configuration entry #
##########################################
root_client.dir_create(directories=custom_logrotate_dir)
root_client.dir_chown(directories=custom_logrotate_dir,
user='ovs',
group='ovs',
recursive=True)
root_client.run(command='touch {0}'.format(custom_logrotate_file1))
root_client.run(command='touch {0}'.format(custom_logrotate_file2))
root_client.file_chmod(filename=custom_logrotate_file1, mode=666)
root_client.file_chmod(filename=custom_logrotate_file2, mode=666)
# Write data to the file less than size for rotation and verify rotation
GeneralVDisk.write_to_volume(location=custom_logrotate_file1,
count=15,
bs='1M',
input_type='zero',
root_client=root_client)
root_client.run('logrotate {0}'.format(custom_logrotate_cfg_file))
assert_equal(first=len(root_client.file_list(directory=custom_logrotate_dir)),
second=2,
msg='More files than expected present in {0}'.format(custom_logrotate_dir))
# Write data to file larger than size in configuration and verify amount of rotations
files_to_delete = []
for counter in range(7):
expected_file = '{0}.{1}.gz'.format(custom_logrotate_file1, counter + 1 if counter < 5 else 5)
GeneralVDisk.write_to_volume(location=custom_logrotate_file1,
count=30,
bs='1M',
#.........这里部分代码省略.........
示例4: check_license_headers_test
# 需要导入模块: from ovs.extensions.generic.sshclient import SSHClient [as 别名]
# 或者: from ovs.extensions.generic.sshclient.SSHClient import file_list [as 别名]
def check_license_headers_test():
"""
Check license headers
"""
license_header = re.compile('Copyright 201[4-9] iNuron NV')
license_to_check = ['',
'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.']
exclude_dirs = ['/opt/OpenvStorage/config/templates/cinder-unit-tests/',
'/opt/OpenvStorage/config/templates/cinder-volume-driver/',
'/opt/OpenvStorage/webapps/frontend/css/',
'/opt/OpenvStorage/webapps/frontend/lib/',
'/opt/OpenvStorage/ovs/extensions/db/arakoon/arakoon/arakoon/',
'/opt/OpenvStorage/ovs/extensions/db/arakoon/pyrakoon/pyrakoon/']
include_dirs = ['/opt/OpenvStorage/webapps/frontend/lib/ovs/']
exclude_files = ['/opt/OpenvStorage/ovs/extensions/generic/fakesleep.py']
include_files = ['/opt/OpenvStorage/webapps/frontend/css/ovs.css']
extension_comments_map = {'.py': ['#'],
'.js': ['//'],
'.html': ['<!--', '-->'],
'.css': ['/*', '*', '*/']}
storagerouters = GeneralStorageRouter.get_storage_routers()
files_with_diff_licenses = {}
for storagerouter in storagerouters:
root_client = SSHClient(storagerouter, username='root')
files_with_diff_licenses[storagerouter.guid] = []
for root_folder in ['/opt/OpenvStorage', '/opt/asd-manager']:
if not root_client.dir_exists(root_folder):
raise ValueError('Root folder {0} does not exist'.format(root_folder))
unfiltered_files = root_client.file_list(directory=root_folder,
abs_path=True,
recursive=True)
filtered_files = General.filter_files(files=unfiltered_files,
extensions=extension_comments_map.keys(),
exclude_dirs=exclude_dirs,
include_dirs=include_dirs,
exclude_files=exclude_files,
include_files=include_files)
for file_name in filtered_files:
# Read file
with open(file_name, 'r') as utf_file:
data = utf_file.read().decode("utf-8-sig").encode("utf-8")
lines_to_check = data.splitlines()
# Check relevant comment type for current file
comments = []
for extension, cmts in extension_comments_map.iteritems():
if file_name.endswith(extension):
comments = cmts
break
if len(comments) == 0:
raise ValueError('Something must have gone wrong filtering the files, because file {0} does not have a correct extension'.format(file_name))
# Search license header
index = 0
lic_header_found = False
for index, line in enumerate(lines_to_check):
for comment in comments:
line = line.replace(comment, '', 1)
if re.match(license_header, line.strip()):
lic_header_found = True
break
# License header not found, continuing
if lic_header_found is False:
files_with_diff_licenses[storagerouter.guid].append(file_name)
continue
# License header found, checking rest of license
index += 1
for license_line in license_to_check:
line_to_check = lines_to_check[index]
for comment in comments:
line_to_check = line_to_check.replace(comment, '', 1)
if license_line.strip() == line_to_check.strip():
index += 1
continue
files_with_diff_licenses[storagerouter.guid].append(file_name)
break
for storagerouter in storagerouters:
assert len(files_with_diff_licenses[storagerouter.guid]) == 0, 'Following files were found with different licenses:\n - {0}'.format('\n - '.join(files_with_diff_licenses[storagerouter.guid]))
示例5: check_license_headers_test
# 需要导入模块: from ovs.extensions.generic.sshclient import SSHClient [as 别名]
# 或者: from ovs.extensions.generic.sshclient.SSHClient import file_list [as 别名]
def check_license_headers_test():
"""
Check license headers
"""
license_header = re.compile('Copyright \(C\) 201[4-9] iNuron NV')
license_to_check = ["",
" This file is part of Open vStorage Open Source Edition (OSE),",
" as available from",
"",
" http://www.openvstorage.org and",
" http://www.openvstorage.com.",
"",
" This file is free software; you can redistribute it and/or modify it",
" under the terms of the GNU Affero General Public License v3 (GNU AGPLv3)",
" as published by the Free Software Foundation, in version 3 as it comes",
" in the LICENSE.txt file of the Open vStorage OSE distribution.",
"",
" Open vStorage is distributed in the hope that it will be useful,",
" but WITHOUT ANY WARRANTY of any kind."]
exclude_dirs = ['/opt/OpenvStorage/config/templates/cinder-unit-tests/',
'/opt/OpenvStorage/config/templates/cinder-volume-driver/',
'/opt/OpenvStorage/webapps/frontend/css/',
'/opt/OpenvStorage/webapps/frontend/lib/',
'/opt/OpenvStorage/ovs/extensions/db/arakoon/arakoon/arakoon/',
'/opt/OpenvStorage/ovs/extensions/db/arakoon/pyrakoon/pyrakoon/',
'/opt/asd-manager/source/tools/pyrakoon/pyrakoon/']
include_dirs = ['/opt/OpenvStorage/webapps/frontend/lib/ovs/']
exclude_files = ['/opt/OpenvStorage/ovs/extensions/generic/fakesleep.py']
include_files = ['/opt/OpenvStorage/webapps/frontend/css/ovs.css']
extension_comments_map = {'.py': ['#'],
'.sh': ['#'],
'.js': ['//'],
'.html': ['<!--', '-->'],
'.css': ['/*', '*', '*/']}
storagerouters = GeneralStorageRouter.get_storage_routers()
files_with_diff_licenses = {}
for storagerouter in storagerouters:
root_client = SSHClient(storagerouter, username='root')
files_with_diff_licenses[storagerouter.guid] = []
for root_folder in ['/opt/OpenvStorage', '/opt/asd-manager']:
if not root_client.dir_exists(root_folder):
raise ValueError('Root folder {0} does not exist'.format(root_folder))
unfiltered_files = root_client.file_list(directory=root_folder,
abs_path=True,
recursive=True)
filtered_files = General.filter_files(files=unfiltered_files,
extensions=extension_comments_map.keys(),
exclude_dirs=exclude_dirs,
include_dirs=include_dirs,
exclude_files=exclude_files,
include_files=include_files)
for file_name in filtered_files:
# Read file
with open(file_name, 'r') as utf_file:
data = utf_file.read().decode("utf-8-sig").encode("utf-8")
lines_to_check = data.splitlines()
# Check relevant comment type for current file
comments = []
for extension, cmts in extension_comments_map.iteritems():
if file_name.endswith(extension):
comments = cmts
break
if len(comments) == 0:
raise ValueError('Something must have gone wrong filtering the files, because file {0} does not have a correct extension'.format(file_name))
# Search license header
index = 0
lic_header_found = False
for index, line in enumerate(lines_to_check):
for comment in comments:
line = line.replace(comment, '', 1)
if re.match(license_header, line.strip()):
lic_header_found = True
break
# License header not found, continuing
if lic_header_found is False:
files_with_diff_licenses[storagerouter.guid].append(file_name)
continue
# License header found, checking rest of license
index += 1
for license_line in license_to_check:
line_to_check = lines_to_check[index]
for comment in comments:
line_to_check = line_to_check.replace(comment, '', 1)
if license_line.strip() == line_to_check.strip():
index += 1
else:
files_with_diff_licenses[storagerouter.guid].append(file_name)
break
for storagerouter in storagerouters:
assert len(files_with_diff_licenses[storagerouter.guid]) == 0, 'Following files were found with different licenses:\n - {0}'.format('\n - '.join(files_with_diff_licenses[storagerouter.guid]))