Skip to content

Commit

Permalink
Merge commit 'pullreqs/70' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
aspiers committed Mar 31, 2024
2 parents e8c46cf + a41118d commit 2f762e3
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 11 deletions.
27 changes: 18 additions & 9 deletions lib/Stow.pm.in
Original file line number Diff line number Diff line change
Expand Up @@ -285,12 +285,14 @@ sub plan_unstow {
$self->unstow_contents_orig(
$package,
'.',
$pkg_path,
);
}
else {
$self->unstow_contents(
$package,
'.',
$pkg_path,
);
}
debug(2, 0, "Planning unstow of package $package... done");
Expand Down Expand Up @@ -327,6 +329,7 @@ sub plan_stow {
$package,
'.',
$pkg_path, # source from target
0,
);
debug(2, 0, "Planning stow of package $package... done");
$self->{action_count}++;
Expand Down Expand Up @@ -404,7 +407,7 @@ folding/unfolding trees as necessary.

sub stow_contents {
my $self = shift;
my ($stow_path, $package, $target, $source) = @_;
my ($stow_path, $package, $target, $source, $level) = @_;

# Calculate the path to the package directory or sub-directory
# whose contents need to be stowed, relative to the current
Expand All @@ -415,7 +418,10 @@ sub stow_contents {
# but instead it's relative to the target directory or
# sub-directory where the symlink will be installed when the plans
# are executed.
my $path = join_paths($stow_path, $package, $target);

# Remove leading $level times .. from $source
my $n = 0;
my $path = join '/', map { (++$n <= $level) ? ( ) : $_ } (split m{/+}, $source);

return if $self->should_skip_target($target);

Expand Down Expand Up @@ -453,6 +459,7 @@ sub stow_contents {
$package,
$node_target, # target, potentially adjusted for dot- prefix
join_paths($source, $node), # source
$level
);
}
}
Expand Down Expand Up @@ -494,7 +501,7 @@ folding/unfolding trees as necessary.

sub stow_node {
my $self = shift;
my ($stow_path, $package, $target, $source) = @_;
my ($stow_path, $package, $target, $source, $level) = @_;

my $path = join_paths($stow_path, $package, $target);

Expand Down Expand Up @@ -564,12 +571,14 @@ sub stow_node {
$existing_package,
$target,
join_paths('..', $existing_source),
$level + 1,
);
$self->stow_contents(
$self->{stow_path},
$package,
$target,
join_paths('..', $source),
$level + 1,
);
}
else {
Expand All @@ -596,6 +605,7 @@ sub stow_node {
$package,
$target,
join_paths('..', $source),
$level + 1,
);
}
else {
Expand All @@ -619,6 +629,7 @@ sub stow_node {
$package,
$target,
join_paths('..', $source),
$level + 1,
);
}
else {
Expand Down Expand Up @@ -846,9 +857,7 @@ Here we traverse the source tree, rather than the target tree.

sub unstow_contents {
my $self = shift;
my ($package, $target) = @_;

my $path = join_paths($self->{stow_path}, $package, $target);
my ($package, $target, $path) = @_;

return if $self->should_skip_target($target);

Expand Down Expand Up @@ -884,7 +893,7 @@ sub unstow_contents {
$node_target = $adj_node_target;
}

$self->unstow_node($package, $node_target);
$self->unstow_node($package, $node_target, join_paths($path, $node));
}
if (-d $target) {
$self->cleanup_invalid_links($target);
Expand Down Expand Up @@ -913,7 +922,7 @@ C<unstow_node()> and C<unstow_contents()> are mutually recursive.

sub unstow_node {
my $self = shift;
my ($package, $target) = @_;
my ($package, $target, $source) = @_;

my $path = join_paths($self->{stow_path}, $package, $target);

Expand Down Expand Up @@ -987,7 +996,7 @@ sub unstow_node {
elsif (-e $target) {
debug(4, 2, "Evaluate existing node: $target");
if (-d $target) {
$self->unstow_contents($package, $target);
$self->unstow_contents($package, $target, $source);

# This action may have made the parent directory foldable
if (my $parent = $self->foldable($target)) {
Expand Down
83 changes: 81 additions & 2 deletions t/dotfiles.t
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use warnings;

use testutil;

use Test::More tests => 6;
use Test::More tests => 10;
use English qw(-no_match_vars);

use testutil;
Expand Down Expand Up @@ -87,7 +87,64 @@ is(
);

#
# corner case: paths with a part in them that's just "$DOT_PREFIX" or
# process folder marked with 'dot' prefix
# when directory exists is target
#

$stow = new_Stow(dir => '../stow', dotfiles => 1);

make_path('../stow/dotfiles/dot-emacs.d');
make_file('../stow/dotfiles/dot-emacs.d/init.el');
make_path('.emacs.d');

$stow->plan_stow('dotfiles');
$stow->process_tasks();
is(
readlink('.emacs.d/init.el'),
'../../stow/dotfiles/dot-emacs.d/init.el',
=> 'processed dotfile folder when folder exists (1 level)'
);

#
# process folder marked with 'dot' prefix
# when directory exists is target (2 levels)
#

$stow = new_Stow(dir => '../stow', dotfiles => 1);

make_path('../stow/dotfiles/dot-emacs.d/dot-emacs.d');
make_file('../stow/dotfiles/dot-emacs.d/dot-emacs.d/init.el');
make_path('.emacs.d');

$stow->plan_stow('dotfiles');
$stow->process_tasks();
is(
readlink('.emacs.d/.emacs.d'),
'../../stow/dotfiles/dot-emacs.d/dot-emacs.d',
=> 'processed dotfile folder exists (2 levels)'
);

#
# process folder marked with 'dot' prefix
# when directory exists is target
#

$stow = new_Stow(dir => '../stow', dotfiles => 1);

make_path('../stow/dotfiles/dot-one/dot-two');
make_file('../stow/dotfiles/dot-one/dot-two/three');
make_path('.one/.two');

$stow->plan_stow('dotfiles');
$stow->process_tasks();
is(
readlink('./.one/.two/three'),
'../../../stow/dotfiles/dot-one/dot-two/three',
=> 'processed dotfile 2 folder exists (2 levels)'
);


#
# "$DOT_PREFIX." should not have that part expanded.
#

Expand Down Expand Up @@ -129,3 +186,25 @@ ok(
-f '../stow/dotfiles/dot-bar' && ! -e '.bar'
=> 'unstow a simple dotfile'
);

#
# unstow process folder marked with 'dot' prefix
# when directory exists is target
#

$stow = new_Stow(dir => '../stow', dotfiles => 1);

make_path('../stow/dotfiles/dot-emacs.d');
make_file('../stow/dotfiles/dot-emacs.d/init.el');
make_path('.emacs.d');
make_link('.emacs.d/init.el', '../../stow/dotfiles/dot-emacs.d/init.el');

$stow->plan_unstow('dotfiles');
$stow->process_tasks();
ok(
$stow->get_conflict_count == 0 &&
-f '../stow/dotfiles/dot-emacs.d/init.el' &&
! -e '.emacs.d/init.el' &&
-d '.emacs.d/'
=> 'unstow dotfile folder when folder already exists'
);

0 comments on commit 2f762e3

Please sign in to comment.