美文网首页软件自动化测试
Java_UT_Mock系列之Spring+Powermock

Java_UT_Mock系列之Spring+Powermock

作者: antony已经被占用 | 来源:发表于2018-08-02 22:27 被阅读0次

    在SpringMVC/SpringBoot 的项目中,虽然Service层的测试通过Mockito可以涵盖绝大部分的场景,但是还是有少数的场景需要用到Powermock。 本文记录一下在Spring中引入Powermock时候遇到的一些坑。

    PowerMockRunner vs PowerMockRule

    在一开始,考虑到Sping 的用例都需要SpringJUnit4ClassRunner作为运行器,所以考虑用PowerMockRule来规避需要两个Runner的问题

    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(location= "classpath:root-context.xml" })
    @PrepareForTest({ StaticClass.class })
    public class MyTestClass{
    
    @Rule
    public PowerMockRule rule = new PowerMockRule();
       @Before
        public void setup() {
            PowerMockito.mockStatic(StaticClass.class);
    
        }
    }
    

    结果发现,SpringJUnit4ClassRunner 和PowerMockRule 存在冲突。
    https://groups.google.com/forum/%23!msg/powermock/bmH8osYhsbQ/gT4-J32T5QkJ
    在参考了一下的帖子后这部分问题解决了
    https://stackoverflow.com/questions/34147060/cannot-run-powermockrule-with-springjunit4classrunner-in-spring-boot-project

    @RunWith(PowerMockRunner.class)
    @PowerMockRunnerDelegate(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(location= "classpath:root-context.xml" })
    @PrepareForTest({ StaticClass.class })
    public class MyTestClass{
       @Before
        public void setup() {
            PowerMockito.mockStatic(StaticClass.class);
        }
    }
    

    PowerMockIgnore

    在使用上述配置后,依旧存在关于classloader相关的报错。经查询后,发现有如下的问题
    https://github.com/powermock/powermock/issues/735

    需要根据报错情况,把有冲突的类给ignore掉。如下案例:

    @RunWith(PowerMockRunner.class) 
    @PowerMockRunnerDelegate(SpringRunner.class)
    @PowerMockIgnore(value= "javax.net.ssl.*","javax.net.SocketFactory"})
    

    ContextConfiguration

    在上述操作完成后,发现在Context的load过程中,首先由于该系统依赖各种中间件、数据库等第三方应用,耗时超过10s才能把容器中的各项应用load完成。另外一方面,由于应用的用户鉴权、连接失败等原因,导致applicationContext启动失败。
    因此,只有通过ContextConfiguration将本次测试所需要的class导入进来。
    这样做的好处是速度快,时间:1s VS (10-30)s
    问题在于,由于每个被测对象所依赖的class各不相同,所以需要为每个测试类加上所需要的依赖。

    相关文章

      网友评论

        本文标题:Java_UT_Mock系列之Spring+Powermock

        本文链接:https://www.haomeiwen.com/subject/pycevftx.html