2013-10-06 05:47:17 +02:00
|
|
|
import errno
|
2013-10-15 02:00:53 +02:00
|
|
|
import hashlib
|
2013-06-27 00:09:05 +02:00
|
|
|
import json
|
|
|
|
import os.path
|
2013-10-05 21:55:58 +02:00
|
|
|
import re
|
2018-11-02 19:18:20 +01:00
|
|
|
import ssl
|
2013-10-28 23:03:26 +01:00
|
|
|
import sys
|
2022-04-12 00:32:57 +02:00
|
|
|
import types
|
2013-06-27 00:09:05 +02:00
|
|
|
|
2021-02-24 19:45:56 +01:00
|
|
|
import yt_dlp.extractor
|
|
|
|
from yt_dlp import YoutubeDL
|
2022-06-24 12:54:43 +02:00
|
|
|
from yt_dlp.compat import compat_os_name
|
2024-01-19 22:39:49 +01:00
|
|
|
from yt_dlp.utils import preferredencoding, try_call, write_string, find_available_port
|
2013-06-27 00:09:05 +02:00
|
|
|
|
2021-10-09 02:23:15 +02:00
|
|
|
if 'pytest' in sys.modules:
|
2021-07-23 16:48:15 +02:00
|
|
|
import pytest
|
|
|
|
is_download_test = pytest.mark.download
|
|
|
|
else:
|
|
|
|
def is_download_test(testClass):
|
|
|
|
return testClass
|
|
|
|
|
|
|
|
|
2013-10-15 02:00:53 +02:00
|
|
|
def get_params(override=None):
|
|
|
|
PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)),
|
2021-10-09 02:23:15 +02:00
|
|
|
'parameters.json')
|
2016-04-23 15:30:44 +02:00
|
|
|
LOCAL_PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)),
|
2021-10-09 02:23:15 +02:00
|
|
|
'local_parameters.json')
|
2022-04-11 17:10:28 +02:00
|
|
|
with open(PARAMETERS_FILE, encoding='utf-8') as pf:
|
2013-10-15 02:00:53 +02:00
|
|
|
parameters = json.load(pf)
|
2016-04-23 15:30:44 +02:00
|
|
|
if os.path.exists(LOCAL_PARAMETERS_FILE):
|
2022-04-11 17:10:28 +02:00
|
|
|
with open(LOCAL_PARAMETERS_FILE, encoding='utf-8') as pf:
|
2016-04-23 15:30:44 +02:00
|
|
|
parameters.update(json.load(pf))
|
2013-10-15 02:00:53 +02:00
|
|
|
if override:
|
|
|
|
parameters.update(override)
|
|
|
|
return parameters
|
2013-06-27 00:09:05 +02:00
|
|
|
|
2013-10-06 05:47:17 +02:00
|
|
|
|
|
|
|
def try_rm(filename):
|
|
|
|
""" Remove a file if it exists """
|
|
|
|
try:
|
|
|
|
os.remove(filename)
|
|
|
|
except OSError as ose:
|
|
|
|
if ose.errno != errno.ENOENT:
|
|
|
|
raise
|
|
|
|
|
|
|
|
|
2022-06-21 09:21:46 +02:00
|
|
|
def report_warning(message, *args, **kwargs):
|
2013-10-28 23:03:26 +01:00
|
|
|
'''
|
|
|
|
Print the message to stderr, it will be prefixed with 'WARNING:'
|
|
|
|
If stderr is a tty file the 'WARNING:' will be colored
|
|
|
|
'''
|
2016-03-03 12:24:24 +01:00
|
|
|
if sys.stderr.isatty() and compat_os_name != 'nt':
|
2014-09-29 22:11:24 +02:00
|
|
|
_msg_header = '\033[0;33mWARNING:\033[0m'
|
2013-10-28 23:03:26 +01:00
|
|
|
else:
|
2014-09-29 22:11:24 +02:00
|
|
|
_msg_header = 'WARNING:'
|
2022-04-11 17:10:28 +02:00
|
|
|
output = f'{_msg_header} {message}\n'
|
2021-12-30 13:23:36 +01:00
|
|
|
if 'b' in getattr(sys.stderr, 'mode', ''):
|
2013-10-28 23:03:26 +01:00
|
|
|
output = output.encode(preferredencoding())
|
|
|
|
sys.stderr.write(output)
|
|
|
|
|
|
|
|
|
2013-06-27 00:09:05 +02:00
|
|
|
class FakeYDL(YoutubeDL):
|
2013-10-18 00:46:35 +02:00
|
|
|
def __init__(self, override=None):
|
2013-06-27 00:09:05 +02:00
|
|
|
# Different instances of the downloader can't share the same dictionary
|
|
|
|
# some test set the "sublang" parameter, which would break the md5 checks.
|
2013-10-18 00:46:35 +02:00
|
|
|
params = get_params(override=override)
|
2022-04-11 17:10:28 +02:00
|
|
|
super().__init__(params, auto_init=False)
|
2013-10-06 05:47:17 +02:00
|
|
|
self.result = []
|
2014-11-23 20:41:03 +01:00
|
|
|
|
2022-06-21 09:21:46 +02:00
|
|
|
def to_screen(self, s, *args, **kwargs):
|
2013-06-27 00:09:05 +02:00
|
|
|
print(s)
|
2013-10-06 05:47:17 +02:00
|
|
|
|
2022-06-21 09:21:46 +02:00
|
|
|
def trouble(self, s, *args, **kwargs):
|
2013-06-27 00:09:05 +02:00
|
|
|
raise Exception(s)
|
2013-10-06 05:47:17 +02:00
|
|
|
|
2013-06-27 00:09:05 +02:00
|
|
|
def download(self, x):
|
2013-06-27 21:15:16 +02:00
|
|
|
self.result.append(x)
|
2013-10-06 05:47:17 +02:00
|
|
|
|
2013-10-05 21:55:58 +02:00
|
|
|
def expect_warning(self, regex):
|
|
|
|
# Silence an expected warning matching a regex
|
|
|
|
old_report_warning = self.report_warning
|
2014-11-23 20:41:03 +01:00
|
|
|
|
2022-06-21 09:21:46 +02:00
|
|
|
def report_warning(self, message, *args, **kwargs):
|
2014-11-23 20:41:03 +01:00
|
|
|
if re.match(regex, message):
|
|
|
|
return
|
2022-06-21 09:21:46 +02:00
|
|
|
old_report_warning(message, *args, **kwargs)
|
2013-10-05 21:55:58 +02:00
|
|
|
self.report_warning = types.MethodType(report_warning, self)
|
2013-06-27 21:15:16 +02:00
|
|
|
|
2014-04-19 19:41:06 +02:00
|
|
|
|
|
|
|
def gettestcases(include_onlymatching=False):
|
2021-02-24 19:45:56 +01:00
|
|
|
for ie in yt_dlp.extractor.gen_extractors():
|
2022-04-11 17:10:28 +02:00
|
|
|
yield from ie.get_testcases(include_onlymatching)
|
2013-10-15 02:00:53 +02:00
|
|
|
|
|
|
|
|
2022-07-08 13:23:05 +02:00
|
|
|
def getwebpagetestcases():
|
|
|
|
for ie in yt_dlp.extractor.gen_extractors():
|
|
|
|
for tc in ie.get_webpage_testcases():
|
|
|
|
tc.setdefault('add_ie', []).append('Generic')
|
|
|
|
yield tc
|
|
|
|
|
|
|
|
|
2022-05-09 13:54:28 +02:00
|
|
|
md5 = lambda s: hashlib.md5(s.encode()).hexdigest()
|
2014-03-23 15:52:21 +01:00
|
|
|
|
|
|
|
|
2015-09-26 17:10:38 +02:00
|
|
|
def expect_value(self, got, expected, field):
|
2022-06-24 12:54:43 +02:00
|
|
|
if isinstance(expected, str) and expected.startswith('re:'):
|
2015-09-26 17:10:38 +02:00
|
|
|
match_str = expected[len('re:'):]
|
|
|
|
match_rex = re.compile(match_str)
|
|
|
|
|
|
|
|
self.assertTrue(
|
2022-06-24 12:54:43 +02:00
|
|
|
isinstance(got, str),
|
|
|
|
f'Expected a {str.__name__} object, but got {type(got).__name__} for field {field}')
|
2015-09-26 17:10:38 +02:00
|
|
|
self.assertTrue(
|
|
|
|
match_rex.match(got),
|
2022-04-11 17:10:28 +02:00
|
|
|
f'field {field} (value: {got!r}) should match {match_str!r}')
|
2022-06-24 12:54:43 +02:00
|
|
|
elif isinstance(expected, str) and expected.startswith('startswith:'):
|
2015-09-26 17:10:38 +02:00
|
|
|
start_str = expected[len('startswith:'):]
|
|
|
|
self.assertTrue(
|
2022-06-24 12:54:43 +02:00
|
|
|
isinstance(got, str),
|
|
|
|
f'Expected a {str.__name__} object, but got {type(got).__name__} for field {field}')
|
2015-09-26 17:10:38 +02:00
|
|
|
self.assertTrue(
|
|
|
|
got.startswith(start_str),
|
2022-04-11 17:10:28 +02:00
|
|
|
f'field {field} (value: {got!r}) should start with {start_str!r}')
|
2022-06-24 12:54:43 +02:00
|
|
|
elif isinstance(expected, str) and expected.startswith('contains:'):
|
2015-09-26 17:10:38 +02:00
|
|
|
contains_str = expected[len('contains:'):]
|
|
|
|
self.assertTrue(
|
2022-06-24 12:54:43 +02:00
|
|
|
isinstance(got, str),
|
|
|
|
f'Expected a {str.__name__} object, but got {type(got).__name__} for field {field}')
|
2015-09-26 17:10:38 +02:00
|
|
|
self.assertTrue(
|
|
|
|
contains_str in got,
|
2022-04-11 17:10:28 +02:00
|
|
|
f'field {field} (value: {got!r}) should contain {contains_str!r}')
|
2015-09-26 17:10:38 +02:00
|
|
|
elif isinstance(expected, type):
|
2015-09-30 16:21:01 +02:00
|
|
|
self.assertTrue(
|
|
|
|
isinstance(got, expected),
|
2022-04-11 17:10:28 +02:00
|
|
|
f'Expected type {expected!r} for field {field}, but got value {got!r} of type {type(got)!r}')
|
2015-09-26 17:10:38 +02:00
|
|
|
elif isinstance(expected, dict) and isinstance(got, dict):
|
|
|
|
expect_dict(self, got, expected)
|
|
|
|
elif isinstance(expected, list) and isinstance(got, list):
|
2015-09-30 16:21:01 +02:00
|
|
|
self.assertEqual(
|
|
|
|
len(expected), len(got),
|
2015-09-30 16:31:29 +02:00
|
|
|
'Expect a list of length %d, but got a list of length %d for field %s' % (
|
|
|
|
len(expected), len(got), field))
|
2015-09-30 10:30:04 +02:00
|
|
|
for index, (item_got, item_expected) in enumerate(zip(got, expected)):
|
|
|
|
type_got = type(item_got)
|
|
|
|
type_expected = type(item_expected)
|
2015-09-30 16:21:01 +02:00
|
|
|
self.assertEqual(
|
|
|
|
type_expected, type_got,
|
2015-09-30 16:26:42 +02:00
|
|
|
'Type mismatch for list item at index %d for field %s, expected %r, got %r' % (
|
2015-10-02 13:42:11 +02:00
|
|
|
index, field, type_expected, type_got))
|
2015-09-30 10:30:04 +02:00
|
|
|
expect_value(self, item_got, item_expected, field)
|
2015-09-26 17:10:38 +02:00
|
|
|
else:
|
2022-06-24 12:54:43 +02:00
|
|
|
if isinstance(expected, str) and expected.startswith('md5:'):
|
2016-04-09 16:04:48 +02:00
|
|
|
self.assertTrue(
|
2022-06-24 12:54:43 +02:00
|
|
|
isinstance(got, str),
|
2022-04-11 17:10:28 +02:00
|
|
|
f'Expected field {field} to be a unicode object, but got value {got!r} of type {type(got)!r}')
|
2015-09-26 17:10:38 +02:00
|
|
|
got = 'md5:' + md5(got)
|
2022-06-24 12:54:43 +02:00
|
|
|
elif isinstance(expected, str) and re.match(r'^(?:min|max)?count:\d+', expected):
|
2015-02-18 19:58:41 +01:00
|
|
|
self.assertTrue(
|
2015-09-26 17:10:38 +02:00
|
|
|
isinstance(got, (list, dict)),
|
2022-04-11 17:10:28 +02:00
|
|
|
f'Expected field {field} to be a list or a dict, but it is of type {type(got).__name__}')
|
2019-01-15 20:17:49 +01:00
|
|
|
op, _, expected_num = expected.partition(':')
|
|
|
|
expected_num = int(expected_num)
|
|
|
|
if op == 'mincount':
|
|
|
|
assert_func = assertGreaterEqual
|
|
|
|
msg_tmpl = 'Expected %d items in field %s, but only got %d'
|
|
|
|
elif op == 'maxcount':
|
|
|
|
assert_func = assertLessEqual
|
|
|
|
msg_tmpl = 'Expected maximum %d items in field %s, but got %d'
|
|
|
|
elif op == 'count':
|
|
|
|
assert_func = assertEqual
|
|
|
|
msg_tmpl = 'Expected exactly %d items in field %s, but got %d'
|
|
|
|
else:
|
|
|
|
assert False
|
|
|
|
assert_func(
|
2015-09-26 17:10:38 +02:00
|
|
|
self, len(got), expected_num,
|
2019-01-15 20:17:49 +01:00
|
|
|
msg_tmpl % (expected_num, field, len(got)))
|
2015-09-26 17:10:38 +02:00
|
|
|
return
|
2015-09-30 16:21:01 +02:00
|
|
|
self.assertEqual(
|
|
|
|
expected, got,
|
2022-04-11 17:10:28 +02:00
|
|
|
f'Invalid value for field {field}, expected {expected!r}, got {got!r}')
|
2015-09-26 17:10:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
def expect_dict(self, got_dict, expected_dict):
|
|
|
|
for info_field, expected in expected_dict.items():
|
|
|
|
got = got_dict.get(info_field)
|
|
|
|
expect_value(self, got, expected, info_field)
|
2014-03-23 15:52:21 +01:00
|
|
|
|
2015-08-30 08:33:12 +02:00
|
|
|
|
2021-12-19 04:35:40 +01:00
|
|
|
def sanitize_got_info_dict(got_dict):
|
|
|
|
IGNORED_FIELDS = (
|
2022-03-25 09:36:46 +01:00
|
|
|
*YoutubeDL._format_fields,
|
2021-12-14 23:02:40 +01:00
|
|
|
|
|
|
|
# Lists
|
|
|
|
'formats', 'thumbnails', 'subtitles', 'automatic_captions', 'comments', 'entries',
|
|
|
|
|
|
|
|
# Auto-generated
|
2023-05-19 23:36:23 +02:00
|
|
|
'autonumber', 'playlist', 'format_index', 'video_ext', 'audio_ext', 'duration_string', 'epoch', 'n_entries',
|
|
|
|
'fulltitle', 'extractor', 'extractor_key', 'filename', 'filepath', 'infojson_filename', 'original_url',
|
2021-12-14 23:02:40 +01:00
|
|
|
|
|
|
|
# Only live_status needs to be checked
|
|
|
|
'is_live', 'was_live',
|
|
|
|
)
|
|
|
|
|
2021-12-19 04:35:40 +01:00
|
|
|
IGNORED_PREFIXES = ('', 'playlist', 'requested', 'webpage')
|
2021-12-14 23:02:40 +01:00
|
|
|
|
|
|
|
def sanitize(key, value):
|
2022-01-23 20:51:39 +01:00
|
|
|
if isinstance(value, str) and len(value) > 100 and key != 'thumbnail':
|
2021-12-14 23:02:40 +01:00
|
|
|
return f'md5:{md5(value)}'
|
|
|
|
elif isinstance(value, list) and len(value) > 10:
|
|
|
|
return f'count:{len(value)}'
|
2022-01-07 12:54:57 +01:00
|
|
|
elif key.endswith('_count') and isinstance(value, int):
|
|
|
|
return int
|
2021-12-14 23:02:40 +01:00
|
|
|
return value
|
|
|
|
|
|
|
|
test_info_dict = {
|
|
|
|
key: sanitize(key, value) for key, value in got_dict.items()
|
2023-11-20 02:03:33 +01:00
|
|
|
if value is not None and key not in IGNORED_FIELDS and (
|
|
|
|
not any(key.startswith(f'{prefix}_') for prefix in IGNORED_PREFIXES)
|
|
|
|
or key == '_old_archive_ids')
|
2021-12-14 23:02:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# display_id may be generated from id
|
2022-01-19 23:57:36 +01:00
|
|
|
if test_info_dict.get('display_id') == test_info_dict.get('id'):
|
2021-12-14 23:02:40 +01:00
|
|
|
test_info_dict.pop('display_id')
|
|
|
|
|
2024-02-20 08:19:24 +01:00
|
|
|
# Remove deprecated fields
|
|
|
|
for old in YoutubeDL._deprecated_multivalue_fields.keys():
|
|
|
|
test_info_dict.pop(old, None)
|
|
|
|
|
2023-11-26 03:12:05 +01:00
|
|
|
# release_year may be generated from release_date
|
|
|
|
if try_call(lambda: test_info_dict['release_year'] == int(test_info_dict['release_date'][:4])):
|
|
|
|
test_info_dict.pop('release_year')
|
|
|
|
|
2022-11-10 03:02:25 +01:00
|
|
|
# Check url for flat entries
|
|
|
|
if got_dict.get('_type', 'video') != 'video' and got_dict.get('url'):
|
|
|
|
test_info_dict['url'] = got_dict['url']
|
|
|
|
|
2021-12-19 04:35:40 +01:00
|
|
|
return test_info_dict
|
|
|
|
|
|
|
|
|
|
|
|
def expect_info_dict(self, got_dict, expected_dict):
|
|
|
|
expect_dict(self, got_dict, expected_dict)
|
|
|
|
# Check for the presence of mandatory fields
|
|
|
|
if got_dict.get('_type') not in ('playlist', 'multi_video'):
|
|
|
|
mandatory_fields = ['id', 'title']
|
|
|
|
if expected_dict.get('ext'):
|
|
|
|
mandatory_fields.extend(('url', 'ext'))
|
|
|
|
for key in mandatory_fields:
|
|
|
|
self.assertTrue(got_dict.get(key), 'Missing mandatory field %s' % key)
|
|
|
|
# Check for mandatory fields that are automatically set by YoutubeDL
|
2022-11-10 03:02:25 +01:00
|
|
|
if got_dict.get('_type', 'video') == 'video':
|
|
|
|
for key in ['webpage_url', 'extractor', 'extractor_key']:
|
|
|
|
self.assertTrue(got_dict.get(key), 'Missing field: %s' % key)
|
2021-12-19 04:35:40 +01:00
|
|
|
|
|
|
|
test_info_dict = sanitize_got_info_dict(got_dict)
|
|
|
|
|
2014-03-23 16:06:03 +01:00
|
|
|
missing_keys = set(test_info_dict.keys()) - set(expected_dict.keys())
|
|
|
|
if missing_keys:
|
2014-09-29 22:19:11 +02:00
|
|
|
def _repr(v):
|
2022-06-24 12:54:43 +02:00
|
|
|
if isinstance(v, str):
|
2014-11-26 22:52:28 +01:00
|
|
|
return "'%s'" % v.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n')
|
2022-01-07 12:54:57 +01:00
|
|
|
elif isinstance(v, type):
|
|
|
|
return v.__name__
|
2014-09-29 22:19:11 +02:00
|
|
|
else:
|
|
|
|
return repr(v)
|
2022-11-11 04:13:08 +01:00
|
|
|
info_dict_str = ''.join(
|
|
|
|
f' {_repr(k)}: {_repr(v)},\n'
|
|
|
|
for k, v in test_info_dict.items() if k not in missing_keys)
|
|
|
|
if info_dict_str:
|
|
|
|
info_dict_str += '\n'
|
2015-01-30 15:52:31 +01:00
|
|
|
info_dict_str += ''.join(
|
2022-04-11 17:10:28 +02:00
|
|
|
f' {_repr(k)}: {_repr(test_info_dict[k])},\n'
|
2015-01-30 15:52:31 +01:00
|
|
|
for k in missing_keys)
|
2022-11-06 21:59:58 +01:00
|
|
|
info_dict_str = '\n\'info_dict\': {\n' + info_dict_str + '},\n'
|
|
|
|
write_string(info_dict_str.replace('\n', '\n '), out=sys.stderr)
|
2014-03-23 16:06:03 +01:00
|
|
|
self.assertFalse(
|
|
|
|
missing_keys,
|
|
|
|
'Missing keys in test definition: %s' % (
|
|
|
|
', '.join(sorted(missing_keys))))
|
2014-04-30 02:02:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
def assertRegexpMatches(self, text, regexp, msg=None):
|
2014-07-23 01:43:46 +02:00
|
|
|
if hasattr(self, 'assertRegexp'):
|
|
|
|
return self.assertRegexp(text, regexp, msg)
|
2014-04-30 02:02:41 +02:00
|
|
|
else:
|
|
|
|
m = re.match(regexp, text)
|
|
|
|
if not m:
|
2014-12-12 17:06:52 +01:00
|
|
|
note = 'Regexp didn\'t match: %r not found' % (regexp)
|
|
|
|
if len(text) < 1000:
|
|
|
|
note += ' in %r' % text
|
2014-04-30 02:02:41 +02:00
|
|
|
if msg is None:
|
|
|
|
msg = note
|
|
|
|
else:
|
|
|
|
msg = note + ', ' + msg
|
|
|
|
self.assertTrue(m, msg)
|
2014-07-21 12:25:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
def assertGreaterEqual(self, got, expected, msg=None):
|
|
|
|
if not (got >= expected):
|
|
|
|
if msg is None:
|
2022-04-11 17:10:28 +02:00
|
|
|
msg = f'{got!r} not greater than or equal to {expected!r}'
|
2014-07-21 12:25:49 +02:00
|
|
|
self.assertTrue(got >= expected, msg)
|
2014-10-26 20:49:51 +01:00
|
|
|
|
|
|
|
|
2019-01-15 20:17:49 +01:00
|
|
|
def assertLessEqual(self, got, expected, msg=None):
|
|
|
|
if not (got <= expected):
|
|
|
|
if msg is None:
|
2022-04-11 17:10:28 +02:00
|
|
|
msg = f'{got!r} not less than or equal to {expected!r}'
|
2019-01-15 20:17:49 +01:00
|
|
|
self.assertTrue(got <= expected, msg)
|
|
|
|
|
|
|
|
|
|
|
|
def assertEqual(self, got, expected, msg=None):
|
|
|
|
if not (got == expected):
|
|
|
|
if msg is None:
|
2022-04-11 17:10:28 +02:00
|
|
|
msg = f'{got!r} not equal to {expected!r}'
|
2019-01-15 20:17:49 +01:00
|
|
|
self.assertTrue(got == expected, msg)
|
|
|
|
|
|
|
|
|
2014-10-26 20:49:51 +01:00
|
|
|
def expect_warnings(ydl, warnings_re):
|
|
|
|
real_warning = ydl.report_warning
|
|
|
|
|
2022-06-21 09:21:46 +02:00
|
|
|
def _report_warning(w, *args, **kwargs):
|
2014-10-26 20:49:51 +01:00
|
|
|
if not any(re.search(w_re, w) for w_re in warnings_re):
|
2022-06-21 09:21:46 +02:00
|
|
|
real_warning(w, *args, **kwargs)
|
2014-10-26 20:49:51 +01:00
|
|
|
|
|
|
|
ydl.report_warning = _report_warning
|
2018-11-02 19:18:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
def http_server_port(httpd):
|
|
|
|
if os.name == 'java' and isinstance(httpd.socket, ssl.SSLSocket):
|
|
|
|
# In Jython SSLSocket is not a subclass of socket.socket
|
|
|
|
sock = httpd.socket.sock
|
|
|
|
else:
|
|
|
|
sock = httpd.socket
|
|
|
|
return sock.getsockname()[1]
|
2024-01-19 22:39:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
def verify_address_availability(address):
|
|
|
|
if find_available_port(address) is None:
|
|
|
|
pytest.skip(f'Unable to bind to source address {address} (address may not exist)')
|