2011-11-16 09:04:03 -05:00
|
|
|
#!/usr/local/bin/perl
|
|
|
|
|
|
|
|
#
|
|
|
|
# Testing foldable()
|
|
|
|
#
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use testutil;
|
2011-11-16 09:04:03 -05:00
|
|
|
|
|
|
|
use Test::More tests => 4;
|
|
|
|
use English qw(-no_match_vars);
|
|
|
|
|
2011-11-23 18:45:48 -05:00
|
|
|
init_test_dirs();
|
2011-11-24 11:28:09 -05:00
|
|
|
cd('t/target');
|
2011-11-16 09:04:03 -05:00
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
my $stow = new_Stow(dir => '../stow');
|
2011-11-16 09:04:03 -05:00
|
|
|
|
|
|
|
# Note that each of the following tests use a distinct set of files
|
|
|
|
|
|
|
|
#
|
|
|
|
# can fold a simple tree
|
|
|
|
#
|
|
|
|
|
|
|
|
make_dir('../stow/pkg1/bin1');
|
|
|
|
make_file('../stow/pkg1/bin1/file1');
|
|
|
|
make_dir('bin1');
|
|
|
|
make_link('bin1/file1','../../stow/pkg1/bin1/file1');
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
is( $stow->foldable('bin1'), '../stow/pkg1/bin1' => q(can fold a simple tree) );
|
2011-11-16 09:04:03 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# can't fold an empty directory
|
|
|
|
#
|
|
|
|
|
|
|
|
make_dir('../stow/pkg2/bin2');
|
|
|
|
make_file('../stow/pkg2/bin2/file2');
|
|
|
|
make_dir('bin2');
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
is( $stow->foldable('bin2'), '' => q(can't fold an empty directory) );
|
2011-11-16 09:04:03 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# can't fold if dir contains a non-link
|
|
|
|
#
|
|
|
|
|
|
|
|
make_dir('../stow/pkg3/bin3');
|
|
|
|
make_file('../stow/pkg3/bin3/file3');
|
|
|
|
make_dir('bin3');
|
|
|
|
make_link('bin3/file3','../../stow/pkg3/bin3/file3');
|
|
|
|
make_file('bin3/non-link');
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
is( $stow->foldable('bin3'), '' => q(can't fold a dir containing non-links) );
|
2011-11-16 09:04:03 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# can't fold if links point to different directories
|
|
|
|
#
|
|
|
|
|
|
|
|
make_dir('bin4');
|
|
|
|
make_dir('../stow/pkg4a/bin4');
|
|
|
|
make_file('../stow/pkg4a/bin4/file4a');
|
|
|
|
make_link('bin4/file4a','../../stow/pkg4a/bin4/file4a');
|
|
|
|
make_dir('../stow/pkg4b/bin4');
|
|
|
|
make_file('../stow/pkg4b/bin4/file4b');
|
|
|
|
make_link('bin4/file4b','../../stow/pkg4b/bin4/file4b');
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
is( $stow->foldable('bin4'), '' => q(can't fold if links point to different dirs) );
|