mirror of
https://github.com/cool-RR/PySnooper.git
synced 2026-01-23 02:14:04 +00:00
72 lines
3.8 KiB
Python
72 lines
3.8 KiB
Python
# Copyright 2022 Ram Rachum and collaborators.
|
|
# This program is distributed under the MIT license.
|
|
|
|
import pysnooper
|
|
from pysnooper.tracer import ansible_filename_pattern
|
|
|
|
def test_ansible_filename_pattern():
|
|
archive_file = '/tmp/ansible_my_module_payload_xyz1234/ansible_my_module_payload.zip'
|
|
source_code_file = 'ansible/modules/my_module.py'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name).group(1) == archive_file
|
|
assert ansible_filename_pattern.match(file_name).group(2) == source_code_file
|
|
|
|
archive_file = '/tmp/ansible_my_module_payload_xyz1234/ansible_my_module_with.zip_name.zip'
|
|
source_code_file = 'ansible/modules/my_module.py'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name).group(1) == archive_file
|
|
assert ansible_filename_pattern.match(file_name).group(2) == source_code_file
|
|
|
|
archive_file = '/my/new/path/payload.zip'
|
|
source_code_file = 'ansible/modules/my_module.py'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name).group(1) == archive_file
|
|
assert ansible_filename_pattern.match(file_name).group(2) == source_code_file
|
|
|
|
archive_file = '/tmp/ansible_my_module_payload_xyz1234/ansible_my_module_payload.zip'
|
|
source_code_file = 'ansible/modules/in/new/path/my_module.py'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name).group(1) == archive_file
|
|
assert ansible_filename_pattern.match(file_name).group(2) == source_code_file
|
|
|
|
archive_file = '/tmp/ansible_my_module_payload_xyz1234/ansible_my_module_payload.zip'
|
|
source_code_file = 'ansible/modules/my_module_is_called_.py.py'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name).group(1) == archive_file
|
|
assert ansible_filename_pattern.match(file_name).group(2) == source_code_file
|
|
|
|
archive_file = 'C:\\Users\\vagrant\\AppData\\Local\\Temp\\pysnooperw5c2lg35\\valid.zip'
|
|
source_code_file = 'ansible\\modules\\my_valid_zip_module.py'
|
|
file_name = '%s\\%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name).group(1) == archive_file
|
|
assert ansible_filename_pattern.match(file_name).group(2) == source_code_file
|
|
|
|
archive_file = '/tmp/ansible_my_module_payload_xyz1234/ansible_my_module_payload.zip'
|
|
source_code_file = 'ANSIBLE/modules/my_module.py'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name) is None
|
|
|
|
archive_file = '/tmp/ansible_my_module_payload_xyz1234/ansible_my_module_payload.zip'
|
|
source_code_file = 'ansible/modules/my_module.PY'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name) is None
|
|
|
|
archive_file = '/tmp/ansible_my_module_payload_xyz1234/ansible_my_module_payload.Zip'
|
|
source_code_file = 'ansible/modules/my_module.py'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name) is None
|
|
|
|
archive_file = '/tmp/ansible_my_module_payload_xyz1234/ansible_my_module_payload.zip'
|
|
source_code_file = 'ansible/my_module.py'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name) is None
|
|
|
|
archive_file = '/tmp/ansible_my_module_payload_xyz1234/ansible_my_module_payload.zip'
|
|
source_code_file = ''
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name) is None
|
|
|
|
archive_file = ''
|
|
source_code_file = 'ansible/modules/my_module.py'
|
|
file_name = '%s/%s' % (archive_file, source_code_file)
|
|
assert ansible_filename_pattern.match(file_name) is None
|