如何断言两个闭包的相等性

时间:2013-08-21 00:29:42

标签: groovy

在我的工作中,我有方法将闭包作为标记构建器的输入返回。因此,出于测试目的,我们可以进行预期的闭包并断言预期的闭包等于一个方法返回的闭包吗?我尝试了以下代码,但断言失败了。

a = {
    foo {
        bar {
            input( type : 'int', name : 'dum', 'hello world' )
        }
    }
}

b = {
    foo {
        bar {
            input( type : 'int', name : 'dum', 'hello world' )
        }
    }
}

assert a == b

1 个答案:

答案 0 :(得分:2)

我认为即使在调用它们之后断言闭包也是不可行的。

//Since you have Markup elements in closure 
//it would not even execute the below assertion.
//Would fail with error on foo()
assert a() != b()

使用ConfigSlurper将提供有关input()的错误,因为闭包不代表配置脚本(因为它是标记)

您可以断言行为的一种方法是断言有效负载(因为您已经提到了MarkupBuilder)。这可以通过使用XmlUnit如下(主要是Diff)轻松完成。

@Grab('xmlunit:xmlunit:1.4')
import groovy.xml.MarkupBuilder
import org.custommonkey.xmlunit.*

//Stub out XML in test case
def expected = new StringWriter()
def mkp = new MarkupBuilder(expected)
mkp.foo {
      bar {
        input( type : 'int', name : 'dum', 'hello world' )
      }
  }

/**The below setup will not be required because the application will
 * be returning an XML as below. Used here only to showcase the feature.
 * <foo>
 *   <bar>
 *     <input type='float' name='dum'>Another hello world</input>
 *   </bar>
 * </foo>
**/
def real = new StringWriter()
def mkp1 = new MarkupBuilder(real)
mkp1.foo {
      bar {
        input( type : 'float', name : 'dum', 'Another hello world' )
      }
  }

//Use XmlUnit API to compare xmls
def xmlDiff = new Diff(expected.toString(), real.toString())
assert !xmlDiff.identical()
assert !xmlDiff.similar()

上面看起来像是一个功能测试,但除非另外有一个适当的单元测试来断言两个标记闭包,否则我会接受这个测试。