mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-05 03:19:43 +00:00
refactor command "listfiles" to "files"
This commit is contained in:
@@ -420,11 +420,11 @@ def cmd_list_files(o):
|
||||
LOG.warn('unknown profile \"{}\"'.format(o.profile))
|
||||
return
|
||||
what = 'Dotfile(s)'
|
||||
if o.listfiles_templateonly:
|
||||
if o.files_templateonly:
|
||||
what = 'Template(s)'
|
||||
LOG.emph('{} for profile \"{}\"\n'.format(what, o.profile))
|
||||
for dotfile in o.dotfiles:
|
||||
if o.listfiles_templateonly:
|
||||
if o.files_templateonly:
|
||||
src = os.path.join(o.dotpath, dotfile.src)
|
||||
if not Templategen.is_template(src):
|
||||
continue
|
||||
@@ -610,10 +610,10 @@ def main():
|
||||
LOG.dbg('running cmd: list')
|
||||
cmd_list_profiles(o)
|
||||
|
||||
elif o.cmd_listfiles:
|
||||
elif o.cmd_files:
|
||||
# list files for selected profile
|
||||
if o.debug:
|
||||
LOG.dbg('running cmd: listfiles')
|
||||
LOG.dbg('running cmd: files')
|
||||
cmd_list_files(o)
|
||||
|
||||
elif o.cmd_install:
|
||||
|
||||
@@ -59,7 +59,7 @@ Usage:
|
||||
dotdrop update [-VbfdkP] [-c <path>] [-p <profile>]
|
||||
[-i <pattern>...] [<path>...]
|
||||
dotdrop remove [-Vbfdk] [-c <path>] [-p <profile>] [<path>...]
|
||||
dotdrop listfiles [-VbT] [-c <path>] [-p <profile>]
|
||||
dotdrop files [-VbT] [-c <path>] [-p <profile>]
|
||||
dotdrop detail [-Vb] [-c <path>] [-p <profile>] [<key>...]
|
||||
dotdrop list [-Vb] [-c <path>]
|
||||
dotdrop --help
|
||||
@@ -190,7 +190,7 @@ class Options(AttrMonitor):
|
||||
"""apply cli args as attribute"""
|
||||
# the commands
|
||||
self.cmd_list = self.args['list']
|
||||
self.cmd_listfiles = self.args['listfiles']
|
||||
self.cmd_files = self.args['files']
|
||||
self.cmd_install = self.args['install']
|
||||
self.cmd_compare = self.args['compare']
|
||||
self.cmd_import = self.args['import']
|
||||
@@ -212,8 +212,8 @@ class Options(AttrMonitor):
|
||||
sys.exit(USAGE)
|
||||
self.import_link = OPT_LINK[link]
|
||||
|
||||
# "listfiles" specifics
|
||||
self.listfiles_templateonly = self.args['--template']
|
||||
# "files" specifics
|
||||
self.files_templateonly = self.args['--template']
|
||||
# "install" specifics
|
||||
self.install_force_action = self.args['--force-actions']
|
||||
self.install_temporary = self.args['--temp']
|
||||
|
||||
@@ -125,7 +125,7 @@ set -e
|
||||
|
||||
# test values have been correctly updated
|
||||
echo "========> test for updated entries"
|
||||
dotfiles=`cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 | grep -v '^ '`
|
||||
dotfiles=`cd ${ddpath} | ${bin} files -c ${cfg} -p p1 | grep -v '^ '`
|
||||
echo "${dotfiles}" | grep '^f_link ' | grep ', link: link)'
|
||||
echo "${dotfiles}" | grep '^f_nolink ' | grep ', link: nolink)'
|
||||
echo "${dotfiles}" | grep '^f_nolink1 ' | grep ', link: nolink)'
|
||||
|
||||
@@ -94,7 +94,7 @@ cd ${ddpath} | ${bin} import -c ${cfg} -p p2 \
|
||||
${tmpd}/sub/sub2/abc
|
||||
|
||||
# count dotfiles for p2
|
||||
cnt=`cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p2 -b | grep '^f_' | wc -l`
|
||||
cnt=`cd ${ddpath} | ${bin} files -c ${cfg} -p p2 -b | grep '^f_' | wc -l`
|
||||
[ "${cnt}" != "4" ] && exit 1
|
||||
|
||||
## CLEANING
|
||||
|
||||
@@ -116,12 +116,12 @@ echo "zzz" > ${tmps}/dotfiles/zzz
|
||||
echo "sub" > ${tmps}/dotfiles/sub
|
||||
|
||||
# install
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg1} -p p0 -V | grep f_def
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg1} -p p1 -V | grep f_abc
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg1} -p p2 -V | grep f_def
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg1} -p p3 -V | grep f_zzz
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg1} -p pup -V | grep f_sub
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg1} -p psubsub -V | grep f_sub
|
||||
cd ${ddpath} | ${bin} files -c ${cfg1} -p p0 -V | grep f_def
|
||||
cd ${ddpath} | ${bin} files -c ${cfg1} -p p1 -V | grep f_abc
|
||||
cd ${ddpath} | ${bin} files -c ${cfg1} -p p2 -V | grep f_def
|
||||
cd ${ddpath} | ${bin} files -c ${cfg1} -p p3 -V | grep f_zzz
|
||||
cd ${ddpath} | ${bin} files -c ${cfg1} -p pup -V | grep f_sub
|
||||
cd ${ddpath} | ${bin} files -c ${cfg1} -p psubsub -V | grep f_sub
|
||||
|
||||
## CLEANING
|
||||
rm -rf ${tmps} ${tmpd}
|
||||
|
||||
@@ -88,7 +88,7 @@ _EOF
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 -V --link=link_children ${dt}
|
||||
|
||||
# check is set to link_children
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "d_`basename ${dt}`")
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "d_`basename ${dt}`")
|
||||
echo ${line} | grep 'link: link_children'
|
||||
|
||||
# checks file exists in dotpath
|
||||
|
||||
@@ -92,13 +92,13 @@ cd ${ddpath} | ${bin} compare -c ${cfg} -p p3
|
||||
cd ${ddpath} | ${bin} compare -c ${cfg} -p p0
|
||||
|
||||
# list
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 | grep f_abc
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p2 | grep f_abc
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p3 | grep f_abc
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p0 | grep f_abc
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 | grep f_abc
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p2 | grep f_abc
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p3 | grep f_abc
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p0 | grep f_abc
|
||||
|
||||
# count
|
||||
cnt=`cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -b | grep '^f_' | wc -l`
|
||||
cnt=`cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -b | grep '^f_' | wc -l`
|
||||
[ "${cnt}" != "1" ] && exit 1
|
||||
|
||||
## CLEANING
|
||||
|
||||
@@ -78,8 +78,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 ${df} -V
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
echo ${line} | grep 'link: nolink'
|
||||
|
||||
# try to install
|
||||
@@ -113,8 +113,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 ${df} -V
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
echo ${line} | grep 'link: nolink'
|
||||
|
||||
# try to install
|
||||
@@ -148,8 +148,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 ${df} -V --link=nolink
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
echo ${line} | grep 'link: nolink'
|
||||
|
||||
# try to install
|
||||
@@ -183,8 +183,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 ${df} -V --link=link
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
echo ${line} | grep 'link: link'
|
||||
|
||||
# try to install
|
||||
@@ -218,8 +218,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 ${df} -V
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
echo ${line} | grep 'link: link'
|
||||
|
||||
# try to install
|
||||
@@ -253,8 +253,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 ${df} -V --link=nolink
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
echo ${line} | grep 'link: nolink'
|
||||
|
||||
# try to install
|
||||
@@ -288,8 +288,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 ${df} -V --link=nolink
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
echo ${line} | grep 'link: nolink'
|
||||
|
||||
# try to install
|
||||
@@ -323,8 +323,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 ${df} -V --link=nolink
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
echo ${line} | grep 'link: nolink'
|
||||
|
||||
# try to install
|
||||
@@ -356,8 +356,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} --link=link -p p1 ${df} -V
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "f_`basename ${df}`")
|
||||
echo ${line} | grep 'link: link'
|
||||
|
||||
# try to install
|
||||
@@ -418,8 +418,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} --link=link_children -p p1 ${df} -V
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "d_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "d_`basename ${df}`")
|
||||
echo ${line} | grep 'link: link_children'
|
||||
|
||||
# try to install
|
||||
@@ -459,8 +459,8 @@ df="${tmpd}/qwert"
|
||||
cd ${ddpath} | ${bin} import -c ${cfg} -p p1 ${df} -V
|
||||
|
||||
# checks
|
||||
cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} listfiles -c ${cfg} -p p1 -V | grep "d_`basename ${df}`")
|
||||
cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V
|
||||
line=$(cd ${ddpath} | ${bin} files -c ${cfg} -p p1 -V | grep "d_`basename ${df}`")
|
||||
echo ${line} | grep 'link: link_children'
|
||||
|
||||
# try to install
|
||||
|
||||
@@ -130,7 +130,7 @@ def _fake_args():
|
||||
args['--force-actions'] = False
|
||||
# cmds
|
||||
args['list'] = False
|
||||
args['listfiles'] = False
|
||||
args['files'] = False
|
||||
args['install'] = False
|
||||
args['compare'] = False
|
||||
args['import'] = False
|
||||
|
||||
@@ -82,13 +82,13 @@ class TestListings(unittest.TestCase):
|
||||
cmd_importer(o)
|
||||
o = load_options(confpath, profile)
|
||||
|
||||
# listfiles
|
||||
# files
|
||||
cmd_list_profiles(o)
|
||||
|
||||
# list files
|
||||
o.listfiles_templateonly = False
|
||||
o.files_templateonly = False
|
||||
cmd_list_files(o)
|
||||
o.listfiles_templateonly = True
|
||||
o.files_templateonly = True
|
||||
cmd_list_files(o)
|
||||
|
||||
# details
|
||||
|
||||
Reference in New Issue
Block a user