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/.
|
2011-11-16 09:04:03 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# Testing join_paths();
|
|
|
|
#
|
|
|
|
|
2011-11-24 11:28:09 -05:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use Stow::Util qw(join_paths);
|
2011-11-16 09:04:03 -05:00
|
|
|
|
2011-11-22 09:29:52 -05:00
|
|
|
use Test::More tests => 14;
|
2011-11-16 09:04:03 -05:00
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('a/b/c', 'd/e/f'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'a/b/c/d/e/f'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'simple'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('/a/b/c', '/d/e/f'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'/a/b/c/d/e/f'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'leading /'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('/a/b/c/', '/d/e/f/'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'/a/b/c/d/e/f'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'trailing /'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('///a/b///c//', '/d///////e/f'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'/a/b/c/d/e/f'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'mltiple /\'s'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('', 'a/b/c'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'a/b/c'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'first empty'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('a/b/c', ''),
|
2011-11-22 09:29:42 -05:00
|
|
|
'a/b/c'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'second empty'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('/', 'a/b/c'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'/a/b/c'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'first is /'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('a/b/c', '/'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'a/b/c'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'second is /'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('///a/b///c//', '/d///////e/f'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'/a/b/c/d/e/f'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'multiple /\'s'
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('../a1/b1/../c1/', '/a2/../b2/e2'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'../a1/c1/b2/e2'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'simple deref ".."'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('../a1/b1/../c1/d1/e1', '../a2/../b2/c2/d2/../e2'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'../a1/c1/d1/b2/c2/e2'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'complex deref ".."'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('../a1/../../c1', 'a2/../../'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'../..'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'too many ".."'
|
|
|
|
);
|
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('./a1', '../../a2'),
|
2011-11-22 09:29:42 -05:00
|
|
|
'../a2'
|
2011-11-16 09:04:03 -05:00
|
|
|
=> 'drop any "./"'
|
|
|
|
);
|
2011-11-22 09:29:52 -05:00
|
|
|
|
|
|
|
is(
|
|
|
|
join_paths('a/b/c', '.'),
|
|
|
|
'a/b/c'
|
|
|
|
=> '. on RHS'
|
|
|
|
);
|