1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
use 5.008001;
use strict;
use warnings;
use Test::More 0.96;
use lib 't/lib';
use TestUtils qw/exception pushd tempd has_symlinks/;
use Path::Tiny;
# absolute() tests
my $rel1 = path(".");
my $abs1 = $rel1->absolute;
is( $abs1->absolute, $abs1, "absolute of absolute is identity" );
my $rel2 = $rel1->child("t");
my $abs2 = $rel2->absolute;
is( $rel2->absolute($abs1), $abs2, "absolute on base" );
# Note: in following relative() tests, capital 'A', 'B' denotes absolute path
# and lower case 'a', 'b' denotes relative paths. 'R' denotes the root
# directory. When there are multiple
# letters together, they indicate how paths relate in the hierarchy:
# A subsumes AB, ABC and ABD have a common prefix (referred to as AB).
# The presence of an underscore indicates a symlink somewhere in that segment
# of a path: ABC_D indicates a symlink somewhere between ABC and ABC_D.
my @symlink_free_cases = (
# identical (absolute and relative cases)
[ "A->rel(A)", "/foo/bar", "/foo/bar", "." ],
[ "a->rel(a)", "foo/bar", "foo/bar", "." ],
# descends -- absolute
[ "AB->rel(A)", "/foo/bar/baz", "/", "foo/bar/baz" ],
[ "AB->rel(A)", "/foo/bar/baz", "/foo", "bar/baz" ],
[ "AB->rel(A)", "/foo/bar/baz", "/foo/bar", "baz" ],
# descends -- relative
[ "ab->rel(a)", "foo/bar/baz", "", "foo/bar/baz" ],
[ "ab->rel(a)", "foo/bar/baz", ".", "foo/bar/baz" ],
[ "ab->rel(a)", "foo/bar/baz", "foo", "bar/baz" ],
[ "ab->rel(a)", "foo/bar/baz", "foo/bar", "baz" ],
# common prefix -- absolute (same volume)
[ "R->rel(A)", "/", "/bam", ".." ],
[ "R->rel(AB)", "/", "/bam/baz", "../.." ],
[ "ABC->rel(D)", "/foo/bar/baz", "/bam", "../foo/bar/baz" ],
[ "ABC->rel(AD)", "/foo/bar/baz", "/foo/bam", "../bar/baz" ],
[ "ABC->rel(ABD)", "/foo/bar/baz", "/foo/bar/bam", "../baz" ],
[ "ABC->rel(DE)", "/foo/bar/baz", "/bim/bam", "../../foo/bar/baz" ],
[ "ABC->rel(ADE)", "/foo/bar/baz", "/foo/bim/bam", "../../bar/baz" ],
[ "ABC->rel(ABDE)", "/foo/bar/baz", "/foo/bar/bim/bam", "../../baz" ],
# common prefix -- relative (same volume)
[ "abc->rel(d)", "foo/bar/baz", "bam", "../foo/bar/baz" ],
[ "abc->rel(ad)", "foo/bar/baz", "foo/bam", "../bar/baz" ],
[ "abc->rel(abd)", "foo/bar/baz", "foo/bar/bam", "../baz" ],
[ "abc->rel(de)", "foo/bar/baz", "bim/bam", "../../foo/bar/baz" ],
[ "abc->rel(ade)", "foo/bar/baz", "foo/bim/bam", "../../bar/baz" ],
[ "abc->rel(abde)", "foo/bar/baz", "foo/bar/bim/bam", "../../baz" ],
# both paths relative (not identical)
[ "ab->rel(a)", "foo/bar", "foo", "bar" ],
[ "abc->rel(ab)", "foo/bar/baz", "foo/bim", "../bar/baz" ],
[ "a->rel(b)", "foo", "bar", "../foo" ],
);
for my $c (@symlink_free_cases) {
my ( $label, $path, $base, $result ) = @$c;
is( path($path)->relative($base), $result, $label );
}
my @one_rel_from_root = (
[ "A->rel(b) from rootdir", "/foo/bar", "baz", "../foo/bar" ],
[ "a->rel(B) from rootdir", "foo/bar", "/baz", "../foo/bar" ],
);
{
my $wd = pushd("/");
for my $c (@one_rel_from_root) {
my ( $label, $path, $base, $result ) = @$c;
is( path($path)->relative($base), $result, $label );
}
}
{
my $wd = tempd("/");
my $cwd = Path::Tiny::cwd->realpath;
# A->rel(b) from tmpdir -- need to find updir from ./b to root
my $base = $cwd->child("baz");
my ( undef, @parts ) = split "/", $base;
my $up_to_root = path( "../" x @parts );
is(
path("/foo/bar")->relative("baz"),
$up_to_root->child("foo/bar"),
"A->rel(b) from tmpdir"
);
# a->rel(B) from tempdir -- path is .. + cwd + a
is(
path("foo/bar")->relative("/baz"),
path( "..", $cwd->_just_filepath, "foo/bar" ),
"a->rel(B) from tmpdir"
);
}
subtest "relative on absolute paths with symlinks" => sub {
my $wd = tempd;
my $cwd = path(".")->realpath;
my $deep = $cwd->child("foo/bar/baz/bam/bim/buz/wiz/was/woz");
$deep->mkdir();
plan skip_all => "No symlink support"
unless has_symlinks();
my ( $path, $base, $expect );
# (a) symlink in common path
#
# A_BCD->rel(A_BEF) - common point A_BC - result: ../../C/D
#
$cwd->child("A")->mkdir;
symlink $deep, "A/B" or die "$!";
$path = $cwd->child("A/B/C/D");
$path->mkdir;
is( $path->relative( $cwd->child("A/B/E/F") ), "../../C/D", "A_BCD->rel(A_BEF)" );
$cwd->child("A")->remove_tree;
$deep->remove_tree;
$deep->mkdir;
# (b) symlink in path from common to original path
#
# ABC_DE->rel(ABFG) - common point AB - result: ../../C/D/E
#
$cwd->child("A/B/C")->mkdir;
symlink $deep, "A/B/C/D" or die "$!";
$path = $cwd->child("A/B/C/D/E");
$path->mkdir;
is( $path->relative( $cwd->child("A/B/F/G") ), "../../C/D/E",
"ABC_DE->rel(ABC_FG)" );
$cwd->child("A")->remove_tree;
$deep->remove_tree;
$deep->mkdir;
# (c) symlink in path from common to new base; all path exist
#
# ABCD->rel(ABE_FG) - common point AB - result depends on E_F resolution
#
$path = $cwd->child("A/B/C/D");
$path->mkdir;
$cwd->child("A/B/E")->mkdir;
symlink $deep, "A/B/E/F" or die $!;
$base = $cwd->child("A/B/E/F/G");
$base->mkdir;
$expect = $path->relative( $deep->child("G") );
is( $path->relative($base), $expect, "ABCD->rel(ABE_FG) [real paths]" );
$cwd->child("A")->remove_tree;
$deep->remove_tree;
$deep->mkdir;
# (d) symlink in path from common to new base; paths after symlink
# don't exist
#
# ABCD->rel(ABE_FGH) - common point AB - result depends on E_F resolution
#
$path = $cwd->child("A/B/C/D");
$path->mkdir;
$cwd->child("A/B/E")->mkdir;
symlink $deep, "A/B/E/F" or die $!;
$base = $cwd->child("A/B/E/F/G/H");
$expect = $path->relative( $deep->child("G/H") );
is( $path->relative($base), $expect, "ABCD->rel(ABE_FGH) [unreal paths]" );
$cwd->child("A")->remove_tree;
$deep->remove_tree;
$deep->mkdir;
# (e) symlink at end of common, with updir at start of new base
#
# AB_CDE->rel(AB_C..FG) - common point really AB - result depends on
# symlink resolution
#
$cwd->child("A/B")->mkdir;
symlink $deep, "A/B/C" or die "$!";
$path = $cwd->child("A/B/C/D/E");
$path->mkdir;
$base = $cwd->child("A/B/C/../F/G");
$base->mkdir;
$expect = $path->relative( $deep->parent->child("F/G")->realpath );
is( $path->relative($base), $expect, "AB_CDE->rel(AB_C..FG)" );
$cwd->child("A")->remove_tree;
$deep->remove_tree;
$deep->mkdir;
# (f) updirs in new base [files exist]
#
# ABCDE->rel(ABF..GH) - common point AB - result ../../C/D/E
#
$path = $cwd->child("A/B/C/D/E");
$path->mkdir;
$cwd->child("A/B/F")->mkdir;
$cwd->child("A/B/G/H")->mkdir;
$base = $cwd->child("A/B/F/../G/H");
$expect = "../../C/D/E";
is( $path->relative($base), $expect, "ABCDE->rel(ABF..GH) [real paths]" );
$cwd->child("A")->remove_tree;
# (f) updirs in new base [files don't exist]
#
# ABCDE->rel(ABF..GH) - common point AB - result ../../C/D/E
#
$path = $cwd->child("A/B/C/D/E");
$base = $cwd->child("A/B/F/../G/H");
$expect = "../../C/D/E";
is( $path->relative($base), $expect, "ABCDE->rel(ABF..GH) [unreal paths]" );
$cwd->child("A")->remove_tree;
};
# XXX need to test common prefix case where both are abs but one
# has volume and one doesn't. (Win32: UNC and drive letters)
# XXX need to test A->rel(B) where A and B are different volumes,
# including UNC and drive letters
done_testing;
#
# This file is part of Path-Tiny
#
# This software is Copyright (c) 2014 by David Golden.
#
# This is free software, licensed under:
#
# The Apache License, Version 2.0, January 2004
#
|