微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

单元测试 – Groovy HTTPBuilder模拟响应

我想弄清楚如何为我要编写的服务编写我的测试用例.

该服务将使用HTTPBuilder从某个URL请求响应. HTTPBuilder请求只需要检查响应是否成功.服务实现将是如此简单:

boolean isOk() {
    httpBuilder.request(GET) {
        response.success = { return true }
        response.failure = { return false }
    }
}

所以,我希望能够模拟HTTPBuilder,以便我可以在我的测试中将响应设置为成功/失败,这样我就可以断言我的服务的isOk方法在响应成功时返回True而在响应时返回False是失败的.

任何人都可以帮助我如何模拟HTTPBuilder请求并在GroovyTestCase中设置响应?

解决方法

这是一个处理测试用例的模拟HttpBuilder的最小示例:

class MockHttpBuilder {
    def result
    def requestDelegate = [response: [:]]

    def request(Method method,Closure body) {
        body.delegate = requestDelegate
        body.call()
        if (result)
            requestDelegate.response.success()
        else
            requestDelegate.response.failure()
    }
}

如果结果字段为true,它将调用成功闭包,否则失败.

编辑:这是使用MockFor而不是模拟类的示例:

import groovy.mock.interceptor.MockFor

def requestDelegate = [response: [:]]
def mock = new MockFor(HttpBuilder)
mock.demand.request { Method method,Closure body ->
    body.delegate = requestDelegate
    body.call()
    requestDelegate.response.success() // or failure depending on what's being tested
}
mock.use {
    assert isOk() == true
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐