mock.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. /**
  3. * Mock implementation
  4. *
  5. * PHP versions 4 and 5
  6. *
  7. * LICENSE:
  8. *
  9. * Copyright (c) 2010 Chuck Hagenbuch
  10. * All rights reserved.
  11. *
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions
  14. * are met:
  15. *
  16. * o Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. * o Redistributions in binary form must reproduce the above copyright
  19. * notice, this list of conditions and the following disclaimer in the
  20. * documentation and/or other materials provided with the distribution.
  21. * o The names of the authors may not be used to endorse or promote
  22. * products derived from this software without specific prior written
  23. * permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  26. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  27. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  28. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  29. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  30. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  31. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  32. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  33. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  34. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  35. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. *
  37. * @category Mail
  38. * @package Mail
  39. * @author Chuck Hagenbuch <chuck@horde.org>
  40. * @copyright 2010 Chuck Hagenbuch
  41. * @license http://opensource.org/licenses/bsd-license.php New BSD License
  42. * @version CVS: $Id: mock.php 294747 2010-02-08 08:18:33Z clockwerx $
  43. * @link http://pear.php.net/package/Mail/
  44. */
  45. /**
  46. * Mock implementation of the PEAR Mail:: interface for testing.
  47. * @access public
  48. * @package Mail
  49. * @version $Revision: 294747 $
  50. */
  51. class Mail_mock extends Mail {
  52. /**
  53. * Array of messages that have been sent with the mock.
  54. *
  55. * @var array
  56. * @access public
  57. */
  58. var $sentMessages = array();
  59. /**
  60. * Callback before sending mail.
  61. *
  62. * @var callback
  63. */
  64. var $_preSendCallback;
  65. /**
  66. * Callback after sending mai.
  67. *
  68. * @var callback
  69. */
  70. var $_postSendCallback;
  71. /**
  72. * Constructor.
  73. *
  74. * Instantiates a new Mail_mock:: object based on the parameters
  75. * passed in. It looks for the following parameters, both optional:
  76. * preSendCallback Called before an email would be sent.
  77. * postSendCallback Called after an email would have been sent.
  78. *
  79. * @param array Hash containing any parameters.
  80. * @access public
  81. */
  82. function Mail_mock($params)
  83. {
  84. if (isset($params['preSendCallback']) &&
  85. is_callable($params['preSendCallback'])) {
  86. $this->_preSendCallback = $params['preSendCallback'];
  87. }
  88. if (isset($params['postSendCallback']) &&
  89. is_callable($params['postSendCallback'])) {
  90. $this->_postSendCallback = $params['postSendCallback'];
  91. }
  92. }
  93. /**
  94. * Implements Mail_mock::send() function. Silently discards all
  95. * mail.
  96. *
  97. * @param mixed $recipients Either a comma-seperated list of recipients
  98. * (RFC822 compliant), or an array of recipients,
  99. * each RFC822 valid. This may contain recipients not
  100. * specified in the headers, for Bcc:, resending
  101. * messages, etc.
  102. *
  103. * @param array $headers The array of headers to send with the mail, in an
  104. * associative array, where the array key is the
  105. * header name (ie, 'Subject'), and the array value
  106. * is the header value (ie, 'test'). The header
  107. * produced from those values would be 'Subject:
  108. * test'.
  109. *
  110. * @param string $body The full text of the message body, including any
  111. * Mime parts, etc.
  112. *
  113. * @return mixed Returns true on success, or a PEAR_Error
  114. * containing a descriptive error message on
  115. * failure.
  116. * @access public
  117. */
  118. function send($recipients, $headers, $body)
  119. {
  120. if ($this->_preSendCallback) {
  121. call_user_func_array($this->_preSendCallback,
  122. array(&$this, $recipients, $headers, $body));
  123. }
  124. $entry = array('recipients' => $recipients, 'headers' => $headers, 'body' => $body);
  125. $this->sentMessages[] = $entry;
  126. if ($this->_postSendCallback) {
  127. call_user_func_array($this->_postSendCallback,
  128. array(&$this, $recipients, $headers, $body));
  129. }
  130. return true;
  131. }
  132. }