File: collector.php

package info (click to toggle)
postfixadmin 2.3.5-2%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,200 kB
  • sloc: php: 25,767; xml: 14,485; perl: 964; sh: 664; python: 169; makefile: 84
file content (107 lines) | stat: -rw-r--r-- 3,689 bytes parent folder | download | duplicates (2)
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
<?php
    /**
     * This file contains the following classes: {@link SimpleCollector},
     * {@link SimplePatternCollector}.
     *
     * @author Travis Swicegood <development@domain51.com>
     * @package SimpleTest
     * @subpackage UnitTester
     * @version $Id: collector.php,v 1.11 2006/11/21 00:26:55 lastcraft Exp $
     */
    
    /**
     * The basic collector for {@link GroupTest}
     *
     * @see collect(), GroupTest::collect()
     * @package SimpleTest
     * @subpackage UnitTester
     */
    class SimpleCollector {
    
        /**
         * Strips off any kind of slash at the end so as to normalise the path.
         * @param string $path    Path to normalise.
         * @return string         Path without trailing slash.
         */
        function _removeTrailingSlash($path) {
            if (substr($path, -1) == DIRECTORY_SEPARATOR) {
                return substr($path, 0, -1);
            } elseif (substr($path, -1) == '/') {
                return substr($path, 0, -1);
            } else {
                return $path;
            }
        }
    
        /**
         * Scans the directory and adds what it can.
         * @param object $test    Group test with {@link GroupTest::addTestFile()} method.
         * @param string $path    Directory to scan.
         * @see _attemptToAdd()
         */
        function collect(&$test, $path) {
            $path = $this->_removeTrailingSlash($path);
            if ($handle = opendir($path)) {
                while (($entry = readdir($handle)) !== false) {
                    $this->_handle($test, $path . DIRECTORY_SEPARATOR . $entry);
                }
                closedir($handle);
            }
        }
    
        /**
         * This method determines what should be done with a given file and adds
         * it via {@link GroupTest::addTestFile()} if necessary.
         *
         * This method should be overriden to provide custom matching criteria,
         * such as pattern matching, recursive matching, etc.  For an example, see
         * {@link SimplePatternCollector::_handle()}.
         *
         * @param object $test      Group test with {@link GroupTest::addTestFile()} method.
         * @param string $filename  A filename as generated by {@link collect()}
         * @see collect()
         * @access protected
         */
        function _handle(&$test, $file) {
            if (! is_dir($file)) {
                $test->addTestFile($file);
            }
        }
    }
    
    /**
     * An extension to {@link SimpleCollector} that only adds files matching a
     * given pattern.
     *
     * @package SimpleTest
     * @subpackage UnitTester
     * @see SimpleCollector
     */
    class SimplePatternCollector extends SimpleCollector {
        var $_pattern;
    
        /**
         *
         * @param string $pattern   Perl compatible regex to test name against
         *  See {@link http://us4.php.net/manual/en/reference.pcre.pattern.syntax.php PHP's PCRE}
         *  for full documentation of valid pattern.s
         */
        function SimplePatternCollector($pattern = '/php$/i') {
            $this->_pattern = $pattern;
        }
    
        /**
         * Attempts to add files that match a given pattern.
         *
         * @see SimpleCollector::_handle()
         * @param object $test    Group test with {@link GroupTest::addTestFile()} method.
         * @param string $path    Directory to scan.
         * @access protected
         */
        function _handle(&$test, $filename) {
            if (preg_match($this->_pattern, $filename)) {
                parent::_handle($test, $filename);
            }
        }
    }
?>