MockHandler.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?php
  2. namespace Aws;
  3. use Aws\Exception\AwsException;
  4. use GuzzleHttp\Promise;
  5. use GuzzleHttp\Promise\RejectedPromise;
  6. use Psr\Http\Message\RequestInterface;
  7. use Exception;
  8. /**
  9. * Returns promises that are rejected or fulfilled using a queue of
  10. * Aws\ResultInterface and Aws\Exception\AwsException objects.
  11. */
  12. class MockHandler implements \Countable
  13. {
  14. private $queue;
  15. private $lastCommand;
  16. private $lastRequest;
  17. private $onFulfilled;
  18. private $onRejected;
  19. /**
  20. * The passed in value must be an array of {@see Aws\ResultInterface} or
  21. * {@see AwsException} objects that acts as a queue of results or
  22. * exceptions to return each time the handler is invoked.
  23. *
  24. * @param array $resultOrQueue
  25. * @param callable $onFulfilled Callback to invoke when the return value is fulfilled.
  26. * @param callable $onRejected Callback to invoke when the return value is rejected.
  27. */
  28. public function __construct(
  29. array $resultOrQueue = [],
  30. callable $onFulfilled = null,
  31. callable $onRejected = null
  32. ) {
  33. $this->queue = [];
  34. $this->onFulfilled = $onFulfilled;
  35. $this->onRejected = $onRejected;
  36. if ($resultOrQueue) {
  37. call_user_func_array([$this, 'append'], array_values($resultOrQueue));
  38. }
  39. }
  40. /**
  41. * Adds one or more variadic ResultInterface or AwsException objects to the
  42. * queue.
  43. */
  44. public function append()
  45. {
  46. foreach (func_get_args() as $value) {
  47. if ($value instanceof ResultInterface
  48. || $value instanceof Exception
  49. || is_callable($value)
  50. ) {
  51. $this->queue[] = $value;
  52. } else {
  53. throw new \InvalidArgumentException('Expected an Aws\ResultInterface or Exception.');
  54. }
  55. }
  56. }
  57. /**
  58. * Adds one or more \Exception or \Throwable to the queue
  59. */
  60. public function appendException()
  61. {
  62. foreach (func_get_args() as $value) {
  63. if ($value instanceof \Exception || $value instanceof \Throwable) {
  64. $this->queue[] = $value;
  65. } else {
  66. throw new \InvalidArgumentException('Expected an \Exception or \Throwable.');
  67. }
  68. }
  69. }
  70. public function __invoke(
  71. CommandInterface $command,
  72. RequestInterface $request
  73. ) {
  74. if (!$this->queue) {
  75. $last = $this->lastCommand
  76. ? ' The last command sent was ' . $this->lastCommand->getName() . '.'
  77. : '';
  78. throw new \RuntimeException('Mock queue is empty. Trying to send a '
  79. . $command->getName() . ' command failed.' . $last);
  80. }
  81. $this->lastCommand = $command;
  82. $this->lastRequest = $request;
  83. $result = array_shift($this->queue);
  84. if (is_callable($result)) {
  85. $result = $result($command, $request);
  86. }
  87. if ($result instanceof \Exception) {
  88. $result = new RejectedPromise($result);
  89. } else {
  90. // Add an effective URI and statusCode if not present.
  91. $meta = $result['@metadata'];
  92. if (!isset($meta['effectiveUri'])) {
  93. $meta['effectiveUri'] = (string) $request->getUri();
  94. }
  95. if (!isset($meta['statusCode'])) {
  96. $meta['statusCode'] = 200;
  97. }
  98. $result['@metadata'] = $meta;
  99. $result = Promise\Create::promiseFor($result);
  100. }
  101. $result->then($this->onFulfilled, $this->onRejected);
  102. return $result;
  103. }
  104. /**
  105. * Get the last received request.
  106. *
  107. * @return RequestInterface
  108. */
  109. public function getLastRequest()
  110. {
  111. return $this->lastRequest;
  112. }
  113. /**
  114. * Get the last received command.
  115. *
  116. * @return CommandInterface
  117. */
  118. public function getLastCommand()
  119. {
  120. return $this->lastCommand;
  121. }
  122. /**
  123. * Returns the number of remaining items in the queue.
  124. *
  125. * @return int
  126. */
  127. #[\ReturnTypeWillChange]
  128. public function count()
  129. {
  130. return count($this->queue);
  131. }
  132. }