2019-06-27 15:37:50 -04:00
|
|
|
#!/usr/bin/perl
|
2019-06-27 09:02:19 -04:00
|
|
|
#
|
|
|
|
# This file is part of GNU Stow.
|
|
|
|
#
|
|
|
|
# GNU Stow is free software: you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# GNU Stow is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see https://www.gnu.org/licenses/.
|
2016-07-31 16:55:55 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Test case for dotfiles special processing
|
|
|
|
#
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use testutil;
|
|
|
|
|
|
|
|
use Test::More tests => 6;
|
|
|
|
use English qw(-no_match_vars);
|
|
|
|
|
|
|
|
use testutil;
|
|
|
|
|
|
|
|
init_test_dirs();
|
2019-06-27 19:53:12 -04:00
|
|
|
cd("$TEST_DIR/target");
|
2016-07-31 16:55:55 -04:00
|
|
|
|
|
|
|
my $stow;
|
|
|
|
|
|
|
|
#
|
|
|
|
# process a dotfile marked with 'dot' prefix
|
|
|
|
#
|
|
|
|
|
|
|
|
$stow = new_Stow(dir => '../stow', dotfiles => 1);
|
|
|
|
|
2019-06-27 20:02:48 -04:00
|
|
|
make_path('../stow/dotfiles');
|
2016-07-31 16:55:55 -04:00
|
|
|
make_file('../stow/dotfiles/dot-foo');
|
|
|
|
|
|
|
|
$stow->plan_stow('dotfiles');
|
|
|
|
$stow->process_tasks();
|
|
|
|
is(
|
|
|
|
readlink('.foo'),
|
|
|
|
'../stow/dotfiles/dot-foo',
|
|
|
|
=> 'processed dotfile'
|
|
|
|
);
|
|
|
|
|
|
|
|
#
|
|
|
|
# ensure that turning off dotfile processing links files as usual
|
|
|
|
#
|
|
|
|
|
|
|
|
$stow = new_Stow(dir => '../stow', dotfiles => 0);
|
|
|
|
|
2019-06-27 20:02:48 -04:00
|
|
|
make_path('../stow/dotfiles');
|
2016-07-31 16:55:55 -04:00
|
|
|
make_file('../stow/dotfiles/dot-foo');
|
|
|
|
|
|
|
|
$stow->plan_stow('dotfiles');
|
|
|
|
$stow->process_tasks();
|
|
|
|
is(
|
|
|
|
readlink('dot-foo'),
|
|
|
|
'../stow/dotfiles/dot-foo',
|
|
|
|
=> 'unprocessed dotfile'
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# process folder marked with 'dot' prefix
|
|
|
|
#
|
|
|
|
|
|
|
|
$stow = new_Stow(dir => '../stow', dotfiles => 1);
|
|
|
|
|
2019-06-27 20:02:48 -04:00
|
|
|
make_path('../stow/dotfiles/dot-emacs');
|
2016-07-31 16:55:55 -04:00
|
|
|
make_file('../stow/dotfiles/dot-emacs/init.el');
|
|
|
|
|
|
|
|
$stow->plan_stow('dotfiles');
|
|
|
|
$stow->process_tasks();
|
|
|
|
is(
|
|
|
|
readlink('.emacs'),
|
|
|
|
'../stow/dotfiles/dot-emacs',
|
|
|
|
=> 'processed dotfile folder'
|
|
|
|
);
|
|
|
|
|
|
|
|
#
|
|
|
|
# corner case: paths that have a part in them that's just "$DOT_PREFIX" or
|
|
|
|
# "$DOT_PREFIX." should not have that part expanded.
|
|
|
|
#
|
|
|
|
|
|
|
|
$stow = new_Stow(dir => '../stow', dotfiles => 1);
|
|
|
|
|
2019-06-27 20:02:48 -04:00
|
|
|
make_path('../stow/dotfiles');
|
2016-07-31 16:55:55 -04:00
|
|
|
make_file('../stow/dotfiles/dot-');
|
|
|
|
|
2019-06-27 20:02:48 -04:00
|
|
|
make_path('../stow/dotfiles/dot-.');
|
2016-07-31 16:55:55 -04:00
|
|
|
make_file('../stow/dotfiles/dot-./foo');
|
|
|
|
|
|
|
|
$stow->plan_stow('dotfiles');
|
|
|
|
$stow->process_tasks();
|
|
|
|
is(
|
|
|
|
readlink('dot-'),
|
|
|
|
'../stow/dotfiles/dot-',
|
|
|
|
=> 'processed dotfile'
|
|
|
|
);
|
|
|
|
is(
|
|
|
|
readlink('dot-.'),
|
|
|
|
'../stow/dotfiles/dot-.',
|
|
|
|
=> 'unprocessed dotfile'
|
|
|
|
);
|
|
|
|
|
|
|
|
#
|
|
|
|
# simple unstow scenario
|
|
|
|
#
|
|
|
|
|
|
|
|
$stow = new_Stow(dir => '../stow', dotfiles => 1);
|
|
|
|
|
2019-06-27 20:02:48 -04:00
|
|
|
make_path('../stow/dotfiles');
|
2016-07-31 16:55:55 -04:00
|
|
|
make_file('../stow/dotfiles/dot-bar');
|
|
|
|
make_link('.bar', '../stow/dotfiles/dot-bar');
|
|
|
|
|
|
|
|
$stow->plan_unstow('dotfiles');
|
|
|
|
$stow->process_tasks();
|
|
|
|
ok(
|
|
|
|
$stow->get_conflict_count == 0 &&
|
|
|
|
-f '../stow/dotfiles/dot-bar' && ! -e '.bar'
|
|
|
|
=> 'unstow a simple dotfile'
|
|
|
|
);
|