1

我正在尝试用 groovy 为用 java 编写的类编写一个测试用例。Java 类(名称:Helper)中有一个静态方法,其中获取 HttpClient 对象并在其上调用 executeMethod。为了对这个类进行单元测试,我试图在常规测试用例中模拟这个 httpClient.executeMethod(),但不能正确模拟它。

下面是Java类

public class Helper{

    public static message(final String serviceUrl){   

        HttpClient httpclient = new HttpClient();
        HttpMethod httpmethod = new HttpMethod();

        // the below is the line that iam trying to mock
        String code = httpClient.executeMethod(method);

    }
}

关于如何从 groovy 对这个静态方法进行单元测试的任何想法。由于 httpClient 对象是类方法中的对象,我如何在 groovy 测试用例中模拟这个对象?

这是我到目前为止的测试用例。我试图模拟为空,但没有发生......

void testSendMessage(){
    def serviceUrl = properties.getProperty("ITEM").toString()

    // mocking to return null   
    def mockJobServiceFactory = new MockFor(HttpClient)
    mockJobServiceFactory.demand.executeMethod{ HttpMethod str ->
        return null
    }

    mockJobServiceFactory.use {         
        def responseXml = helper.message(serviceUrl)

    }   
}
4

1 回答 1

0

您可以使用

HttpClient.metaClass.executeMethod = {Type name -> doSomething}

您需要使用正确的Type即 String、Map 等声明闭包签名。

void testSendMessage(){
    def serviceUrl = properties.getProperty("ITEM").toString()

    // mocking to return null   
    HttpClient.metaClass.executeMethod = {HttpMethod str -> null}
    def responseXml = helper.message(serviceUrl)

}
于 2012-08-31T15:51:40.357 回答