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 TMC2209串口模式下读取不到寄存器的值串口助手蓝色字体是发过去的消息,绿色字体是收到的消息,第二行发送读取寄存器的指令但是没有读取到寄存器的值串口助手如下图:接线如下图,如何解决?
  • ¥30 itest不允许查看成绩怎么办
  • ¥15 高通安卓11提取完整线刷包软件,或者优博讯dt50顺丰刷机包
  • ¥20 C,有个译码器,换了信道就跑不出原来数据
  • ¥15 MIMIC数据库安装问题
  • ¥60 基于JTag协议开发Fpga下载器上位机,哪位大🐂有偿指导?
  • ¥20 全书网Java爬取数据
  • ¥15 怎么获取红包封面的原始链接,并且获取红包封面序列号
  • ¥100 微信小程序跑脚本授权的问题
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏