Upgrade to PathTools 3.19
[p5sagit/p5-mst-13.2.git] / lib / File / Spec / t / Spec.t
CommitLineData
e021ab8e 1#!/usr/bin/perl -w
2
3use Test;
270d1e39 4
2586ba89 5# Grab all of the plain routines from File::Spec
6use File::Spec @File::Spec::EXPORT_OK ;
7
8require File::Spec::Unix ;
9require File::Spec::Win32 ;
5b287435 10require Cwd;
2586ba89 11
12eval {
13 require VMS::Filespec ;
14} ;
15
16my $skip_exception = "Install VMS::Filespec (from vms/ext)" ;
17
18if ( $@ ) {
19 # Not pretty, but it allows testing of things not implemented soley
20 # on VMS. It might be better to change File::Spec::VMS to do this,
21 # making it more usable when running on (say) Unix but working with
22 # VMS paths.
23 eval qq-
24 sub File::Spec::VMS::vmsify { die "$skip_exception" }
25 sub File::Spec::VMS::unixify { die "$skip_exception" }
26 sub File::Spec::VMS::vmspath { die "$skip_exception" }
27 - ;
28 $INC{"VMS/Filespec.pm"} = 1 ;
29}
30require File::Spec::VMS ;
31
32require File::Spec::OS2 ;
33require File::Spec::Mac ;
e021ab8e 34require File::Spec::Epoc ;
35require File::Spec::Cygwin ;
2586ba89 36
37# $root is only needed by Mac OS tests; these particular
38# tests are skipped on other OSs
e021ab8e 39my $root = '';
45657e91 40if ($^O eq 'MacOS') {
2586ba89 41 $root = File::Spec::Mac->rootdir();
42}
270d1e39 43
0994714a 44# Each element in this array is a single test. Storing them this way makes
45# maintenance easy, and should be OK since perl should be pretty functional
46# before these tests are run.
3149a8e4 47
0994714a 48@tests = (
2586ba89 49# [ Function , Expected , Platform ]
50
e021ab8e 51[ "Unix->case_tolerant()", '0' ],
52
02961b52 53[ "Unix->catfile('a','b','c')", 'a/b/c' ],
54[ "Unix->catfile('a','b','./c')", 'a/b/c' ],
55[ "Unix->catfile('./a','b','c')", 'a/b/c' ],
56[ "Unix->catfile('c')", 'c' ],
57[ "Unix->catfile('./c')", 'c' ],
270d1e39 58
0994714a 59[ "Unix->splitpath('file')", ',,file' ],
60[ "Unix->splitpath('/d1/d2/d3/')", ',/d1/d2/d3/,' ],
61[ "Unix->splitpath('d1/d2/d3/')", ',d1/d2/d3/,' ],
62[ "Unix->splitpath('/d1/d2/d3/.')", ',/d1/d2/d3/.,' ],
63[ "Unix->splitpath('/d1/d2/d3/..')", ',/d1/d2/d3/..,' ],
64[ "Unix->splitpath('/d1/d2/d3/.file')", ',/d1/d2/d3/,.file' ],
65[ "Unix->splitpath('d1/d2/d3/file')", ',d1/d2/d3/,file' ],
66[ "Unix->splitpath('/../../d1/')", ',/../../d1/,' ],
67[ "Unix->splitpath('/././d1/')", ',/././d1/,' ],
270d1e39 68
0994714a 69[ "Unix->catpath('','','file')", 'file' ],
70[ "Unix->catpath('','/d1/d2/d3/','')", '/d1/d2/d3/' ],
71[ "Unix->catpath('','d1/d2/d3/','')", 'd1/d2/d3/' ],
72[ "Unix->catpath('','/d1/d2/d3/.','')", '/d1/d2/d3/.' ],
73[ "Unix->catpath('','/d1/d2/d3/..','')", '/d1/d2/d3/..' ],
74[ "Unix->catpath('','/d1/d2/d3/','.file')", '/d1/d2/d3/.file' ],
75[ "Unix->catpath('','d1/d2/d3/','file')", 'd1/d2/d3/file' ],
76[ "Unix->catpath('','/../../d1/','')", '/../../d1/' ],
77[ "Unix->catpath('','/././d1/','')", '/././d1/' ],
78[ "Unix->catpath('d1','d2/d3/','')", 'd2/d3/' ],
79[ "Unix->catpath('d1','d2','d3/')", 'd2/d3/' ],
270d1e39 80
0994714a 81[ "Unix->splitdir('')", '' ],
82[ "Unix->splitdir('/d1/d2/d3/')", ',d1,d2,d3,' ],
83[ "Unix->splitdir('d1/d2/d3/')", 'd1,d2,d3,' ],
84[ "Unix->splitdir('/d1/d2/d3')", ',d1,d2,d3' ],
85[ "Unix->splitdir('d1/d2/d3')", 'd1,d2,d3' ],
270d1e39 86
0994714a 87[ "Unix->catdir()", '' ],
88[ "Unix->catdir('/')", '/' ],
89[ "Unix->catdir('','d1','d2','d3','')", '/d1/d2/d3' ],
90[ "Unix->catdir('d1','d2','d3','')", 'd1/d2/d3' ],
91[ "Unix->catdir('','d1','d2','d3')", '/d1/d2/d3' ],
92[ "Unix->catdir('d1','d2','d3')", 'd1/d2/d3' ],
ff235dd6 93[ "Unix->catdir('/','d2/d3')", '/d2/d3' ],
0994714a 94
0994714a 95[ "Unix->canonpath('///../../..//./././a//b/.././c/././')", '/a/b/../c' ],
9596c75c 96[ "Unix->canonpath('')", '' ],
97# rt.perl.org 27052
98[ "Unix->canonpath('a/../../b/c')", 'a/../../b/c' ],
99[ "Unix->canonpath('/.')", '/' ],
100[ "Unix->canonpath('/./')", '/' ],
101[ "Unix->canonpath('/a/./')", '/a' ],
102[ "Unix->canonpath('/a/.')", '/a' ],
103[ "Unix->canonpath('/../../')", '/' ],
104[ "Unix->canonpath('/../..')", '/' ],
0994714a 105
9d5071ba 106[ "Unix->abs2rel('/t1/t2/t3','/t1/t2/t3')", '.' ],
0994714a 107[ "Unix->abs2rel('/t1/t2/t4','/t1/t2/t3')", '../t4' ],
108[ "Unix->abs2rel('/t1/t2','/t1/t2/t3')", '..' ],
109[ "Unix->abs2rel('/t1/t2/t3/t4','/t1/t2/t3')", 't4' ],
110[ "Unix->abs2rel('/t4/t5/t6','/t1/t2/t3')", '../../../t4/t5/t6' ],
111#[ "Unix->abs2rel('../t4','/t1/t2/t3')", '../t4' ],
112[ "Unix->abs2rel('/','/t1/t2/t3')", '../../..' ],
113[ "Unix->abs2rel('///','/t1/t2/t3')", '../../..' ],
6bf11762 114[ "Unix->abs2rel('/.','/t1/t2/t3')", '../../..' ],
0994714a 115[ "Unix->abs2rel('/./','/t1/t2/t3')", '../../..' ],
116#[ "Unix->abs2rel('../t4','/t1/t2/t3')", '../t4' ],
ff235dd6 117[ "Unix->abs2rel('/t1/t2/t3', '/')", 't1/t2/t3' ],
118[ "Unix->abs2rel('/t1/t2/t3', '/t1')", 't2/t3' ],
c47834cd 119[ "Unix->abs2rel('t1/t2/t3', 't1')", 't2/t3' ],
120[ "Unix->abs2rel('t1/t2/t3', 't4')", '../t1/t2/t3' ],
0994714a 121
122[ "Unix->rel2abs('t4','/t1/t2/t3')", '/t1/t2/t3/t4' ],
123[ "Unix->rel2abs('t4/t5','/t1/t2/t3')", '/t1/t2/t3/t4/t5' ],
124[ "Unix->rel2abs('.','/t1/t2/t3')", '/t1/t2/t3' ],
125[ "Unix->rel2abs('..','/t1/t2/t3')", '/t1/t2/t3/..' ],
126[ "Unix->rel2abs('../t4','/t1/t2/t3')", '/t1/t2/t3/../t4' ],
127[ "Unix->rel2abs('/t1','/t1/t2/t3')", '/t1' ],
128
e021ab8e 129[ "Win32->case_tolerant()", '1' ],
60598624 130[ "Win32->rootdir()", '\\' ],
e021ab8e 131
0994714a 132[ "Win32->splitpath('file')", ',,file' ],
133[ "Win32->splitpath('\\d1/d2\\d3/')", ',\\d1/d2\\d3/,' ],
134[ "Win32->splitpath('d1/d2\\d3/')", ',d1/d2\\d3/,' ],
135[ "Win32->splitpath('\\d1/d2\\d3/.')", ',\\d1/d2\\d3/.,' ],
136[ "Win32->splitpath('\\d1/d2\\d3/..')", ',\\d1/d2\\d3/..,' ],
137[ "Win32->splitpath('\\d1/d2\\d3/.file')", ',\\d1/d2\\d3/,.file' ],
138[ "Win32->splitpath('\\d1/d2\\d3/file')", ',\\d1/d2\\d3/,file' ],
139[ "Win32->splitpath('d1/d2\\d3/file')", ',d1/d2\\d3/,file' ],
140[ "Win32->splitpath('C:\\d1/d2\\d3/')", 'C:,\\d1/d2\\d3/,' ],
141[ "Win32->splitpath('C:d1/d2\\d3/')", 'C:,d1/d2\\d3/,' ],
142[ "Win32->splitpath('C:\\d1/d2\\d3/file')", 'C:,\\d1/d2\\d3/,file' ],
143[ "Win32->splitpath('C:d1/d2\\d3/file')", 'C:,d1/d2\\d3/,file' ],
144[ "Win32->splitpath('C:\\../d2\\d3/file')", 'C:,\\../d2\\d3/,file' ],
145[ "Win32->splitpath('C:../d2\\d3/file')", 'C:,../d2\\d3/,file' ],
146[ "Win32->splitpath('\\../..\\d1/')", ',\\../..\\d1/,' ],
147[ "Win32->splitpath('\\./.\\d1/')", ',\\./.\\d1/,' ],
148[ "Win32->splitpath('\\\\node\\share\\d1/d2\\d3/')", '\\\\node\\share,\\d1/d2\\d3/,' ],
149[ "Win32->splitpath('\\\\node\\share\\d1/d2\\d3/file')", '\\\\node\\share,\\d1/d2\\d3/,file' ],
150[ "Win32->splitpath('\\\\node\\share\\d1/d2\\file')", '\\\\node\\share,\\d1/d2\\,file' ],
151[ "Win32->splitpath('file',1)", ',file,' ],
152[ "Win32->splitpath('\\d1/d2\\d3/',1)", ',\\d1/d2\\d3/,' ],
153[ "Win32->splitpath('d1/d2\\d3/',1)", ',d1/d2\\d3/,' ],
154[ "Win32->splitpath('\\\\node\\share\\d1/d2\\d3/',1)", '\\\\node\\share,\\d1/d2\\d3/,' ],
155
156[ "Win32->catpath('','','file')", 'file' ],
157[ "Win32->catpath('','\\d1/d2\\d3/','')", '\\d1/d2\\d3/' ],
158[ "Win32->catpath('','d1/d2\\d3/','')", 'd1/d2\\d3/' ],
159[ "Win32->catpath('','\\d1/d2\\d3/.','')", '\\d1/d2\\d3/.' ],
160[ "Win32->catpath('','\\d1/d2\\d3/..','')", '\\d1/d2\\d3/..' ],
161[ "Win32->catpath('','\\d1/d2\\d3/','.file')", '\\d1/d2\\d3/.file' ],
162[ "Win32->catpath('','\\d1/d2\\d3/','file')", '\\d1/d2\\d3/file' ],
163[ "Win32->catpath('','d1/d2\\d3/','file')", 'd1/d2\\d3/file' ],
164[ "Win32->catpath('C:','\\d1/d2\\d3/','')", 'C:\\d1/d2\\d3/' ],
165[ "Win32->catpath('C:','d1/d2\\d3/','')", 'C:d1/d2\\d3/' ],
166[ "Win32->catpath('C:','\\d1/d2\\d3/','file')", 'C:\\d1/d2\\d3/file' ],
167[ "Win32->catpath('C:','d1/d2\\d3/','file')", 'C:d1/d2\\d3/file' ],
168[ "Win32->catpath('C:','\\../d2\\d3/','file')", 'C:\\../d2\\d3/file' ],
169[ "Win32->catpath('C:','../d2\\d3/','file')", 'C:../d2\\d3/file' ],
170[ "Win32->catpath('','\\../..\\d1/','')", '\\../..\\d1/' ],
171[ "Win32->catpath('','\\./.\\d1/','')", '\\./.\\d1/' ],
172[ "Win32->catpath('\\\\node\\share','\\d1/d2\\d3/','')", '\\\\node\\share\\d1/d2\\d3/' ],
173[ "Win32->catpath('\\\\node\\share','\\d1/d2\\d3/','file')", '\\\\node\\share\\d1/d2\\d3/file' ],
174[ "Win32->catpath('\\\\node\\share','\\d1/d2\\','file')", '\\\\node\\share\\d1/d2\\file' ],
175
176[ "Win32->splitdir('')", '' ],
177[ "Win32->splitdir('\\d1/d2\\d3/')", ',d1,d2,d3,' ],
178[ "Win32->splitdir('d1/d2\\d3/')", 'd1,d2,d3,' ],
179[ "Win32->splitdir('\\d1/d2\\d3')", ',d1,d2,d3' ],
180[ "Win32->splitdir('d1/d2\\d3')", 'd1,d2,d3' ],
181
182[ "Win32->catdir()", '' ],
183[ "Win32->catdir('')", '\\' ],
184[ "Win32->catdir('/')", '\\' ],
638113eb 185[ "Win32->catdir('/', '../')", '\\' ],
186[ "Win32->catdir('/', '..\\')", '\\' ],
187[ "Win32->catdir('\\', '../')", '\\' ],
188[ "Win32->catdir('\\', '..\\')", '\\' ],
0994714a 189[ "Win32->catdir('//d1','d2')", '\\\\d1\\d2' ],
e021ab8e 190[ "Win32->catdir('\\d1\\','d2')", '\\d1\\d2' ],
191[ "Win32->catdir('\\d1','d2')", '\\d1\\d2' ],
192[ "Win32->catdir('\\d1','\\d2')", '\\d1\\d2' ],
193[ "Win32->catdir('\\d1','\\d2\\')", '\\d1\\d2' ],
0994714a 194[ "Win32->catdir('','/d1','d2')", '\\\\d1\\d2' ],
195[ "Win32->catdir('','','/d1','d2')", '\\\\\\d1\\d2' ],
196[ "Win32->catdir('','//d1','d2')", '\\\\\\d1\\d2' ],
197[ "Win32->catdir('','','//d1','d2')", '\\\\\\\\d1\\d2' ],
198[ "Win32->catdir('','d1','','d2','')", '\\d1\\d2' ],
199[ "Win32->catdir('','d1','d2','d3','')", '\\d1\\d2\\d3' ],
200[ "Win32->catdir('d1','d2','d3','')", 'd1\\d2\\d3' ],
201[ "Win32->catdir('','d1','d2','d3')", '\\d1\\d2\\d3' ],
202[ "Win32->catdir('d1','d2','d3')", 'd1\\d2\\d3' ],
203[ "Win32->catdir('A:/d1','d2','d3')", 'A:\\d1\\d2\\d3' ],
204[ "Win32->catdir('A:/d1','d2','d3','')", 'A:\\d1\\d2\\d3' ],
205#[ "Win32->catdir('A:/d1','B:/d2','d3','')", 'A:\\d1\\d2\\d3' ],
206[ "Win32->catdir('A:/d1','B:/d2','d3','')", 'A:\\d1\\B:\\d2\\d3' ],
207[ "Win32->catdir('A:/')", 'A:\\' ],
638113eb 208[ "Win32->catdir('\\', 'foo')", '\\foo' ],
0994714a 209
c47834cd 210
02961b52 211[ "Win32->catfile('a','b','c')", 'a\\b\\c' ],
212[ "Win32->catfile('a','b','.\\c')", 'a\\b\\c' ],
213[ "Win32->catfile('.\\a','b','c')", 'a\\b\\c' ],
214[ "Win32->catfile('c')", 'c' ],
215[ "Win32->catfile('.\\c')", 'c' ],
216
0994714a 217
218[ "Win32->canonpath('')", '' ],
219[ "Win32->canonpath('a:')", 'A:' ],
220[ "Win32->canonpath('A:f')", 'A:f' ],
638113eb 221[ "Win32->canonpath('A:/')", 'A:\\' ],
9596c75c 222# rt.perl.org 27052
223[ "Win32->canonpath('a\\..\\..\\b\\c')", '..\\b\\c' ],
0994714a 224[ "Win32->canonpath('//a\\b//c')", '\\\\a\\b\\c' ],
225[ "Win32->canonpath('/a/..../c')", '\\a\\....\\c' ],
226[ "Win32->canonpath('//a/b\\c')", '\\\\a\\b\\c' ],
227[ "Win32->canonpath('////')", '\\\\\\' ],
228[ "Win32->canonpath('//')", '\\' ],
229[ "Win32->canonpath('/.')", '\\.' ],
cc23144f 230[ "Win32->canonpath('//a/b/../../c')", '\\\\a\\b\\c' ],
231[ "Win32->canonpath('//a/b/c/../d')", '\\\\a\\b\\d' ],
232[ "Win32->canonpath('//a/b/c/../../d')",'\\\\a\\b\\d' ],
233[ "Win32->canonpath('//a/b/c/.../d')", '\\\\a\\b\\d' ],
234[ "Win32->canonpath('/a/b/c/../../d')", '\\a\\d' ],
235[ "Win32->canonpath('/a/b/c/.../d')", '\\a\\d' ],
e021ab8e 236[ "Win32->canonpath('\\../temp\\')", '\\temp' ],
638113eb 237[ "Win32->canonpath('\\../')", '\\' ],
238[ "Win32->canonpath('\\..\\')", '\\' ],
239[ "Win32->canonpath('/../')", '\\' ],
240[ "Win32->canonpath('/..\\')", '\\' ],
c47834cd 241[ "Win32->canonpath('d1/../foo')", 'foo' ],
242
4fdb5a70 243[ "Win32->can('_cwd')", '/CODE/' ],
e021ab8e 244
5b287435 245# FakeWin32 subclass (see below) just sets CWD to C:\one\two and getdcwd('D') to D:\alpha\beta
e021ab8e 246
9d5071ba 247[ "FakeWin32->abs2rel('/t1/t2/t3','/t1/t2/t3')", '.' ],
e021ab8e 248[ "FakeWin32->abs2rel('/t1/t2/t4','/t1/t2/t3')", '..\\t4' ],
249[ "FakeWin32->abs2rel('/t1/t2','/t1/t2/t3')", '..' ],
250[ "FakeWin32->abs2rel('/t1/t2/t3/t4','/t1/t2/t3')", 't4' ],
251[ "FakeWin32->abs2rel('/t4/t5/t6','/t1/t2/t3')", '..\\..\\..\\t4\\t5\\t6' ],
5b287435 252[ "FakeWin32->abs2rel('../t4','/t1/t2/t3')", '..\\..\\..\\one\\t4' ], # Uses _cwd()
e021ab8e 253[ "FakeWin32->abs2rel('/','/t1/t2/t3')", '..\\..\\..' ],
254[ "FakeWin32->abs2rel('///','/t1/t2/t3')", '..\\..\\..' ],
255[ "FakeWin32->abs2rel('/.','/t1/t2/t3')", '..\\..\\..' ],
256[ "FakeWin32->abs2rel('/./','/t1/t2/t3')", '..\\..\\..' ],
257[ "FakeWin32->abs2rel('\\\\a/t1/t2/t4','/t2/t3')", '\\\\a\\t1\\t2\\t4' ],
258[ "FakeWin32->abs2rel('//a/t1/t2/t4','/t2/t3')", '\\\\a\\t1\\t2\\t4' ],
9d5071ba 259[ "FakeWin32->abs2rel('A:/t1/t2/t3','A:/t1/t2/t3')", '.' ],
e021ab8e 260[ "FakeWin32->abs2rel('A:/t1/t2/t3/t4','A:/t1/t2/t3')", 't4' ],
261[ "FakeWin32->abs2rel('A:/t1/t2/t3','A:/t1/t2/t3/t4')", '..' ],
262[ "FakeWin32->abs2rel('A:/t1/t2/t3','B:/t1/t2/t3')", 'A:\\t1\\t2\\t3' ],
263[ "FakeWin32->abs2rel('A:/t1/t2/t3/t4','B:/t1/t2/t3')", 'A:\\t1\\t2\\t3\\t4' ],
264[ "FakeWin32->abs2rel('E:/foo/bar/baz')", 'E:\\foo\\bar\\baz' ],
265[ "FakeWin32->abs2rel('C:/one/two/three')", 'three' ],
fa52125f 266[ "FakeWin32->abs2rel('C:\\Windows\\System32', 'C:\\')", 'Windows\System32' ],
267[ "FakeWin32->abs2rel('\\\\computer2\\share3\\foo.txt', '\\\\computer2\\share3')", 'foo.txt' ],
e021ab8e 268
269[ "FakeWin32->rel2abs('temp','C:/')", 'C:\\temp' ],
270[ "FakeWin32->rel2abs('temp','C:/a')", 'C:\\a\\temp' ],
271[ "FakeWin32->rel2abs('temp','C:/a/')", 'C:\\a\\temp' ],
272[ "FakeWin32->rel2abs('../','C:/')", 'C:\\' ],
273[ "FakeWin32->rel2abs('../','C:/a')", 'C:\\' ],
274[ "FakeWin32->rel2abs('temp','//prague_main/work/')", '\\\\prague_main\\work\\temp' ],
275[ "FakeWin32->rel2abs('../temp','//prague_main/work/')", '\\\\prague_main\\work\\temp' ],
276[ "FakeWin32->rel2abs('temp','//prague_main/work')", '\\\\prague_main\\work\\temp' ],
277[ "FakeWin32->rel2abs('../','//prague_main/work')", '\\\\prague_main\\work' ],
278
279[ "VMS->case_tolerant()", '1' ],
02961b52 280
281[ "VMS->catfile('a','b','c')", '[.a.b]c' ],
282[ "VMS->catfile('a','b','[]c')", '[.a.b]c' ],
283[ "VMS->catfile('[.a]','b','c')", '[.a.b]c' ],
284[ "VMS->catfile('c')", 'c' ],
285[ "VMS->catfile('[]c')", 'c' ],
286
ff235dd6 287[ "VMS->catfile('0','b','c')", '[.0.b]c' ],
288[ "VMS->catfile('a','0','c')", '[.a.0]c' ],
289[ "VMS->catfile('a','b','0')", '[.a.b]0' ],
290[ "VMS->catfile('0','0','c')", '[.0.0]c' ],
291[ "VMS->catfile('a','0','0')", '[.a.0]0' ],
292[ "VMS->catfile('0','b','0')", '[.0.b]0' ],
293[ "VMS->catfile('0','0','0')", '[.0.0]0' ],
294
295
0994714a 296[ "VMS->splitpath('file')", ',,file' ],
08c7cbbb 297[ "VMS->splitpath('[d1.d2.d3]')", ',[d1.d2.d3],' ],
298[ "VMS->splitpath('[.d1.d2.d3]')", ',[.d1.d2.d3],' ],
299[ "VMS->splitpath('[d1.d2.d3]file')", ',[d1.d2.d3],file' ],
300[ "VMS->splitpath('d1/d2/d3/file')", ',[.d1.d2.d3],file' ],
301[ "VMS->splitpath('/d1/d2/d3/file')", 'd1:,[d2.d3],file' ],
302[ "VMS->splitpath('[.d1.d2.d3]file')", ',[.d1.d2.d3],file' ],
303[ "VMS->splitpath('node::volume:[d1.d2.d3]')", 'node::volume:,[d1.d2.d3],' ],
304[ "VMS->splitpath('node::volume:[d1.d2.d3]file')", 'node::volume:,[d1.d2.d3],file' ],
305[ "VMS->splitpath('node\"access_spec\"::volume:[d1.d2.d3]')", 'node"access_spec"::volume:,[d1.d2.d3],' ],
306[ "VMS->splitpath('node\"access_spec\"::volume:[d1.d2.d3]file')", 'node"access_spec"::volume:,[d1.d2.d3],file' ],
0994714a 307
308[ "VMS->catpath('','','file')", 'file' ],
309[ "VMS->catpath('','[d1.d2.d3]','')", '[d1.d2.d3]' ],
310[ "VMS->catpath('','[.d1.d2.d3]','')", '[.d1.d2.d3]' ],
311[ "VMS->catpath('','[d1.d2.d3]','file')", '[d1.d2.d3]file' ],
312[ "VMS->catpath('','[.d1.d2.d3]','file')", '[.d1.d2.d3]file' ],
08c7cbbb 313[ "VMS->catpath('','d1/d2/d3','file')", '[.d1.d2.d3]file' ],
314[ "VMS->catpath('v','d1/d2/d3','file')", 'v:[.d1.d2.d3]file' ],
638113eb 315[ "VMS->catpath('v','w:[d1.d2.d3]','file')", 'v:[d1.d2.d3]file' ],
0994714a 316[ "VMS->catpath('node::volume:','[d1.d2.d3]','')", 'node::volume:[d1.d2.d3]' ],
317[ "VMS->catpath('node::volume:','[d1.d2.d3]','file')", 'node::volume:[d1.d2.d3]file' ],
318[ "VMS->catpath('node\"access_spec\"::volume:','[d1.d2.d3]','')", 'node"access_spec"::volume:[d1.d2.d3]' ],
319[ "VMS->catpath('node\"access_spec\"::volume:','[d1.d2.d3]','file')", 'node"access_spec"::volume:[d1.d2.d3]file' ],
320
321[ "VMS->canonpath('')", '' ],
178326fd 322[ "VMS->canonpath('volume:[d1]file')", 'volume:[d1]file' ],
08c7cbbb 323[ "VMS->canonpath('volume:[d1.-.d2.][d3.d4.-]')", 'volume:[d2.d3]' ],
178326fd 324[ "VMS->canonpath('volume:[000000.d1]d2.dir;1')", 'volume:[d1]d2.dir;1' ],
bdc74e5c 325[ "VMS->canonpath('volume:[d1.d2.d3]file.txt')", 'volume:[d1.d2.d3]file.txt' ],
326[ "VMS->canonpath('[d1.d2.d3]file.txt')", '[d1.d2.d3]file.txt' ],
327[ "VMS->canonpath('volume:[-.d1.d2.d3]file.txt')", 'volume:[-.d1.d2.d3]file.txt' ],
328[ "VMS->canonpath('[-.d1.d2.d3]file.txt')", '[-.d1.d2.d3]file.txt' ],
329[ "VMS->canonpath('volume:[--.d1.d2.d3]file.txt')", 'volume:[--.d1.d2.d3]file.txt' ],
330[ "VMS->canonpath('[--.d1.d2.d3]file.txt')", '[--.d1.d2.d3]file.txt' ],
331[ "VMS->canonpath('volume:[d1.-.d2.d3]file.txt')", 'volume:[d2.d3]file.txt' ],
332[ "VMS->canonpath('[d1.-.d2.d3]file.txt')", '[d2.d3]file.txt' ],
333[ "VMS->canonpath('volume:[d1.--.d2.d3]file.txt')", 'volume:[-.d2.d3]file.txt' ],
334[ "VMS->canonpath('[d1.--.d2.d3]file.txt')", '[-.d2.d3]file.txt' ],
335[ "VMS->canonpath('volume:[d1.d2.-.d3]file.txt')", 'volume:[d1.d3]file.txt' ],
336[ "VMS->canonpath('[d1.d2.-.d3]file.txt')", '[d1.d3]file.txt' ],
337[ "VMS->canonpath('volume:[d1.d2.--.d3]file.txt')", 'volume:[d3]file.txt' ],
338[ "VMS->canonpath('[d1.d2.--.d3]file.txt')", '[d3]file.txt' ],
339[ "VMS->canonpath('volume:[d1.d2.d3.-]file.txt')", 'volume:[d1.d2]file.txt' ],
340[ "VMS->canonpath('[d1.d2.d3.-]file.txt')", '[d1.d2]file.txt' ],
341[ "VMS->canonpath('volume:[d1.d2.d3.--]file.txt')", 'volume:[d1]file.txt' ],
342[ "VMS->canonpath('[d1.d2.d3.--]file.txt')", '[d1]file.txt' ],
343[ "VMS->canonpath('volume:[d1.000000.][000000.][d3.--]file.txt')", 'volume:[d1]file.txt' ],
344[ "VMS->canonpath('[d1.000000.][000000.][d3.--]file.txt')", '[d1]file.txt' ],
345[ "VMS->canonpath('volume:[d1.000000.][000000.][d2.000000]file.txt')", 'volume:[d1.000000.d2.000000]file.txt' ],
346[ "VMS->canonpath('[d1.000000.][000000.][d2.000000]file.txt')", '[d1.000000.d2.000000]file.txt' ],
347[ "VMS->canonpath('volume:[d1.000000.][000000.][d3.--.000000]file.txt')",'volume:[d1.000000]file.txt' ],
348[ "VMS->canonpath('[d1.000000.][000000.][d3.--.000000]file.txt')", '[d1.000000]file.txt' ],
349[ "VMS->canonpath('volume:[d1.000000.][000000.][-.-.000000]file.txt')", 'volume:[000000]file.txt' ],
350[ "VMS->canonpath('[d1.000000.][000000.][--.-.000000]file.txt')", '[-.000000]file.txt' ],
99f36a73 351[ "VMS->canonpath('[d1.d2.--]file')", '[000000]file' ],
0994714a 352
353[ "VMS->splitdir('')", '' ],
354[ "VMS->splitdir('[]')", '' ],
355[ "VMS->splitdir('d1.d2.d3')", 'd1,d2,d3' ],
356[ "VMS->splitdir('[d1.d2.d3]')", 'd1,d2,d3' ],
357[ "VMS->splitdir('.d1.d2.d3')", ',d1,d2,d3' ],
358[ "VMS->splitdir('[.d1.d2.d3]')", ',d1,d2,d3' ],
359[ "VMS->splitdir('.-.d2.d3')", ',-,d2,d3' ],
360[ "VMS->splitdir('[.-.d2.d3]')", ',-,d2,d3' ],
bdc74e5c 361[ "VMS->splitdir('[d1.d2]')", 'd1,d2' ],
362[ "VMS->splitdir('[d1-.--d2]')", 'd1-,--d2' ],
363[ "VMS->splitdir('[d1---.-.d2]')", 'd1---,-,d2' ],
364[ "VMS->splitdir('[d1.---.d2]')", 'd1,-,-,-,d2' ],
365[ "VMS->splitdir('[d1---d2]')", 'd1---d2' ],
366[ "VMS->splitdir('[d1.][000000.d2]')", 'd1,d2' ],
0994714a 367
08c7cbbb 368[ "VMS->catdir('')", '' ],
369[ "VMS->catdir('d1','d2','d3')", '[.d1.d2.d3]' ],
370[ "VMS->catdir('d1','d2/','d3')", '[.d1.d2.d3]' ],
371[ "VMS->catdir('','d1','d2','d3')", '[.d1.d2.d3]' ],
372[ "VMS->catdir('','-','d2','d3')", '[-.d2.d3]' ],
373[ "VMS->catdir('','-','','d3')", '[-.d3]' ],
374[ "VMS->catdir('dir.dir','d2.dir','d3.dir')", '[.dir.d2.d3]' ],
375[ "VMS->catdir('[.name]')", '[.name]' ],
45657e91 376[ "VMS->catdir('[.name]','[.name]')", '[.name.name]'],
0994714a 377
9d5071ba 378[ "VMS->abs2rel('node::volume:[t1.t2.t3]','node::volume:[t1.t2.t3]')", '[]' ],
cda9bddd 379[ "VMS->abs2rel('node::volume:[t1.t2.t3]','[t1.t2.t3]')", 'node::volume:[t1.t2.t3]' ],
416c0615 380[ "VMS->abs2rel('node::volume:[t1.t2.t4]','node::volume:[t1.t2.t3]')", '[-.t4]' ],
cda9bddd 381[ "VMS->abs2rel('node::volume:[t1.t2.t4]','[t1.t2.t3]')", 'node::volume:[t1.t2.t4]' ],
9d5071ba 382[ "VMS->abs2rel('[t1.t2.t3]','[t1.t2.t3]')", '[]' ],
0994714a 383[ "VMS->abs2rel('[t1.t2.t3]file','[t1.t2.t3]')", 'file' ],
638113eb 384[ "VMS->abs2rel('[t1.t2.t3]file','[t1.t2]')", '[.t3]file' ],
385[ "VMS->abs2rel('v:[t1.t2.t3]file','v:[t1.t2]')", '[.t3]file' ],
0994714a 386[ "VMS->abs2rel('[t1.t2.t4]','[t1.t2.t3]')", '[-.t4]' ],
387[ "VMS->abs2rel('[t1.t2]file','[t1.t2.t3]')", '[-]file' ],
638113eb 388[ "VMS->abs2rel('[t1.t2.t3.t4]','[t1.t2.t3]')", '[.t4]' ],
08c7cbbb 389[ "VMS->abs2rel('[t4.t5.t6]','[t1.t2.t3]')", '[---.t4.t5.t6]' ],
737c380e 390[ "VMS->abs2rel('[000000]','[t1.t2.t3]')", '[---]' ],
9d5071ba 391[ "VMS->abs2rel('a:[t1.t2.t4]','a:[t1.t2.t3]')", '[-.t4]' ],
cda9bddd 392[ "VMS->abs2rel('a:[t1.t2.t4]','[t1.t2.t3]')", 'a:[t1.t2.t4]' ],
08c7cbbb 393[ "VMS->abs2rel('[a.-.b.c.-]','[t1.t2.t3]')", '[---.b]' ],
270d1e39 394
0994714a 395[ "VMS->rel2abs('[.t4]','[t1.t2.t3]')", '[t1.t2.t3.t4]' ],
396[ "VMS->rel2abs('[.t4.t5]','[t1.t2.t3]')", '[t1.t2.t3.t4.t5]' ],
397[ "VMS->rel2abs('[]','[t1.t2.t3]')", '[t1.t2.t3]' ],
08c7cbbb 398[ "VMS->rel2abs('[-]','[t1.t2.t3]')", '[t1.t2]' ],
399[ "VMS->rel2abs('[-.t4]','[t1.t2.t3]')", '[t1.t2.t4]' ],
0994714a 400[ "VMS->rel2abs('[t1]','[t1.t2.t3]')", '[t1]' ],
270d1e39 401
e021ab8e 402[ "OS2->case_tolerant()", '1' ],
403
0994714a 404[ "OS2->catdir('A:/d1','B:/d2','d3','')", 'A:/d1/B:/d2/d3' ],
02961b52 405
0994714a 406[ "OS2->catfile('a','b','c')", 'a/b/c' ],
02961b52 407[ "OS2->catfile('a','b','./c')", 'a/b/c' ],
408[ "OS2->catfile('./a','b','c')", 'a/b/c' ],
409[ "OS2->catfile('c')", 'c' ],
410[ "OS2->catfile('./c')", 'c' ],
0994714a 411
638113eb 412[ "OS2->catdir('/', '../')", '/' ],
413[ "OS2->catdir('/', '..\\')", '/' ],
414[ "OS2->catdir('\\', '../')", '/' ],
415[ "OS2->catdir('\\', '..\\')", '/' ],
416
e021ab8e 417[ "Mac->case_tolerant()", '1' ],
be708cc0 418
419[ "Mac->catpath('','','')", '' ],
420[ "Mac->catpath('',':','')", ':' ],
421[ "Mac->catpath('','::','')", '::' ],
422
423[ "Mac->catpath('hd','','')", 'hd:' ],
424[ "Mac->catpath('hd:','','')", 'hd:' ],
45657e91 425[ "Mac->catpath('hd:',':','')", 'hd:' ],
be708cc0 426[ "Mac->catpath('hd:','::','')", 'hd::' ],
427
428[ "Mac->catpath('hd','','file')", 'hd:file' ],
429[ "Mac->catpath('hd',':','file')", 'hd:file' ],
430[ "Mac->catpath('hd','::','file')", 'hd::file' ],
431[ "Mac->catpath('hd',':::','file')", 'hd:::file' ],
432
433[ "Mac->catpath('hd:','',':file')", 'hd:file' ],
434[ "Mac->catpath('hd:',':',':file')", 'hd:file' ],
435[ "Mac->catpath('hd:','::',':file')", 'hd::file' ],
436[ "Mac->catpath('hd:',':::',':file')", 'hd:::file' ],
437
438[ "Mac->catpath('hd:','d1','file')", 'hd:d1:file' ],
439[ "Mac->catpath('hd:',':d1:',':file')", 'hd:d1:file' ],
638113eb 440[ "Mac->catpath('hd:','hd:d1','')", 'hd:d1:' ],
be708cc0 441
442[ "Mac->catpath('','d1','')", ':d1:' ],
443[ "Mac->catpath('',':d1','')", ':d1:' ],
444[ "Mac->catpath('',':d1:','')", ':d1:' ],
445
446[ "Mac->catpath('','d1','file')", ':d1:file' ],
447[ "Mac->catpath('',':d1:',':file')", ':d1:file' ],
448
449[ "Mac->catpath('','','file')", 'file' ],
450[ "Mac->catpath('','',':file')", 'file' ], # !
451[ "Mac->catpath('',':',':file')", ':file' ], # !
452
453
454[ "Mac->splitpath(':')", ',:,' ],
455[ "Mac->splitpath('::')", ',::,' ],
456[ "Mac->splitpath(':::')", ',:::,' ],
457
458[ "Mac->splitpath('file')", ',,file' ],
459[ "Mac->splitpath(':file')", ',:,file' ],
460
461[ "Mac->splitpath('d1',1)", ',:d1:,' ], # dir, not volume
462[ "Mac->splitpath(':d1',1)", ',:d1:,' ],
463[ "Mac->splitpath(':d1:',1)", ',:d1:,' ],
464[ "Mac->splitpath(':d1:')", ',:d1:,' ],
465[ "Mac->splitpath(':d1:d2:d3:')", ',:d1:d2:d3:,' ],
466[ "Mac->splitpath(':d1:d2:d3:',1)", ',:d1:d2:d3:,' ],
467[ "Mac->splitpath(':d1:file')", ',:d1:,file' ],
468[ "Mac->splitpath('::d1:file')", ',::d1:,file' ],
469
470[ "Mac->splitpath('hd:', 1)", 'hd:,,' ],
471[ "Mac->splitpath('hd:')", 'hd:,,' ],
472[ "Mac->splitpath('hd:d1:d2:')", 'hd:,:d1:d2:,' ],
473[ "Mac->splitpath('hd:d1:d2',1)", 'hd:,:d1:d2:,' ],
474[ "Mac->splitpath('hd:d1:d2:file')", 'hd:,:d1:d2:,file' ],
475[ "Mac->splitpath('hd:d1:d2::file')", 'hd:,:d1:d2::,file' ],
476[ "Mac->splitpath('hd::d1:d2:file')", 'hd:,::d1:d2:,file' ], # invalid path
477[ "Mac->splitpath('hd:file')", 'hd:,,file' ],
478
2586ba89 479[ "Mac->splitdir()", '' ],
be708cc0 480[ "Mac->splitdir('')", '' ],
481[ "Mac->splitdir(':')", ':' ],
482[ "Mac->splitdir('::')", '::' ],
2586ba89 483[ "Mac->splitdir(':::')", '::,::' ],
484[ "Mac->splitdir(':::d1:d2')", '::,::,d1,d2' ],
485
486[ "Mac->splitdir(':d1:d2:d3::')", 'd1,d2,d3,::'],
487[ "Mac->splitdir(':d1:d2:d3:')", 'd1,d2,d3' ],
488[ "Mac->splitdir(':d1:d2:d3')", 'd1,d2,d3' ],
489
490# absolute paths in splitdir() work, but you'd better use splitpath()
491[ "Mac->splitdir('hd:')", 'hd:' ],
492[ "Mac->splitdir('hd::')", 'hd:,::' ], # invalid path, but it works
493[ "Mac->splitdir('hd::d1:')", 'hd:,::,d1' ], # invalid path, but it works
494[ "Mac->splitdir('hd:d1:d2:::')", 'hd:,d1,d2,::,::' ],
495[ "Mac->splitdir('hd:d1:d2::')", 'hd:,d1,d2,::' ],
496[ "Mac->splitdir('hd:d1:d2:')", 'hd:,d1,d2' ],
497[ "Mac->splitdir('hd:d1:d2')", 'hd:,d1,d2' ],
498[ "Mac->splitdir('hd:d1::d2::')", 'hd:,d1,::,d2,::' ],
499
500[ "Mac->catdir()", '' ],
501[ "Mac->catdir('')", $root, 'MacOS' ], # skipped on other OS
502[ "Mac->catdir(':')", ':' ],
503
504[ "Mac->catdir('', '')", $root, 'MacOS' ], # skipped on other OS
45657e91 505[ "Mac->catdir('', ':')", $root, 'MacOS' ], # skipped on other OS
506[ "Mac->catdir(':', ':')", ':' ],
507[ "Mac->catdir(':', '')", ':' ],
2586ba89 508
509[ "Mac->catdir('', '::')", $root, 'MacOS' ], # skipped on other OS
45657e91 510[ "Mac->catdir(':', '::')", '::' ],
2586ba89 511
45657e91 512[ "Mac->catdir('::', '')", '::' ],
513[ "Mac->catdir('::', ':')", '::' ],
2586ba89 514
45657e91 515[ "Mac->catdir('::', '::')", ':::' ],
2586ba89 516
517[ "Mac->catdir(':d1')", ':d1:' ],
518[ "Mac->catdir(':d1:')", ':d1:' ],
519[ "Mac->catdir(':d1','d2')", ':d1:d2:' ],
520[ "Mac->catdir(':d1',':d2')", ':d1:d2:' ],
521[ "Mac->catdir(':d1',':d2:')", ':d1:d2:' ],
522[ "Mac->catdir(':d1',':d2::')", ':d1:d2::' ],
523[ "Mac->catdir(':',':d1',':d2')", ':d1:d2:' ],
524[ "Mac->catdir('::',':d1',':d2')", '::d1:d2:' ],
525[ "Mac->catdir('::','::',':d1',':d2')", ':::d1:d2:' ],
526[ "Mac->catdir(':',':',':d1',':d2')", ':d1:d2:' ],
527[ "Mac->catdir('::',':',':d1',':d2')", '::d1:d2:' ],
528
529[ "Mac->catdir('d1')", ':d1:' ],
530[ "Mac->catdir('d1','d2','d3')", ':d1:d2:d3:' ],
531[ "Mac->catdir('d1','d2/','d3')", ':d1:d2/:d3:' ],
532[ "Mac->catdir('d1','',':d2')", ':d1:d2:' ],
533[ "Mac->catdir('d1',':',':d2')", ':d1:d2:' ],
534[ "Mac->catdir('d1','::',':d2')", ':d1::d2:' ],
535[ "Mac->catdir('d1',':::',':d2')", ':d1:::d2:' ],
536[ "Mac->catdir('d1','::','::',':d2')", ':d1:::d2:' ],
537[ "Mac->catdir('d1','d2')", ':d1:d2:' ],
538[ "Mac->catdir('d1','d2', '')", ':d1:d2:' ],
539[ "Mac->catdir('d1','d2', ':')", ':d1:d2:' ],
540[ "Mac->catdir('d1','d2', '::')", ':d1:d2::' ],
541[ "Mac->catdir('d1','d2','','')", ':d1:d2:' ],
542[ "Mac->catdir('d1','d2',':','::')", ':d1:d2::' ],
543[ "Mac->catdir('d1','d2','::','::')", ':d1:d2:::' ],
544[ "Mac->catdir('d1',':d2')", ':d1:d2:' ],
545[ "Mac->catdir('d1',':d2:')", ':d1:d2:' ],
546
547[ "Mac->catdir('','d1','d2','d3')", $root . 'd1:d2:d3:', 'MacOS' ], # skipped on other OS
548[ "Mac->catdir('',':','d1','d2')", $root . 'd1:d2:' , 'MacOS' ], # skipped on other OS
549[ "Mac->catdir('','::','d1','d2')", $root . 'd1:d2:' , 'MacOS' ], # skipped on other OS
550[ "Mac->catdir('',':','','d1')", $root . 'd1:' , 'MacOS' ], # skipped on other OS
551[ "Mac->catdir('', ':d1',':d2')", $root . 'd1:d2:' , 'MacOS' ], # skipped on other OS
552[ "Mac->catdir('','',':d1',':d2')", $root . 'd1:d2:' , 'MacOS' ], # skipped on other OS
be708cc0 553
be708cc0 554[ "Mac->catdir('hd:',':d1')", 'hd:d1:' ],
555[ "Mac->catdir('hd:d1:',':d2')", 'hd:d1:d2:' ],
556[ "Mac->catdir('hd:','d1')", 'hd:d1:' ],
be708cc0 557[ "Mac->catdir('hd:d1:',':d2')", 'hd:d1:d2:' ],
558[ "Mac->catdir('hd:d1:',':d2:')", 'hd:d1:d2:' ],
559
45657e91 560[ "Mac->catfile()", '' ],
2586ba89 561[ "Mac->catfile('')", '' ],
45657e91 562[ "Mac->catfile('', '')", $root , 'MacOS' ], # skipped on other OS
2586ba89 563[ "Mac->catfile('', 'file')", $root . 'file', 'MacOS' ], # skipped on other OS
564[ "Mac->catfile(':')", ':' ],
565[ "Mac->catfile(':', '')", ':' ],
be708cc0 566
2586ba89 567[ "Mac->catfile('d1','d2','file')", ':d1:d2:file' ],
568[ "Mac->catfile('d1','d2',':file')", ':d1:d2:file' ],
45657e91 569[ "Mac->catfile('file')", 'file' ],
570[ "Mac->catfile(':', 'file')", ':file' ],
571
0994714a 572[ "Mac->canonpath('')", '' ],
573[ "Mac->canonpath(':')", ':' ],
574[ "Mac->canonpath('::')", '::' ],
575[ "Mac->canonpath('a::')", 'a::' ],
576[ "Mac->canonpath(':a::')", ':a::' ],
577
be708cc0 578[ "Mac->abs2rel('hd:d1:d2:','hd:d1:d2:')", ':' ],
579[ "Mac->abs2rel('hd:d1:d2:','hd:d1:d2:file')", ':' ], # ignore base's file portion
45657e91 580[ "Mac->abs2rel('hd:d1:d2:file','hd:d1:d2:')", ':file' ],
be708cc0 581[ "Mac->abs2rel('hd:d1:','hd:d1:d2:')", '::' ],
582[ "Mac->abs2rel('hd:d3:','hd:d1:d2:')", ':::d3:' ],
583[ "Mac->abs2rel('hd:d3:','hd:d1:d2::')", '::d3:' ],
584[ "Mac->abs2rel('hd:d1:d4:d5:','hd:d1::d2:d3::')", '::d1:d4:d5:' ],
585[ "Mac->abs2rel('hd:d1:d4:d5:','hd:d1::d2:d3:')", ':::d1:d4:d5:' ], # first, resolve updirs in base
586[ "Mac->abs2rel('hd:d1:d3:','hd:d1:d2:')", '::d3:' ],
587[ "Mac->abs2rel('hd:d1::d3:','hd:d1:d2:')", ':::d3:' ],
588[ "Mac->abs2rel('hd:d3:','hd:d1:d2:')", ':::d3:' ], # same as above
589[ "Mac->abs2rel('hd:d1:d2:d3:','hd:d1:d2:')", ':d3:' ],
590[ "Mac->abs2rel('hd:d1:d2:d3::','hd:d1:d2:')", ':d3::' ],
638113eb 591[ "Mac->abs2rel('hd1:d3:d4:d5:','hd2:d1:d2:')", 'hd1:d3:d4:d5:'], # volume mismatch
be708cc0 592[ "Mac->abs2rel('hd:','hd:d1:d2:')", ':::' ],
593
45657e91 594[ "Mac->rel2abs(':d3:','hd:d1:d2:')", 'hd:d1:d2:d3:' ],
595[ "Mac->rel2abs(':d3:d4:','hd:d1:d2:')", 'hd:d1:d2:d3:d4:' ],
be708cc0 596[ "Mac->rel2abs('','hd:d1:d2:')", '' ],
597[ "Mac->rel2abs('::','hd:d1:d2:')", 'hd:d1:d2::' ],
598[ "Mac->rel2abs('::','hd:d1:d2:file')", 'hd:d1:d2::' ],# ignore base's file portion
599[ "Mac->rel2abs(':file','hd:d1:d2:')", 'hd:d1:d2:file' ],
600[ "Mac->rel2abs('::file','hd:d1:d2:')", 'hd:d1:d2::file' ],
601[ "Mac->rel2abs('::d3:','hd:d1:d2:')", 'hd:d1:d2::d3:' ],
602[ "Mac->rel2abs('hd:','hd:d1:d2:')", 'hd:' ], # path already absolute
603[ "Mac->rel2abs('hd:d3:file','hd:d1:d2:')", 'hd:d3:file' ],
604[ "Mac->rel2abs('hd:d3:','hd:d1:file')", 'hd:d3:' ],
e021ab8e 605
606[ "Epoc->case_tolerant()", '1' ],
607
608[ "Epoc->canonpath('')", '' ],
609[ "Epoc->canonpath('///../../..//./././a//b/.././c/././')", '/a/b/../c' ],
610[ "Epoc->canonpath('/./')", '/' ],
611[ "Epoc->canonpath('/a/./')", '/a' ],
612
613# XXX Todo, copied from Unix, but fail. Should they? 2003-07-07 Tels
614#[ "Epoc->canonpath('/a/.')", '/a' ],
615#[ "Epoc->canonpath('/.')", '/' ],
616
617[ "Cygwin->case_tolerant()", '0' ],
ff235dd6 618[ "Cygwin->catdir('/','d2/d3')", '/d2/d3' ],
e021ab8e 619
0994714a 620) ;
621
5b287435 622if ($^O eq 'MSWin32') {
623 push @tests, [ "FakeWin32->rel2abs('D:foo.txt')", 'D:\\alpha\\beta\\foo.txt' ];
624}
625
626
e021ab8e 627plan tests => scalar @tests;
270d1e39 628
e021ab8e 629{
5b287435 630 package File::Spec::FakeWin32;
631 use vars qw(@ISA);
632 @ISA = qw(File::Spec::Win32);
633
634 sub _cwd { 'C:\\one\\two' }
635
636 # Some funky stuff to override Cwd::getdcwd() for testing purposes,
637 # in the limited scope of the rel2abs() method.
99f36a73 638 if ($Cwd::VERSION && $Cwd::VERSION gt '2.17') { # Avoid a 'used only once' warning
5b287435 639 local $^W;
640 *rel2abs = sub {
641 my $self = shift;
642 local $^W;
643 local *Cwd::getdcwd = sub {
644 return 'D:\alpha\beta' if $_[0] eq 'D:';
645 return 'C:\one\two' if $_[0] eq 'C:';
646 return;
647 };
648 *Cwd::getdcwd = *Cwd::getdcwd; # Avoid a 'used only once' warning
649 return $self->SUPER::rel2abs(@_);
650 };
651 *rel2abs = *rel2abs; # Avoid a 'used only once' warning
652 }
e021ab8e 653}
0994714a 654
0994714a 655
0994714a 656# Test out the class methods
657for ( @tests ) {
658 tryfunc( @$_ ) ;
270d1e39 659}
660
0994714a 661
0994714a 662#
663# Tries a named function with the given args and compares the result against
664# an expected result. Works with functions that return scalars or arrays.
665#
666sub tryfunc {
667 my $function = shift ;
668 my $expected = shift ;
f6a53ef2 669 my $platform = shift ;
670
671 if ($platform && $^O ne $platform) {
e021ab8e 672 skip("skip $function", 1);
f6a53ef2 673 return;
674 }
0994714a 675
676 $function =~ s#\\#\\\\#g ;
e021ab8e 677 $function =~ s/^([^\$].*->)/File::Spec::$1/;
678 my $got = join ',', eval $function;
0994714a 679
680 if ( $@ ) {
e021ab8e 681 if ( $@ =~ /^\Q$skip_exception/ ) {
682 skip "skip $function: $skip_exception", 1;
683 }
684 else {
685 ok $@, '', $function;
686 }
687 return;
0994714a 688 }
e021ab8e 689
690 ok $got, $expected, $function;
0994714a 691}