File: bug49910.phpt

package info (click to toggle)
php5 5.6.33%2Bdfsg-0%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 157,872 kB
  • sloc: ansic: 756,065; php: 22,030; sh: 12,311; cpp: 8,771; xml: 6,179; yacc: 1,564; exp: 1,514; makefile: 1,467; pascal: 1,147; awk: 538; perl: 315; sql: 22
file content (50 lines) | stat: -rw-r--r-- 2,957 bytes parent folder | download | duplicates (8)
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
--TEST--
Bug #49910: no support for ././@LongLink for long filenames in phar tar support
--SKIPIF--
<?php if (!extension_loaded("phar")) die("skip"); ?>
<?php if (!extension_loaded("zlib")) die("skip"); ?>
--FILE--
<?php
$fname = str_replace('\\', '/', dirname(__FILE__) . '/files/Structures_Graph-1.0.3.tgz');
$tar = new PharData($fname);
$files = array();
foreach (new RecursiveIteratorIterator($tar) as $file) {
	$files[] = str_replace($fname, '*', $file->getPathName());
}
print_r($files);
?>
===DONE===
--EXPECT--
Array
(
    [0] => phar://*/Structures_Graph-1.0.3/LICENSE
    [1] => phar://*/Structures_Graph-1.0.3/Structures/Graph/Manipulator/AcyclicTest.php
    [2] => phar://*/Structures_Graph-1.0.3/Structures/Graph/Manipulator/TopologicalSorter.php
    [3] => phar://*/Structures_Graph-1.0.3/Structures/Graph/Node.php
    [4] => phar://*/Structures_Graph-1.0.3/Structures/Graph.php
    [5] => phar://*/Structures_Graph-1.0.3/docs/generate.sh
    [6] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph.html
    [7] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph_Manipulator_AcyclicTest.html
    [8] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph_Manipulator_TopologicalSorter.html
    [9] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph_Node.html
    [10] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/_Structures_Graph_Manipulator_AcyclicTest_php.html
    [11] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/_Structures_Graph_Manipulator_TopologicalSorter_php.html
    [12] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/_Structures_Graph_Node_php.html
    [13] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/_Structures_Graph_php.html
    [14] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/tutorial_Structures_Graph.pkg.html
    [15] => phar://*/Structures_Graph-1.0.3/docs/html/classtrees_Structures_Graph.html
    [16] => phar://*/Structures_Graph-1.0.3/docs/html/elementindex.html
    [17] => phar://*/Structures_Graph-1.0.3/docs/html/elementindex_Structures_Graph.html
    [18] => phar://*/Structures_Graph-1.0.3/docs/html/errors.html
    [19] => phar://*/Structures_Graph-1.0.3/docs/html/index.html
    [20] => phar://*/Structures_Graph-1.0.3/docs/html/li_Structures_Graph.html
    [21] => phar://*/Structures_Graph-1.0.3/docs/html/media/banner.css
    [22] => phar://*/Structures_Graph-1.0.3/docs/html/media/stylesheet.css
    [23] => phar://*/Structures_Graph-1.0.3/docs/html/packages.html
    [24] => phar://*/Structures_Graph-1.0.3/docs/html/todolist.html
    [25] => phar://*/Structures_Graph-1.0.3/docs/tutorials/Structures_Graph/Structures_Graph.pkg
    [26] => phar://*/Structures_Graph-1.0.3/tests/AllTests.php
    [27] => phar://*/Structures_Graph-1.0.3/tests/testCase/BasicGraph.php
    [28] => phar://*/package.xml
)
===DONE===