douhulao7642 2013-12-24 11:54
浏览 43
已采纳

PHPUnit中的模拟对象有什么意义?

I'm developing a intern app which send some emails in a view methods. Now I'm rebuilding this app TDD-style but I'm stuck at some point. I searched the web for how to test emails with PHPUnit and the solution was, use mock objects. I read some articles and tutorials about it and built a test with a mock object.

The test passed but I don't understand why should use a mock object if you already know the result. I mean, if you already know the result you don't see the failure on your real method? So is this not the way to test methods which use the email function or am I just doing it wrong? Probably the second one haha.

Thanks in advance,

Sjors

  • 写回答

2条回答 默认 最新

  • dou72260 2013-12-24 12:21
    关注

    When you are unit testing you should be trying to test your method under test (unit of work under test) in isolation from the rest of your system. As soon as you are forced to cross a system boundary, your unit test becomes an integration test. Integration tests tend to be more fragile, harder write and harder to maintain. By isolating the mailing component from the method that creates the mail you no longer need to rely on whether the mailing system is up and running when you unit test runs. You are free to test the logic in the method under test without having to depend on a concrete implementation.

    There are two categories of mock tests, interaction tests and state based tests. I'd suggest looking up the difference between the two on google.

    I am unfortunately not familiar with the syntax of php to I can only show you an example of what you might be testing in your case using C# syntax, but I am sure you will be able to follow the code.

    public interface Mailer
    {
      void Send(string to, string from, string subject, string body)
    }
    

    The above interface would be one that matches the signature of your mailing component that actually sends the mail (it knows about smtp etc).

    public class MailSender
    {
      private IMailer _mailer;
      public MailSender(IMailer mailer)
      {
        _mailer = mailer;
      }
    
      public void GenerateMail(string to, string cc, string from, string subject, string body)
      {
        if (IsValidEmailAddress(to) == false) throw new InvalidEmailAddressException("To"); 
        if (IsEmptySubject(from) == false) throw new EmptySubjectException();    
        _mailer.Send(to, from, subject, body);
      }
    
      private bool IsValidEmailAddress(string emailAddress)
      {
        // some code/regex to check that the email address is valid
      }
    
      private boold IsEmptySubject(string subject)
      {
        // code to check if the subject is empty
      }
    }
    

    Now we have logic in the GenerateMail method. You can write unit tests to check if you get exceptions for invalid email addresses and an empty subject and you can also write a unit test to ensure that if you have valid email addresses and a subject that is not empty the send method is called on the mocked mail sender with the correct information in each of the parameters. This type of unit test would an interaction test as the mock is just verifying that the method was called).

    Hope this explanation helps.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别
  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?