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条)

报告相同问题?

悬赏问题

  • ¥15 统计大规模图中的完全子图问题
  • ¥15 使用LM2596制作降压电路,一个能运行,一个不能
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路
  • ¥15 经gamit解算的cors站数据再经globk网平差得到的坐标做形变分析
  • ¥15 phython读取excel表格报错 ^7个 SyntaxError: invalid syntax 语句报错
  • ¥20 @microsoft/fetch-event-source 流式响应问题
  • ¥15 ogg dd trandata 报错
  • ¥15 高缺失率数据如何选择填充方式