Complex classes like Expectation often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Expectation, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 26 | class Expectation implements ExpectationInterface |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * Mock object to which this expectation belongs |
||
| 30 | * |
||
| 31 | * @var object |
||
| 32 | */ |
||
| 33 | protected $_mock = null; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Method name |
||
| 37 | * |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | protected $_name = null; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Arguments expected by this expectation |
||
| 44 | * |
||
| 45 | * @var array |
||
| 46 | */ |
||
| 47 | protected $_expectedArgs = array(); |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Count validator store |
||
| 51 | * |
||
| 52 | * @var array |
||
| 53 | */ |
||
| 54 | protected $_countValidators = array(); |
||
| 55 | |||
| 56 | /** |
||
| 57 | * The count validator class to use |
||
| 58 | * |
||
| 59 | * @var string |
||
| 60 | */ |
||
| 61 | protected $_countValidatorClass = 'Mockery\CountValidator\Exact'; |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Actual count of calls to this expectation |
||
| 65 | * |
||
| 66 | * @var int |
||
| 67 | */ |
||
| 68 | protected $_actualCount = 0; |
||
| 69 | |||
| 70 | /** |
||
| 71 | * Value to return from this expectation |
||
| 72 | * |
||
| 73 | * @var mixed |
||
| 74 | */ |
||
| 75 | protected $_returnValue = null; |
||
| 76 | |||
| 77 | /** |
||
| 78 | * Array of return values as a queue for multiple return sequence |
||
| 79 | * |
||
| 80 | * @var array |
||
| 81 | */ |
||
| 82 | protected $_returnQueue = array(); |
||
| 83 | |||
| 84 | /** |
||
| 85 | * Array of closures executed with given arguments to generate a result |
||
| 86 | * to be returned |
||
| 87 | * |
||
| 88 | * @var array |
||
| 89 | */ |
||
| 90 | protected $_closureQueue = array(); |
||
| 91 | |||
| 92 | /** |
||
| 93 | * Array of values to be set when this expectation matches |
||
| 94 | * |
||
| 95 | * @var array |
||
| 96 | */ |
||
| 97 | protected $_setQueue = array(); |
||
| 98 | |||
| 99 | /** |
||
| 100 | * Integer representing the call order of this expectation |
||
| 101 | * |
||
| 102 | * @var int |
||
| 103 | */ |
||
| 104 | protected $_orderNumber = null; |
||
| 105 | |||
| 106 | /** |
||
| 107 | * Integer representing the call order of this expectation on a global basis |
||
| 108 | * |
||
| 109 | * @var int |
||
| 110 | */ |
||
| 111 | protected $_globalOrderNumber = null; |
||
| 112 | |||
| 113 | /** |
||
| 114 | * Flag indicating that an exception is expected to be throw (not returned) |
||
| 115 | * |
||
| 116 | * @var bool |
||
| 117 | */ |
||
| 118 | protected $_throw = false; |
||
| 119 | |||
| 120 | /** |
||
| 121 | * Flag indicating whether the order of calling is determined locally or |
||
| 122 | * globally |
||
| 123 | * |
||
| 124 | * @var bool |
||
| 125 | */ |
||
| 126 | protected $_globally = false; |
||
| 127 | |||
| 128 | /** |
||
| 129 | * Flag indicating we expect no arguments |
||
| 130 | * |
||
| 131 | * @var bool |
||
| 132 | */ |
||
| 133 | protected $_noArgsExpectation = false; |
||
| 134 | |||
| 135 | /** |
||
| 136 | * Flag indicating if the return value should be obtained from the original |
||
| 137 | * class method instead of returning predefined values from the return queue |
||
| 138 | * |
||
| 139 | * @var bool |
||
| 140 | */ |
||
| 141 | protected $_passthru = false; |
||
| 142 | |||
| 143 | /** |
||
| 144 | * Constructor |
||
| 145 | * |
||
| 146 | * @param \Mockery\MockInterface $mock |
||
| 147 | * @param string $name |
||
| 148 | */ |
||
| 149 | 330 | public function __construct(\Mockery\MockInterface $mock, $name) |
|
| 154 | |||
| 155 | /** |
||
| 156 | * Return a string with the method name and arguments formatted |
||
| 157 | * |
||
| 158 | * @param string $name Name of the expected method |
||
| 159 | * @param array $args List of arguments to the method |
||
| 160 | * @return string |
||
| 161 | */ |
||
| 162 | 43 | public function __toString() |
|
| 166 | |||
| 167 | /** |
||
| 168 | * Verify the current call, i.e. that the given arguments match those |
||
| 169 | * of this expectation |
||
| 170 | * |
||
| 171 | * @param array $args |
||
| 172 | * @return mixed |
||
| 173 | */ |
||
| 174 | 260 | public function verifyCall(array $args) |
|
| 175 | { |
||
| 176 | 260 | $this->validateOrder(); |
|
| 177 | 260 | $this->_actualCount++; |
|
| 178 | 260 | if (true === $this->_passthru) { |
|
| 179 | 3 | return $this->_mock->mockery_callSubjectMethod($this->_name, $args); |
|
| 180 | } |
||
| 181 | |||
| 182 | 258 | $return = $this->_getReturnValue($args); |
|
| 183 | 258 | $this->throwAsNecessary($return); |
|
| 184 | 251 | $this->_setValues(); |
|
| 185 | |||
| 186 | 251 | return $return; |
|
| 187 | } |
||
| 188 | |||
| 189 | /** |
||
| 190 | * Throws an exception if the expectation has been configured to do so |
||
| 191 | * |
||
| 192 | * @throws \Exception|\Throwable |
||
| 193 | * @return void |
||
| 194 | */ |
||
| 195 | 258 | private function throwAsNecessary($return) |
|
| 196 | { |
||
| 197 | 258 | if (!$this->_throw) { |
|
| 198 | 251 | return; |
|
| 199 | } |
||
| 200 | |||
| 201 | 8 | $type = version_compare(PHP_VERSION, '7.0.0') >= 0 |
|
| 202 | 8 | ? "\Throwable" |
|
| 203 | 8 | : "\Exception"; |
|
| 204 | |||
| 205 | 8 | if ($return instanceof $type) { |
|
| 206 | 8 | throw $return; |
|
| 207 | } |
||
| 208 | |||
| 209 | return; |
||
|
|
|||
| 210 | } |
||
| 211 | |||
| 212 | /** |
||
| 213 | * Sets public properties with queued values to the mock object |
||
| 214 | * |
||
| 215 | * @param array $args |
||
| 216 | * @return mixed |
||
| 217 | */ |
||
| 218 | 251 | protected function _setValues() |
|
| 219 | { |
||
| 220 | 251 | foreach ($this->_setQueue as $name => &$values) { |
|
| 221 | 8 | if (count($values) > 0) { |
|
| 222 | 8 | $value = array_shift($values); |
|
| 223 | 8 | $this->_mock->{$name} = $value; |
|
| 224 | } |
||
| 225 | } |
||
| 226 | 251 | } |
|
| 227 | |||
| 228 | /** |
||
| 229 | * Fetch the return value for the matching args |
||
| 230 | * |
||
| 231 | * @param array $args |
||
| 232 | * @return mixed |
||
| 233 | */ |
||
| 234 | 258 | protected function _getReturnValue(array $args) |
|
| 235 | { |
||
| 236 | 258 | if (count($this->_closureQueue) > 1) { |
|
| 237 | return call_user_func_array(array_shift($this->_closureQueue), $args); |
||
| 238 | 258 | } elseif (count($this->_closureQueue) > 0) { |
|
| 239 | 1 | return call_user_func_array(current($this->_closureQueue), $args); |
|
| 240 | 257 | } elseif (count($this->_returnQueue) > 1) { |
|
| 241 | 5 | return array_shift($this->_returnQueue); |
|
| 242 | 256 | } elseif (count($this->_returnQueue) > 0) { |
|
| 243 | 110 | return current($this->_returnQueue); |
|
| 244 | } |
||
| 245 | |||
| 246 | 147 | return $this->_mock->mockery_returnValueForMethod($this->_name); |
|
| 247 | } |
||
| 248 | |||
| 249 | /** |
||
| 250 | * Checks if this expectation is eligible for additional calls |
||
| 251 | * |
||
| 252 | * @return bool |
||
| 253 | */ |
||
| 254 | 298 | public function isEligible() |
|
| 255 | { |
||
| 256 | 298 | foreach ($this->_countValidators as $validator) { |
|
| 257 | 138 | if (!$validator->isEligible($this->_actualCount)) { |
|
| 258 | 138 | return false; |
|
| 259 | } |
||
| 260 | } |
||
| 261 | 295 | return true; |
|
| 262 | } |
||
| 263 | |||
| 264 | /** |
||
| 265 | * Check if there is a constraint on call count |
||
| 266 | * |
||
| 267 | * @return bool |
||
| 268 | */ |
||
| 269 | public function isCallCountConstrained() |
||
| 270 | { |
||
| 271 | return (count($this->_countValidators) > 0); |
||
| 272 | } |
||
| 273 | |||
| 274 | /** |
||
| 275 | * Verify call order |
||
| 276 | * |
||
| 277 | * @return void |
||
| 278 | */ |
||
| 279 | 260 | public function validateOrder() |
|
| 280 | { |
||
| 281 | 260 | if ($this->_orderNumber) { |
|
| 282 | 15 | $this->_mock->mockery_validateOrder((string) $this, $this->_orderNumber, $this->_mock); |
|
| 283 | } |
||
| 284 | 260 | if ($this->_globalOrderNumber) { |
|
| 285 | 1 | $this->_mock->mockery_getContainer() |
|
| 286 | 1 | ->mockery_validateOrder((string) $this, $this->_globalOrderNumber, $this->_mock); |
|
| 287 | } |
||
| 288 | 260 | } |
|
| 289 | |||
| 290 | /** |
||
| 291 | * Verify this expectation |
||
| 292 | * |
||
| 293 | * @return bool |
||
| 294 | */ |
||
| 295 | 142 | public function verify() |
|
| 301 | |||
| 302 | /** |
||
| 303 | * Check if the registered expectation is a MultiArgumentClosureExpectation. |
||
| 304 | * @return bool |
||
| 305 | */ |
||
| 306 | 113 | private function isMultiArgumentClosureExpectation() |
|
| 307 | { |
||
| 308 | 113 | return (count($this->_expectedArgs) === 1 && ($this->_expectedArgs[0] instanceof \Mockery\Matcher\MultiArgumentClosure)); |
|
| 309 | } |
||
| 310 | |||
| 311 | /** |
||
| 312 | * Check if passed arguments match an argument expectation |
||
| 313 | * |
||
| 314 | * @param array $args |
||
| 315 | * @return bool |
||
| 316 | */ |
||
| 317 | 304 | public function matchArgs(array $args) |
|
| 318 | { |
||
| 319 | 304 | if (empty($this->_expectedArgs) && !$this->_noArgsExpectation) { |
|
| 320 | 195 | return true; |
|
| 321 | } |
||
| 322 | 113 | if ($this->isMultiArgumentClosureExpectation()) { |
|
| 323 | 6 | return $this->_matchArg($this->_expectedArgs[0], $args); |
|
| 324 | } |
||
| 325 | 107 | $argCount = count($args); |
|
| 326 | 107 | if ($argCount !== count($this->_expectedArgs)) { |
|
| 327 | 8 | return false; |
|
| 328 | } |
||
| 329 | 101 | for ($i=0; $i<$argCount; $i++) { |
|
| 330 | 99 | $param =& $args[$i]; |
|
| 331 | 99 | if (!$this->_matchArg($this->_expectedArgs[$i], $param)) { |
|
| 332 | 45 | return false; |
|
| 333 | } |
||
| 334 | } |
||
| 335 | |||
| 336 | 65 | return true; |
|
| 337 | } |
||
| 338 | |||
| 339 | /** |
||
| 340 | * Check if passed argument matches an argument expectation |
||
| 341 | * |
||
| 342 | * @param mixed $expected |
||
| 343 | * @param mixed &$actual |
||
| 344 | * @return bool |
||
| 345 | */ |
||
| 346 | 105 | protected function _matchArg($expected, &$actual) |
|
| 347 | { |
||
| 348 | 105 | if ($expected === $actual) { |
|
| 349 | 28 | return true; |
|
| 350 | } |
||
| 351 | 89 | if (!is_object($expected) && !is_object($actual) && $expected == $actual) { |
|
| 352 | return true; |
||
| 353 | } |
||
| 354 | 89 | if (is_string($expected) && !is_array($actual) && !is_object($actual)) { |
|
| 355 | # push/pop an error handler here to to make sure no error/exception thrown if $expected is not a regex |
||
| 356 | 6 | set_error_handler(function () { |
|
| 357 | 6 | }); |
|
| 358 | 6 | $result = preg_match($expected, (string) $actual); |
|
| 359 | 6 | restore_error_handler(); |
|
| 360 | |||
| 361 | 6 | if ($result) { |
|
| 362 | 3 | return true; |
|
| 363 | } |
||
| 364 | } |
||
| 365 | 88 | if (is_string($expected) && is_object($actual)) { |
|
| 366 | 1 | $result = $actual instanceof $expected; |
|
| 367 | 1 | if ($result) { |
|
| 368 | 1 | return true; |
|
| 369 | } |
||
| 370 | } |
||
| 371 | 87 | if ($expected instanceof \Mockery\Matcher\MatcherAbstract) { |
|
| 372 | 66 | return $expected->match($actual); |
|
| 373 | } |
||
| 374 | 21 | if ($expected instanceof \Hamcrest\Matcher || $expected instanceof \Hamcrest_Matcher) { |
|
| 375 | 3 | return $expected->matches($actual); |
|
| 376 | } |
||
| 377 | 18 | return false; |
|
| 378 | } |
||
| 379 | |||
| 380 | /** |
||
| 381 | * Expected argument setter for the expectation |
||
| 382 | * |
||
| 383 | * @param mixed ... |
||
| 384 | * @return self |
||
| 385 | */ |
||
| 386 | 129 | public function with() |
|
| 387 | { |
||
| 388 | 129 | return $this->withArgs(func_get_args()); |
|
| 389 | } |
||
| 390 | |||
| 391 | /** |
||
| 392 | * Expected arguments for the expectation passed as an array |
||
| 393 | * |
||
| 394 | * @param array $arguments |
||
| 395 | * @return self |
||
| 396 | */ |
||
| 397 | 134 | private function withArgsInArray(array $arguments) |
|
| 398 | { |
||
| 399 | 134 | if (empty($arguments)) { |
|
| 400 | 2 | return $this->withNoArgs(); |
|
| 401 | } |
||
| 402 | 132 | $this->_expectedArgs = $arguments; |
|
| 403 | 132 | $this->_noArgsExpectation = false; |
|
| 404 | 132 | return $this; |
|
| 405 | } |
||
| 406 | |||
| 407 | /** |
||
| 408 | * Expected arguments have to be matched by the given closure. |
||
| 409 | * |
||
| 410 | * @param Closure $closure |
||
| 411 | * @return self |
||
| 412 | */ |
||
| 413 | 6 | private function withArgsMatchedByClosure(Closure $closure) |
|
| 414 | { |
||
| 415 | 6 | $this->_expectedArgs = [new MultiArgumentClosure($closure)]; |
|
| 416 | 6 | $this->_noArgsExpectation = false; |
|
| 417 | 6 | return $this; |
|
| 418 | } |
||
| 419 | |||
| 420 | /** |
||
| 421 | * Expected arguments for the expectation passed as an array or a closure that matches each passed argument on |
||
| 422 | * each function call. |
||
| 423 | * |
||
| 424 | * @param array|Closure $argsOrClosure |
||
| 425 | * @return self |
||
| 426 | */ |
||
| 427 | 141 | public function withArgs($argsOrClosure) |
|
| 428 | { |
||
| 429 | 141 | if (is_array($argsOrClosure)) { |
|
| 430 | 134 | $this->withArgsInArray($argsOrClosure); |
|
| 431 | } elseif ($argsOrClosure instanceof Closure) { |
||
| 432 | 6 | $this->withArgsMatchedByClosure($argsOrClosure); |
|
| 433 | } else { |
||
| 434 | 1 | throw new \InvalidArgumentException(sprintf('Call to %s with an invalid argument (%s), only array and '. |
|
| 435 | 1 | 'closure are allowed', __METHOD__, $argsOrClosure)); |
|
| 436 | } |
||
| 437 | 140 | return $this; |
|
| 438 | } |
||
| 439 | |||
| 440 | /** |
||
| 441 | * Set with() as no arguments expected |
||
| 442 | * |
||
| 443 | * @return self |
||
| 444 | */ |
||
| 445 | 6 | public function withNoArgs() |
|
| 446 | { |
||
| 447 | 6 | $this->_noArgsExpectation = true; |
|
| 448 | 6 | $this->_expectedArgs = []; |
|
| 449 | 6 | return $this; |
|
| 450 | } |
||
| 451 | |||
| 452 | /** |
||
| 453 | * Set expectation that any arguments are acceptable |
||
| 454 | * |
||
| 455 | * @return self |
||
| 456 | */ |
||
| 457 | 2 | public function withAnyArgs() |
|
| 458 | { |
||
| 459 | 2 | $this->_expectedArgs = array(); |
|
| 460 | 2 | return $this; |
|
| 461 | } |
||
| 462 | |||
| 463 | /** |
||
| 464 | * Set a return value, or sequential queue of return values |
||
| 465 | * |
||
| 466 | * @param mixed ... |
||
| 467 | * @return self |
||
| 468 | */ |
||
| 469 | 123 | public function andReturn() |
|
| 470 | { |
||
| 471 | 123 | $this->_returnQueue = func_get_args(); |
|
| 472 | 123 | return $this; |
|
| 473 | } |
||
| 474 | |||
| 475 | /** |
||
| 476 | * Return this mock, like a fluent interface |
||
| 477 | * |
||
| 478 | * @return self |
||
| 479 | */ |
||
| 480 | 1 | public function andReturnSelf() |
|
| 481 | { |
||
| 482 | 1 | return $this->andReturn($this->_mock); |
|
| 483 | } |
||
| 484 | |||
| 485 | /** |
||
| 486 | * Set a sequential queue of return values with an array |
||
| 487 | * |
||
| 488 | * @param array $values |
||
| 489 | * @return self |
||
| 490 | */ |
||
| 491 | 2 | public function andReturnValues(array $values) |
|
| 492 | { |
||
| 493 | 2 | call_user_func_array(array($this, 'andReturn'), $values); |
|
| 494 | 2 | return $this; |
|
| 495 | } |
||
| 496 | |||
| 497 | /** |
||
| 498 | * Set a closure or sequence of closures with which to generate return |
||
| 499 | * values. The arguments passed to the expected method are passed to the |
||
| 500 | * closures as parameters. |
||
| 501 | * |
||
| 502 | * @param callable ... |
||
| 503 | * @return self |
||
| 504 | */ |
||
| 505 | 1 | public function andReturnUsing() |
|
| 506 | { |
||
| 507 | 1 | $this->_closureQueue = func_get_args(); |
|
| 508 | 1 | return $this; |
|
| 509 | } |
||
| 510 | |||
| 511 | /** |
||
| 512 | * Return a self-returning black hole object. |
||
| 513 | * |
||
| 514 | * @return self |
||
| 515 | */ |
||
| 516 | 1 | public function andReturnUndefined() |
|
| 517 | { |
||
| 518 | 1 | $this->andReturn(new \Mockery\Undefined); |
|
| 519 | 1 | return $this; |
|
| 520 | } |
||
| 521 | |||
| 522 | /** |
||
| 523 | * Return null. This is merely a language construct for Mock describing. |
||
| 524 | * |
||
| 525 | * @return self |
||
| 526 | */ |
||
| 527 | 1 | public function andReturnNull() |
|
| 531 | |||
| 532 | 1 | public function andReturnFalse() |
|
| 533 | { |
||
| 534 | 1 | return $this->andReturn(false); |
|
| 535 | } |
||
| 536 | |||
| 537 | 1 | public function andReturnTrue() |
|
| 538 | { |
||
| 539 | 1 | return $this->andReturn(true); |
|
| 540 | } |
||
| 541 | |||
| 542 | /** |
||
| 543 | * Set Exception class and arguments to that class to be thrown |
||
| 544 | * |
||
| 545 | * @param string|\Exception $exception |
||
| 546 | * @param string $message |
||
| 547 | * @param int $code |
||
| 548 | * @param \Exception $previous |
||
| 549 | * @return self |
||
| 550 | */ |
||
| 551 | 7 | public function andThrow($exception, $message = '', $code = 0, \Exception $previous = null) |
|
| 552 | { |
||
| 553 | 7 | $this->_throw = true; |
|
| 554 | 7 | if (is_object($exception)) { |
|
| 555 | 3 | $this->andReturn($exception); |
|
| 556 | } else { |
||
| 557 | 4 | $this->andReturn(new $exception($message, $code, $previous)); |
|
| 558 | } |
||
| 559 | 7 | return $this; |
|
| 560 | } |
||
| 561 | |||
| 562 | /** |
||
| 563 | * Set Exception classes to be thrown |
||
| 564 | * |
||
| 565 | * @param array $exceptions |
||
| 566 | * @return self |
||
| 567 | */ |
||
| 568 | 2 | public function andThrowExceptions(array $exceptions) |
|
| 569 | { |
||
| 570 | 2 | $this->_throw = true; |
|
| 571 | 2 | foreach ($exceptions as $exception) { |
|
| 572 | 2 | if (!is_object($exception)) { |
|
| 573 | 2 | throw new Exception('You must pass an array of exception objects to andThrowExceptions'); |
|
| 574 | } |
||
| 575 | } |
||
| 576 | 1 | return $this->andReturnValues($exceptions); |
|
| 577 | } |
||
| 578 | |||
| 579 | /** |
||
| 580 | * Register values to be set to a public property each time this expectation occurs |
||
| 581 | * |
||
| 582 | * @param string $name |
||
| 583 | * @param mixed $value |
||
| 584 | * @return self |
||
| 585 | */ |
||
| 586 | 8 | public function andSet($name, $value) |
|
| 587 | { |
||
| 588 | 8 | $values = func_get_args(); |
|
| 589 | 8 | array_shift($values); |
|
| 590 | 8 | $this->_setQueue[$name] = $values; |
|
| 591 | 8 | return $this; |
|
| 592 | } |
||
| 593 | |||
| 594 | /** |
||
| 595 | * Alias to andSet(). Allows the natural English construct |
||
| 596 | * - set('foo', 'bar')->andReturn('bar') |
||
| 597 | * |
||
| 598 | * @param string $name |
||
| 599 | * @param mixed $value |
||
| 600 | * @return self |
||
| 601 | */ |
||
| 602 | 3 | public function set($name, $value) |
|
| 603 | { |
||
| 604 | 3 | return call_user_func_array(array($this, 'andSet'), func_get_args()); |
|
| 605 | } |
||
| 606 | |||
| 607 | /** |
||
| 608 | * Indicates this expectation should occur zero or more times |
||
| 609 | * |
||
| 610 | * @return self |
||
| 611 | */ |
||
| 612 | 2 | public function zeroOrMoreTimes() |
|
| 613 | { |
||
| 614 | 2 | $this->atLeast()->never(); |
|
| 615 | 2 | } |
|
| 616 | |||
| 617 | /** |
||
| 618 | * Indicates the number of times this expectation should occur |
||
| 619 | * |
||
| 620 | * @param int $limit |
||
| 621 | * @throws InvalidArgumentException |
||
| 622 | * @return self |
||
| 623 | */ |
||
| 624 | 156 | public function times($limit = null) |
|
| 625 | { |
||
| 626 | 156 | if (is_null($limit)) { |
|
| 627 | return $this; |
||
| 628 | } |
||
| 629 | 156 | if (!is_int($limit)) { |
|
| 630 | 1 | throw new \InvalidArgumentException('The passed Times limit should be an integer value'); |
|
| 631 | } |
||
| 632 | 155 | $this->_countValidators[] = new $this->_countValidatorClass($this, $limit); |
|
| 633 | 155 | $this->_countValidatorClass = 'Mockery\CountValidator\Exact'; |
|
| 634 | 155 | return $this; |
|
| 635 | } |
||
| 636 | |||
| 637 | /** |
||
| 638 | * Indicates that this expectation is never expected to be called |
||
| 639 | * |
||
| 640 | * @return self |
||
| 641 | */ |
||
| 642 | 38 | public function never() |
|
| 643 | { |
||
| 644 | 38 | return $this->times(0); |
|
| 645 | } |
||
| 646 | |||
| 647 | /** |
||
| 648 | * Indicates that this expectation is expected exactly once |
||
| 649 | * |
||
| 650 | * @return self |
||
| 651 | */ |
||
| 652 | 106 | public function once() |
|
| 653 | { |
||
| 654 | 106 | return $this->times(1); |
|
| 655 | } |
||
| 656 | |||
| 657 | /** |
||
| 658 | * Indicates that this expectation is expected exactly twice |
||
| 659 | * |
||
| 660 | * @return self |
||
| 661 | */ |
||
| 662 | 18 | public function twice() |
|
| 666 | |||
| 667 | /** |
||
| 668 | * Sets next count validator to the AtLeast instance |
||
| 669 | * |
||
| 670 | * @return self |
||
| 671 | */ |
||
| 672 | 14 | public function atLeast() |
|
| 673 | { |
||
| 674 | 14 | $this->_countValidatorClass = 'Mockery\CountValidator\AtLeast'; |
|
| 675 | 14 | return $this; |
|
| 676 | } |
||
| 677 | |||
| 678 | /** |
||
| 679 | * Sets next count validator to the AtMost instance |
||
| 680 | * |
||
| 681 | * @return self |
||
| 682 | */ |
||
| 683 | 7 | public function atMost() |
|
| 684 | { |
||
| 685 | 7 | $this->_countValidatorClass = 'Mockery\CountValidator\AtMost'; |
|
| 686 | 7 | return $this; |
|
| 687 | } |
||
| 688 | |||
| 689 | /** |
||
| 690 | * Shorthand for setting minimum and maximum constraints on call counts |
||
| 691 | * |
||
| 692 | * @param int $minimum |
||
| 693 | * @param int $maximum |
||
| 694 | */ |
||
| 695 | public function between($minimum, $maximum) |
||
| 696 | { |
||
| 697 | return $this->atLeast()->times($minimum)->atMost()->times($maximum); |
||
| 698 | } |
||
| 699 | |||
| 700 | /** |
||
| 701 | * Indicates that this expectation must be called in a specific given order |
||
| 702 | * |
||
| 703 | * @param string $group Name of the ordered group |
||
| 704 | * @return self |
||
| 705 | */ |
||
| 706 | 17 | public function ordered($group = null) |
|
| 707 | { |
||
| 708 | 17 | if ($this->_globally) { |
|
| 709 | 1 | $this->_globalOrderNumber = $this->_defineOrdered($group, $this->_mock->mockery_getContainer()); |
|
| 710 | } else { |
||
| 711 | 16 | $this->_orderNumber = $this->_defineOrdered($group, $this->_mock); |
|
| 712 | } |
||
| 713 | 17 | $this->_globally = false; |
|
| 714 | 17 | return $this; |
|
| 715 | } |
||
| 716 | |||
| 717 | /** |
||
| 718 | * Indicates call order should apply globally |
||
| 719 | * |
||
| 720 | * @return self |
||
| 721 | */ |
||
| 722 | 1 | public function globally() |
|
| 723 | { |
||
| 724 | 1 | $this->_globally = true; |
|
| 725 | 1 | return $this; |
|
| 726 | } |
||
| 727 | |||
| 728 | /** |
||
| 729 | * Setup the ordering tracking on the mock or mock container |
||
| 730 | * |
||
| 731 | * @param string $group |
||
| 732 | * @param object $ordering |
||
| 733 | * @return int |
||
| 734 | */ |
||
| 735 | 17 | protected function _defineOrdered($group, $ordering) |
|
| 736 | { |
||
| 737 | 17 | $groups = $ordering->mockery_getGroups(); |
|
| 738 | 17 | if (is_null($group)) { |
|
| 739 | 16 | $result = $ordering->mockery_allocateOrder(); |
|
| 740 | 4 | } elseif (isset($groups[$group])) { |
|
| 741 | 2 | $result = $groups[$group]; |
|
| 742 | } else { |
||
| 743 | 4 | $result = $ordering->mockery_allocateOrder(); |
|
| 744 | 4 | $ordering->mockery_setGroup($group, $result); |
|
| 745 | } |
||
| 746 | 17 | return $result; |
|
| 747 | } |
||
| 748 | |||
| 749 | /** |
||
| 750 | * Return order number |
||
| 751 | * |
||
| 752 | * @return int |
||
| 753 | */ |
||
| 754 | 1 | public function getOrderNumber() |
|
| 758 | |||
| 759 | /** |
||
| 760 | * Mark this expectation as being a default |
||
| 761 | * |
||
| 762 | * @return self |
||
| 763 | */ |
||
| 764 | 33 | public function byDefault() |
|
| 765 | { |
||
| 766 | 33 | $director = $this->_mock->mockery_getExpectationsFor($this->_name); |
|
| 767 | 33 | if (!empty($director)) { |
|
| 768 | 33 | $director->makeExpectationDefault($this); |
|
| 769 | } |
||
| 770 | 32 | return $this; |
|
| 771 | } |
||
| 772 | |||
| 773 | /** |
||
| 774 | * Return the parent mock of the expectation |
||
| 775 | * |
||
| 776 | * @return \Mockery\MockInterface |
||
| 777 | */ |
||
| 778 | 27 | public function getMock() |
|
| 779 | { |
||
| 780 | 27 | return $this->_mock; |
|
| 781 | } |
||
| 782 | |||
| 783 | /** |
||
| 784 | * Flag this expectation as calling the original class method with the |
||
| 785 | * any provided arguments instead of using a return value queue. |
||
| 786 | * |
||
| 787 | * @return self |
||
| 788 | */ |
||
| 789 | 3 | public function passthru() |
|
| 800 | |||
| 801 | /** |
||
| 802 | * Cloning logic |
||
| 803 | * |
||
| 804 | */ |
||
| 805 | 9 | public function __clone() |
|
| 806 | { |
||
| 807 | 9 | $newValidators = array(); |
|
| 808 | 9 | $countValidators = $this->_countValidators; |
|
| 809 | 9 | foreach ($countValidators as $validator) { |
|
| 810 | 6 | $newValidators[] = clone $validator; |
|
| 811 | } |
||
| 812 | 9 | $this->_countValidators = $newValidators; |
|
| 813 | 9 | } |
|
| 814 | |||
| 815 | 6 | public function getName() |
|
| 819 | } |
||
| 820 |