4 # Testing cleanup_invalid_links()
10 use Test
::More tests
=> 6;
11 use English
qw(-no_match_vars);
16 cd
("$OUT_DIR/target");
20 # Note that each of the following tests use a distinct set of files
23 # nothing to clean in a simple tree
27 make_dir
('../stow/pkg1/bin1');
28 make_file
('../stow/pkg1/bin1/file1');
29 make_link
('bin1', '../stow/pkg1/bin1');
32 $stow->cleanup_invalid_links('./');
34 scalar($stow->get_tasks), 0
39 # cleanup a bad link in a simple tree
42 make_dir
('../stow/pkg2/bin2');
43 make_file
('../stow/pkg2/bin2/file2a');
44 make_link
('bin2/file2a', '../../stow/pkg2/bin2/file2a');
45 make_link
('bin2/file2b', '../../stow/pkg2/bin2/file2b');
48 $stow->cleanup_invalid_links('bin2');
49 is
(scalar($stow->get_conflicts), 0, 'no conflicts cleaning up bad link');
50 is
(scalar($stow->get_tasks), 1, 'one task cleaning up bad link');
51 is
($stow->link_task_action('bin2/file2b'), 'remove', 'removal task for bad link');
54 # dont cleanup a bad link not owned by stow
58 make_dir
('../stow/pkg3/bin3');
59 make_file
('../stow/pkg3/bin3/file3a');
60 make_link
('bin3/file3a', '../../stow/pkg3/bin3/file3a');
61 make_link
('bin3/file3b', '../../empty');
64 $stow->cleanup_invalid_links('bin3');
65 is
(scalar($stow->get_conflicts), 0, 'no conflicts cleaning up bad link not owned by stow');
66 is
(scalar($stow->get_tasks), 0, 'no tasks cleaning up bad link not owned by stow');