/var/www/hkosl.com/nick/codeigniter/application/vendor/phpunit/phpunit/src/Util/Log/TAP.php


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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<?php
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * A TestListener that generates a logfile of the
 * test execution using the Test Anything Protocol (TAP).
 */
class PHPUnit_Util_Log_TAP extends PHPUnit_Util_Printer implements PHPUnit_Framework_TestListener
{
    
/**
     * @var int
     */
    
protected $testNumber 0;

    
/**
     * @var int
     */
    
protected $testSuiteLevel 0;

    
/**
     * @var bool
     */
    
protected $testSuccessful true;

    
/**
     * Constructor.
     *
     * @param mixed $out
     *
     * @throws PHPUnit_Framework_Exception
     */
    
public function __construct($out null)
    {
        
parent::__construct($out);
        
$this->write("TAP version 13\n");
    }

    
/**
     * An error occurred.
     *
     * @param PHPUnit_Framework_Test $test
     * @param Exception              $e
     * @param float                  $time
     */
    
public function addError(PHPUnit_Framework_Test $testException $e$time)
    {
        
$this->writeNotOk($test'Error');
    }

    
/**
     * A warning occurred.
     *
     * @param PHPUnit_Framework_Test    $test
     * @param PHPUnit_Framework_Warning $e
     * @param float                     $time
     */
    
public function addWarning(PHPUnit_Framework_Test $testPHPUnit_Framework_Warning $e$time)
    {
        
$this->writeNotOk($test'Warning');
    }

    
/**
     * A failure occurred.
     *
     * @param PHPUnit_Framework_Test                 $test
     * @param PHPUnit_Framework_AssertionFailedError $e
     * @param float                                  $time
     */
    
public function addFailure(PHPUnit_Framework_Test $testPHPUnit_Framework_AssertionFailedError $e$time)
    {
        
$this->writeNotOk($test'Failure');

        
$message explode(
            
"\n",
            
PHPUnit_Framework_TestFailure::exceptionToString($e)
        );

        
$diagnostic = [
          
'message'  => $message[0],
          
'severity' => 'fail'
        
];

        if (
$e instanceof PHPUnit_Framework_ExpectationFailedException) {
            
$cf $e->getComparisonFailure();

            if (
$cf !== null) {
                
$diagnostic['data'] = [
                  
'got'      => $cf->getActual(),
                  
'expected' => $cf->getExpected()
                ];
            }
        }

        
$yaml = new Symfony\Component\Yaml\Dumper;

        
$this->write(
            
sprintf(
                
"  ---\n%s  ...\n",
                
$yaml->dump($diagnostic22)
            )
        );
    }

    
/**
     * Incomplete test.
     *
     * @param PHPUnit_Framework_Test $test
     * @param Exception              $e
     * @param float                  $time
     */
    
public function addIncompleteTest(PHPUnit_Framework_Test $testException $e$time)
    {
        
$this->writeNotOk($test'''TODO Incomplete Test');
    }

    
/**
     * Risky test.
     *
     * @param PHPUnit_Framework_Test $test
     * @param Exception              $e
     * @param float                  $time
     */
    
public function addRiskyTest(PHPUnit_Framework_Test $testException $e$time)
    {
        
$this->write(
            
sprintf(
                
"ok %d - # RISKY%s\n",
                
$this->testNumber,
                
$e->getMessage() != '' ' ' $e->getMessage() : ''
            
)
        );

        
$this->testSuccessful false;
    }

    
/**
     * Skipped test.
     *
     * @param PHPUnit_Framework_Test $test
     * @param Exception              $e
     * @param float                  $time
     */
    
public function addSkippedTest(PHPUnit_Framework_Test $testException $e$time)
    {
        
$this->write(
            
sprintf(
                
"ok %d - # SKIP%s\n",
                
$this->testNumber,
                
$e->getMessage() != '' ' ' $e->getMessage() : ''
            
)
        );

        
$this->testSuccessful false;
    }

    
/**
     * A testsuite started.
     *
     * @param PHPUnit_Framework_TestSuite $suite
     */
    
public function startTestSuite(PHPUnit_Framework_TestSuite $suite)
    {
        
$this->testSuiteLevel++;
    }

    
/**
     * A testsuite ended.
     *
     * @param PHPUnit_Framework_TestSuite $suite
     */
    
public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
    {
        
$this->testSuiteLevel--;

        if (
$this->testSuiteLevel == 0) {
            
$this->write(sprintf("1..%d\n"$this->testNumber));
        }
    }

    
/**
     * A test started.
     *
     * @param PHPUnit_Framework_Test $test
     */
    
public function startTest(PHPUnit_Framework_Test $test)
    {
        
$this->testNumber++;
        
$this->testSuccessful true;
    }

    
/**
     * A test ended.
     *
     * @param PHPUnit_Framework_Test $test
     * @param float                  $time
     */
    
public function endTest(PHPUnit_Framework_Test $test$time)
    {
        if (
$this->testSuccessful === true) {
            
$this->write(
                
sprintf(
                    
"ok %d - %s\n",
                    
$this->testNumber,
                    
PHPUnit_Util_Test::describe($test)
                )
            );
        }

        
$this->writeDiagnostics($test);
    }

    
/**
     * @param PHPUnit_Framework_Test $test
     * @param string                 $prefix
     * @param string                 $directive
     */
    
protected function writeNotOk(PHPUnit_Framework_Test $test$prefix ''$directive '')
    {
        
$this->write(
            
sprintf(
                
"not ok %d - %s%s%s\n",
                
$this->testNumber,
                
$prefix != '' $prefix ': ' '',
                
PHPUnit_Util_Test::describe($test),
                
$directive != '' ' # ' $directive ''
            
)
        );

        
$this->testSuccessful false;
    }

    
/**
     * @param PHPUnit_Framework_Test $test
     */
    
private function writeDiagnostics(PHPUnit_Framework_Test $test)
    {
        if (!
$test instanceof PHPUnit_Framework_TestCase) {
            return;
        }

        if (!
$test->hasOutput()) {
            return;
        }

        foreach (
explode("\n"trim($test->getActualOutput())) as $line) {
            
$this->write(
                
sprintf(
                    
"# %s\n",
                    
$line
                
)
            );
        }
    }
}