2018-07-11 12:50:42 +00:00
|
|
|
"""Test asserting private directories"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.usefixtures('ds1_copy')
|
|
|
|
PRIVATE_DIRS = ['.gnupg', '.ssh']
|
|
|
|
|
|
|
|
|
2019-12-10 14:16:42 +00:00
|
|
|
@pytest.mark.parametrize('home', [True, False], ids=['home', 'not-home'])
|
|
|
|
def test_pdirs_missing(runner, yadm_y, paths, home):
|
2018-07-11 12:50:42 +00:00
|
|
|
"""Private dirs (private dirs missing)
|
|
|
|
|
|
|
|
When a git command is run
|
|
|
|
And private directories are missing
|
|
|
|
Create private directories prior to command
|
|
|
|
"""
|
|
|
|
|
|
|
|
# confirm directories are missing at start
|
|
|
|
for pdir in PRIVATE_DIRS:
|
|
|
|
path = paths.work.join(pdir)
|
|
|
|
if path.exists():
|
|
|
|
path.remove()
|
|
|
|
assert not path.exists()
|
|
|
|
|
2019-12-10 14:16:42 +00:00
|
|
|
env = {'DEBUG': 'yes'}
|
|
|
|
if home:
|
|
|
|
env['HOME'] = paths.work
|
|
|
|
|
2018-07-11 12:50:42 +00:00
|
|
|
# run status
|
2019-12-10 14:16:42 +00:00
|
|
|
run = runner(command=yadm_y('status'), env=env)
|
2018-07-11 12:50:42 +00:00
|
|
|
assert run.success
|
|
|
|
assert run.err == ''
|
|
|
|
assert 'On branch master' in run.out
|
|
|
|
|
|
|
|
# confirm directories are created
|
|
|
|
# and are protected
|
|
|
|
for pdir in PRIVATE_DIRS:
|
|
|
|
path = paths.work.join(pdir)
|
2019-12-10 14:16:42 +00:00
|
|
|
if home:
|
|
|
|
assert path.exists()
|
|
|
|
assert oct(path.stat().mode).endswith('00'), ('Directory is '
|
|
|
|
'not secured')
|
|
|
|
else:
|
|
|
|
assert not path.exists()
|
2018-07-11 12:50:42 +00:00
|
|
|
|
|
|
|
# confirm directories are created before command is run:
|
2019-12-10 14:16:42 +00:00
|
|
|
if home:
|
|
|
|
assert re.search(
|
2019-12-13 14:37:34 +00:00
|
|
|
(r'Creating.+\.(gnupg|ssh).+Creating.+\.(gnupg|ssh).+'
|
2019-12-10 14:16:42 +00:00
|
|
|
r'Running git command git status'),
|
|
|
|
run.out, re.DOTALL), 'directories created before command is run'
|
2018-07-11 12:50:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_pdirs_missing_apd_false(runner, yadm_y, paths):
|
|
|
|
"""Private dirs (private dirs missing / yadm.auto-private-dirs=false)
|
|
|
|
|
|
|
|
When a git command is run
|
|
|
|
And private directories are missing
|
|
|
|
But auto-private-dirs is false
|
|
|
|
Do not create private dirs
|
|
|
|
"""
|
|
|
|
|
|
|
|
# confirm directories are missing at start
|
|
|
|
for pdir in PRIVATE_DIRS:
|
|
|
|
path = paths.work.join(pdir)
|
|
|
|
if path.exists():
|
|
|
|
path.remove()
|
|
|
|
assert not path.exists()
|
|
|
|
|
|
|
|
# set configuration
|
|
|
|
os.system(' '.join(yadm_y(
|
|
|
|
'config', '--bool', 'yadm.auto-private-dirs', 'false')))
|
|
|
|
|
|
|
|
# run status
|
|
|
|
run = runner(command=yadm_y('status'))
|
|
|
|
assert run.success
|
|
|
|
assert run.err == ''
|
|
|
|
assert 'On branch master' in run.out
|
|
|
|
|
|
|
|
# confirm directories are STILL missing
|
|
|
|
for pdir in PRIVATE_DIRS:
|
|
|
|
assert not paths.work.join(pdir).exists()
|
|
|
|
|
|
|
|
|
|
|
|
def test_pdirs_exist_apd_false(runner, yadm_y, paths):
|
|
|
|
"""Private dirs (private dirs exist / yadm.auto-perms=false)
|
|
|
|
|
|
|
|
When a git command is run
|
|
|
|
And private directories exist
|
|
|
|
And yadm is configured not to auto update perms
|
|
|
|
Do not alter directories
|
|
|
|
"""
|
|
|
|
|
|
|
|
# create permissive directories
|
|
|
|
for pdir in PRIVATE_DIRS:
|
|
|
|
path = paths.work.join(pdir)
|
|
|
|
if not path.isdir():
|
|
|
|
path.mkdir()
|
|
|
|
path.chmod(0o777)
|
|
|
|
assert oct(path.stat().mode).endswith('77'), 'Directory is secure.'
|
|
|
|
|
|
|
|
# set configuration
|
|
|
|
os.system(' '.join(yadm_y(
|
|
|
|
'config', '--bool', 'yadm.auto-perms', 'false')))
|
|
|
|
|
|
|
|
# run status
|
|
|
|
run = runner(command=yadm_y('status'))
|
|
|
|
assert run.success
|
|
|
|
assert run.err == ''
|
|
|
|
assert 'On branch master' in run.out
|
|
|
|
|
|
|
|
# created directories are STILL permissive
|
|
|
|
for pdir in PRIVATE_DIRS:
|
|
|
|
path = paths.work.join(pdir)
|
|
|
|
assert oct(path.stat().mode).endswith('77'), 'Directory is secure'
|