123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- class Yay_Expectations implements Yay_InvocationRecorder
- {
-
-
-
- private $_expectations = array();
-
-
-
- private $_currentEndpoint;
-
-
-
- final public static function create()
- {
- return new self();
- }
-
-
-
- public function one(Yay_MockObject $mock)
- {
- return $this->exactly(1)->of($mock);
- }
-
-
-
- public function exactly($n)
- {
- return $this->_setEndpoint(new Yay_Expectations_ExactlyExpectation($n));
- }
-
-
-
- public function atLeast($n)
- {
- return $this->_setEndpoint(new Yay_Expectations_AtLeastExpectation($n));
- }
-
-
-
- public function atMost($n)
- {
- return $this->_setEndpoint(new Yay_Expectations_AtMostExpectation($n));
- }
-
-
-
- public function between($min, $max)
- {
- return $this->_setEndpoint(new Yay_Expectations_BetweenExpectation($min, $max));
- }
-
-
-
- public function ignoring(Yay_MockObject $mock)
- {
- return $this->atLeast(0)->of($mock);
- }
-
-
-
- public function allowing(Yay_MockObject $mock)
- {
- return $this->ignoring($mock);
- }
-
-
-
- public function never(Yay_MockObject $mock)
- {
- return $this->exactly(0)->of($mock);
- }
-
-
-
- public function of(Yay_MockObject $mock)
- {
- $this->_getEndpoint()->of($mock);
- return new Yay_InvocationProxy($this, $mock);
- }
-
-
-
- public function will(Yay_Action $action)
- {
- $this->_getEndpoint()->will($action);
- return $this;
- }
-
-
-
- public function when(Yay_StatePredicate $predicate)
- {
- $this->_getEndpoint()->when($predicate);
- return $this;
- }
-
-
-
- public function then(Yay_State $state)
- {
- $this->_getEndpoint()->then($state);
- return $this;
- }
-
-
-
- public function inSequence(Yay_Sequence $seq)
- {
- $this->_getEndpoint()->inSequence($seq);
- return $this;
- }
-
-
-
- public function returns($value)
- {
- $this->_getEndpoint()->will(new Yay_Actions_ReturnValueAction($value));
- return $this;
- }
-
-
-
- public function returnsReference(&$ref)
- {
- $this->_getEndpoint()->will(new Yay_Actions_ReturnReferenceAction($ref));
- return $this;
- }
-
-
-
- public function throws(Exception $e)
- {
- $this->_getEndpoint()->will(new Yay_Actions_ThrowAction($e));
- return $this;
- }
-
-
-
- public function calls($callback)
- {
- $this->_getEndpoint()->will(new Yay_Actions_CallbackAction($callback));
- return $this;
- }
-
-
-
- public function recordInvocation(Yay_Invocation $invocation)
- {
- $this->_getEndpoint()->recordInvocation($invocation);
- }
-
-
-
- public function getExpectations()
- {
- return $this->_expectations;
- }
-
-
-
-
-
- private function _setEndpoint(Yay_Expectation $expectation)
- {
- $this->_expectations[] = $expectation;
- $this->_currentEndpoint = $expectation;
- return $this;
- }
-
-
-
- private function _getEndpoint()
- {
- if (!isset($this->_currentEndpoint))
- {
- throw new BadMethodCallException(
- 'No cardinality clause has yet been made. First call one(), atLeast(), ' .
- 'atMost(), exactly(), between(), ignoring(), allowing() or never() ' .
- 'before performing this operation.'
- );
- }
- else
- {
- return $this->_currentEndpoint;
- }
- }
-
- }
|