2018-07-11 12:50:42 +00:00
|
|
|
"""Test yadm.cygwin_copy"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
2019-08-16 13:19:11 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'compatibility', [True, False], ids=['compat', 'no-compat'])
|
2018-07-11 12:50:42 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'setting, is_cygwin, expect_link, pre_existing', [
|
|
|
|
(None, False, True, None),
|
|
|
|
(True, False, True, None),
|
|
|
|
(False, False, True, None),
|
|
|
|
(None, True, True, None),
|
|
|
|
(True, True, False, None),
|
|
|
|
(False, True, True, None),
|
|
|
|
(True, True, False, 'link'),
|
|
|
|
(True, True, False, 'file'),
|
|
|
|
],
|
|
|
|
ids=[
|
|
|
|
'unset, non-cygwin',
|
|
|
|
'true, non-cygwin',
|
|
|
|
'false, non-cygwin',
|
|
|
|
'unset, cygwin',
|
|
|
|
'true, cygwin',
|
|
|
|
'false, cygwin',
|
|
|
|
'pre-existing symlink',
|
|
|
|
'pre-existing file',
|
|
|
|
])
|
|
|
|
@pytest.mark.usefixtures('ds1_copy')
|
|
|
|
def test_cygwin_copy(
|
|
|
|
runner, yadm_y, paths, cygwin_sys, tst_sys,
|
2019-08-16 13:19:11 +00:00
|
|
|
setting, is_cygwin, expect_link, pre_existing,
|
|
|
|
compatibility):
|
2018-07-11 12:50:42 +00:00
|
|
|
"""Test yadm.cygwin_copy"""
|
|
|
|
|
|
|
|
if setting is not None:
|
|
|
|
os.system(' '.join(yadm_y('config', 'yadm.cygwin-copy', str(setting))))
|
|
|
|
|
2019-09-29 22:48:20 +00:00
|
|
|
if compatibility:
|
|
|
|
expected_content = f'test_cygwin_copy##{tst_sys}'
|
|
|
|
else:
|
|
|
|
expected_content = f'test_cygwin_copy##os.{tst_sys}'
|
|
|
|
|
2018-07-11 12:50:42 +00:00
|
|
|
alt_path = paths.work.join('test_cygwin_copy')
|
|
|
|
if pre_existing == 'symlink':
|
|
|
|
alt_path.mklinkto(expected_content)
|
|
|
|
elif pre_existing == 'file':
|
|
|
|
alt_path.write('wrong content')
|
|
|
|
|
|
|
|
uname_path = paths.root.join('tmp').mkdir()
|
|
|
|
if is_cygwin:
|
|
|
|
uname = uname_path.join('uname')
|
|
|
|
uname.write(f'#!/bin/sh\necho "{cygwin_sys}"\n')
|
|
|
|
uname.chmod(0o777)
|
2019-09-29 22:48:20 +00:00
|
|
|
if compatibility:
|
|
|
|
expected_content = f'test_cygwin_copy##{cygwin_sys}'
|
|
|
|
else:
|
|
|
|
expected_content = f'test_cygwin_copy##os.{cygwin_sys}'
|
2018-07-11 12:50:42 +00:00
|
|
|
env = os.environ.copy()
|
|
|
|
env['PATH'] = ':'.join([str(uname_path), env['PATH']])
|
2019-08-16 13:19:11 +00:00
|
|
|
if compatibility:
|
|
|
|
env['YADM_COMPATIBILITY'] = '1'
|
2018-07-11 12:50:42 +00:00
|
|
|
|
|
|
|
run = runner(yadm_y('alt'), env=env)
|
|
|
|
assert run.success
|
|
|
|
assert run.err == ''
|
|
|
|
assert 'Linking' in run.out
|
|
|
|
|
|
|
|
assert alt_path.read() == expected_content
|
|
|
|
assert alt_path.islink() == expect_link
|