11

我做了什么

我正在使用soapUI(3.6.1 免费版)模拟服务为我正在测试的2 个客户端应用程序提供特定数据。通过一些简单的 Groovy 脚本,我设置了一些模拟操作,以根据客户端应用程序发出的请求从特定文件中获取响应。

模拟响应的静态内容是:

${responsefile}

操作调度脚本窗格中的 groovy 是:

def req = new XmlSlurper().parseText(mockRequest.requestContent)
if (req =~ "CategoryA")
{
    context.responsefile = new File("C:/soapProject/Test_Files/ID_List_CategoryA.xml").text
}
else
{
    context.responsefile = new File("C:/soapProject/Test_Files/ID_List_CategoryB.xml").text
}

在此示例中,当客户端应用程序向包含字符串 CategoryA 的模拟服务发出请求时,soapUI 返回的响应是文件 ID_List_CategoryA.xml 的内容

我想要实现的目标

这一切都适用于 groovy 中的绝对路径。现在我想将soapUI项目文件和外部文件的整个集合拉到一个包中,以便于重新部署。从我对soapUI的阅读中,我希望这就像将项目资源根值设置为$ {projectDir}并将我的路径更改为:

def req = new XmlSlurper().parseText(mockRequest.requestContent)
if (req =~ "CategoryA")
{
    context.responsefile = new File("Test_Files/ID_List_CategoryA.xml").text
}
else
{
    context.responsefile = new File("Test_Files/ID_List_CategoryB.xml").text
}

...请记住,soapUI 项目 xml 文件位于 C:/soapProject/

到目前为止我尝试过的

所以,这行不通。我尝试了相对路径的变体:

  • ./Test_Files/ID_List_CategoryA.xml
  • /Test_Files/ID_List_CategoryA.xml
  • Test_Files/ID_List_CategoryA.xml

一篇文章指出soapUI可能将项目文件的父目录视为相对路径的根目录,因此也尝试了以下变体:

  • ./soapProject/Test_Files/ID_List_CategoryA.xml
  • /soapProject/Test_Files/ID_List_CategoryA.xml
  • soapProject/Test_Files/ID_List_CategoryA.xml

当这些都不起作用时,我尝试使用 groovy 脚本中的 ${projectDir} 属性,但是所有这些尝试都失败了,并出现“没有这样的属性:类的模拟服务:脚本 [n]”错误。承认,当我试图这样做时,我真的很摸索。

我尝试使用这篇文章和其他文章中的信息:如何使soapUI附件路径相对?

...没有任何运气。在该帖子的解决方案代码中将“test”替换为“mock”(以及其他更改)导致更多属性错误,例如

testFile = new File(mockRunner.project.getPath())

.. 导致...

No such property: mockRunner for class: Script3

我认为我需要什么

我发现的与此问题相关的帖子都集中在soapUI TestSuites 上。我真的需要一个以 MockService 为中心的解决方案,或者至少阐明如何为 MockServices 而不是 TestSuites 以不同的方式处理它。

任何帮助是极大的赞赏。谢谢。标记。

解决方案 - 由GargantuChet提供

以下包括GargantuChet建议的更改,以解决尝试访问 ${projectDir} 属性的问题,并通过在 groovy 脚本范围内定义新的 projectDir 对象来启用相对路径的使用:

def groovyUtils = new com.eviware.soapui.support.GroovyUtils(context)
def projectDir = groovyUtils.projectPath

def req = new XmlSlurper().parseText(mockRequest.requestContent)
if (req =~ "CategoryA")
{
    context.responsefile = new File(projectDir, "Test_Files/ID_List_CategoryA.xml").text
}
else
{
    context.responsefile = new File(projectDir, "Test_Files/ID_List_CategoryB.xml").text
}
4

2 回答 2

10

我不熟悉 Groovy,但我认为这File是一个正常的java.io.File实例。

相对路径被解释为相对于应用程序的当前目录。尝试以下方法来验证:

def defaultPathBase = new File( "." ).getCanonicalPath()
println "Current dir:" + defaultPathBase

如果这里是这种情况,那么您可能希望使用new File(String parent, String child)构造函数,将资源目录作为第一个参数传递,将相对路径作为第二个参数传递。

例如:

// hardcoded for demonstration purposes
def pathbase = "/Users/chet"
def content = new File(pathbase, "Desktop/sample.txt").text

println content

这是执行脚本的结果:

Chets-MacBook-Pro:Desktop chet$ groovy sample.groovy 
This is a sample text file.

It will be displayed by a Groovy script.
Chets-MacBook-Pro:Desktop chet$ groovy sample.groovy 
This is a sample text file.

It will be displayed by a Groovy script.

Chets-MacBook-Pro:Desktop chet$ 
于 2012-09-04T15:37:57.837 回答
6

您还可以执行以下操作来获取 projectDir 的值:

    def projectDir = context.expand('${projectDir}');
于 2013-03-07T20:05:30.873 回答