1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Copyright (c) 2011-present Mediasift Ltd |
5
|
|
|
* All rights reserved. |
6
|
|
|
* |
7
|
|
|
* Redistribution and use in source and binary forms, with or without |
8
|
|
|
* modification, are permitted provided that the following conditions |
9
|
|
|
* are met: |
10
|
|
|
* |
11
|
|
|
* * Redistributions of source code must retain the above copyright |
12
|
|
|
* notice, this list of conditions and the following disclaimer. |
13
|
|
|
* |
14
|
|
|
* * Redistributions in binary form must reproduce the above copyright |
15
|
|
|
* notice, this list of conditions and the following disclaimer in |
16
|
|
|
* the documentation and/or other materials provided with the |
17
|
|
|
* distribution. |
18
|
|
|
* |
19
|
|
|
* * Neither the names of the copyright holders nor the names of his |
20
|
|
|
* contributors may be used to endorse or promote products derived |
21
|
|
|
* from this software without specific prior written permission. |
22
|
|
|
* |
23
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
24
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
25
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
26
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
27
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
28
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
29
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
30
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
31
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
32
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
33
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
34
|
|
|
* POSSIBILITY OF SUCH DAMAGE. |
35
|
|
|
* |
36
|
|
|
* @category Libraries |
37
|
|
|
* @package Storyplayer/Phases |
38
|
|
|
* @author Stuart Herbert <[email protected]> |
39
|
|
|
* @copyright 2011-present Mediasift Ltd www.datasift.com |
40
|
|
|
* @license http://www.opensource.org/licenses/bsd-license.php BSD License |
41
|
|
|
* @link http://datasift.github.io/storyplayer |
42
|
|
|
*/ |
43
|
|
|
|
44
|
|
|
namespace DataSift\Storyplayer\Phases; |
45
|
|
|
|
46
|
|
|
use Exception; |
47
|
|
|
use Storyplayer\SPv2\Modules\Exceptions\ActionFailedException; |
48
|
|
|
use Storyplayer\SPv2\Modules\Exceptions\ExpectFailedException; |
49
|
|
|
use Storyplayer\SPv2\Modules\Exceptions\NotImplementedException; |
50
|
|
|
use Storyplayer\SPv2\Modules\Exceptions\StoryCannotRunException; |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* the TestShouldRun phase |
54
|
|
|
* |
55
|
|
|
* @category Libraries |
56
|
|
|
* @package Storyplayer/Phases |
57
|
|
|
* @author Stuart Herbert <[email protected]> |
58
|
|
|
* @copyright 2011-present Mediasift Ltd www.datasift.com |
59
|
|
|
* @license http://www.opensource.org/licenses/bsd-license.php BSD License |
60
|
|
|
* @link http://datasift.github.io/storyplayer |
61
|
|
|
*/ |
62
|
|
|
|
63
|
|
|
class TestCanRunCheckPhase extends StoryPhase |
64
|
|
|
{ |
65
|
|
|
protected $sequenceNo = 1; |
66
|
|
|
|
67
|
|
|
public function doPhase($story) |
68
|
|
|
{ |
69
|
|
|
// shorthand |
70
|
|
|
$st = $this->st; |
71
|
|
|
$storyResult = $story->getResult(); |
72
|
|
|
|
73
|
|
|
// keep track of what happens with the action |
74
|
|
|
$phaseResult = $this->getNewPhaseResult(); |
75
|
|
|
|
76
|
|
|
// do we have anything to do? |
77
|
|
|
if (!$story->hasTestCanRunCheck()) |
78
|
|
|
{ |
79
|
|
|
$phaseResult->setContinuePlaying( |
80
|
|
|
$phaseResult::COMPLETED, |
81
|
|
|
"story can always run" |
82
|
|
|
); |
83
|
|
|
return $phaseResult; |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
// get the callback to call |
87
|
|
|
$callbacks = $story->getTestCanRunCheck(); |
88
|
|
|
|
89
|
|
|
// make the call |
90
|
|
|
try { |
91
|
|
|
foreach ($callbacks as $callback) { |
92
|
|
|
$canRun = call_user_func($callback, $st); |
93
|
|
|
|
94
|
|
|
// what did the callback tell us? |
95
|
|
|
// |
96
|
|
|
// we treat TWO results as valid reports that the test |
97
|
|
|
// should be skipped: |
98
|
|
|
// |
99
|
|
|
// 1: FALSE |
100
|
|
|
// 2: an error message to write to the outputs |
101
|
|
|
// |
102
|
|
|
// ANYTHING else is treated as permission to continue |
103
|
|
|
// and potentially run the rest of the story |
104
|
|
|
if ($canRun === false || is_string($canRun)) { |
105
|
|
|
$msg = "test reported that it cannot run"; |
106
|
|
|
if (is_string($canRun)) { |
107
|
|
|
$msg = $canRun; |
108
|
|
|
} |
109
|
|
|
$phaseResult->setSkipPlaying( |
110
|
|
|
$phaseResult::CANNOTRUN, |
111
|
|
|
$msg |
112
|
|
|
); |
113
|
|
|
$storyResult->setStoryHasBeenSkipped($phaseResult); |
114
|
|
|
return $phaseResult; |
115
|
|
|
} |
116
|
|
|
} |
117
|
|
|
|
118
|
|
|
// if we get here, then all is well |
119
|
|
|
$phaseResult->setContinuePlaying(); |
120
|
|
|
} |
121
|
|
|
// if an action fails, we treat that as a fault, and mark the |
122
|
|
|
// story as failed |
123
|
|
|
catch (ActionFailedException $e) { |
|
|
|
|
124
|
|
|
$phaseResult->setPlayingFailed( |
125
|
|
|
$phaseResult::FAILED, |
126
|
|
|
$e->getMessage(), |
127
|
|
|
$e |
128
|
|
|
); |
129
|
|
|
$storyResult->setStoryHasFailed($phaseResult); |
130
|
|
|
} |
131
|
|
|
// if an expect fails, we treat that as meaning that the story |
132
|
|
|
// cannot run |
133
|
|
|
catch (ExpectFailedException $e) { |
|
|
|
|
134
|
|
|
$phaseResult->setSkipPlaying( |
135
|
|
|
$phaseResult::CANNOTRUN, |
136
|
|
|
$e->getMessage(), |
137
|
|
|
$e |
138
|
|
|
); |
139
|
|
|
$storyResult->setStoryHasBeenSkipped($phaseResult); |
140
|
|
|
} |
141
|
|
|
// if any of the modules used are incomplete, deal with that too |
142
|
|
|
catch (NotImplementedException $e) { |
|
|
|
|
143
|
|
|
$phaseResult->setPlayingFailed( |
144
|
|
|
$phaseResult::INCOMPLETE, |
145
|
|
|
$e->getMessage(), |
146
|
|
|
$e |
147
|
|
|
); |
148
|
|
|
$storyResult->setStoryIsIncomplete($phaseResult); |
149
|
|
|
} |
150
|
|
|
catch (StoryCannotRunException $e) { |
|
|
|
|
151
|
|
|
$phaseResult->setSkipPlaying( |
152
|
|
|
$phaseResult::CANNOTRUN, |
153
|
|
|
$e->getMessage() |
154
|
|
|
); |
155
|
|
|
$storyResult->setStoryHasBeenSkipped($phaseResult); |
156
|
|
|
} |
157
|
|
|
catch (Exception $e) |
158
|
|
|
{ |
159
|
|
|
// something went wrong ... the test cannot continue |
160
|
|
|
$phaseResult->setPlayingFailed( |
161
|
|
|
$phaseResult::ERROR, |
162
|
|
|
$e->getMessage(), |
163
|
|
|
$e |
164
|
|
|
); |
165
|
|
|
$storyResult->setStoryHasFailed($phaseResult); |
166
|
|
|
} |
167
|
|
|
|
168
|
|
|
// all done |
169
|
|
|
return $phaseResult; |
170
|
|
|
} |
171
|
|
|
} |
172
|
|
|
|
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.