当前位置: 首页 > 知识库问答 >
问题:

如何为空手道功能使用动态值

冯良才
2023-03-14

我需要在空手道测试的功能中使用动态值。

我遇到了一些类似这样的问题和答案:如何从excel电子表格中读取输入数据并在空手道框架中传递JSON负载?

但不管我怎么努力,我都做不到。我相信我应该分享我试图使用的代码部分,这样讨论就可以开始了。

我有一个创建新用户的SOAP请求,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xxxxxx>
<soapenv:Header/>
<soapenv:Body>
    <int:createSubscriber soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
        <custBean xxxxx>
            <accountNumber xsi:type="xsd:string">#(accountNo)</accountNumber>
            <custName xsi:type="xsd:string" xs:type="type:string">Xbox</custName>
        </custBean>
        <addSubscriberBean xxxxx>7
            <subscriberID xsi:type="xsd:string">#(subsID)</subscriberID>
            <password xsi:type="xsd:string" xs:type="type:string">0</password>
            <areaID xsi:type="xsd:string" xs:type="type:string">1</areaID>
            <lineOfCredit xsi:type="xsd:int" xs:type="type:int"></lineOfCredit>
            <creditCycle xsi:type="xsd:int" xs:type="type:int"></creditCycle>
            <points xsi:type="xsd:int" xs:type="type:int"></points>
            <bandwidth xsi:type="xsd:int" xs:type="type:int"></bandwidth>
            <physicalPorts xsi:type="xsd:string" xs:type="type:string">8080</physicalPorts>
            <mobilePhoneNo xsi:type="xsd:string" xs:type="type:string">#(mobile)</mobilePhoneNo>
            <stbCount xsi:type="xsd:int" xs:type="type:int">5</stbCount>
            <oTTCount xsi:type="xsd:int" xs:type="type:int">10</oTTCount>
            <subscriptionType xsi:type="xsd:string" xs:type="type:string">#(subsType)</subscriptionType>
        </addSubscriberBean>
        <sequenceID xxxxx>1234567840123422700</sequenceID>
    </int:createSubscriber>
</soapenv:Body>

正如你所看到的,我有一些将从外部给出的变量,它们是:帐户号、子标识、子类型和移动。

现在,我有了一个特性文件,我在其中使用上述文件调用SOAP服务。我正在为请求的所有变量分配新值,这样我就可以一直创建新用户。

以下是一个例子:

Feature: Create Subscriber Feature End-To-End Scenario

Background:
* url SOAP_CREATE_SUBSCRIBER_HOST

* def accountNumber = '789'
* def subscriberID = '456'
* def userMsisdn = '123'
* def subscriptionType = 'ASD'

* def createUser = read('create-user-soap.xml') # This is the above one
* replace createUser
  | token              | value               |
  | #(accountNo)       | accountNumber       |
  | #(subsID)          | subscriberID        |
  | #(mobile)          | userMsisdn          |
  | #(subsType)        | subscriptionType    |

Scenario: Create Subscriber
Given request createUser
When soap action SOAP_CREATE_SUBSCRIBER_HOST
Then status 200

And match //returnCode == 0
And match //returnMessage == 'The operation succeeded.'

然而,我需要创建一堆用户,所以我需要使用动态变量多次调用我的. xml文件。

我检查了文档并在这里回答:如何从excel电子表格中读取输入数据并在空手道框架中传递JSON负载?

但在我的情况下找不到。

提前感谢。

编辑:我知道我需要使用table或json或csv或excel之类的数据持有者来晚些使用它,所以下面是我的users表。只是不知道如何将它实现到我的功能文件中,这样它就可以创建太多的用户。

    * table userstable
  | accountNo   | subsID         | mobile       | subsType   |
  | '113888572' | '113985218890' | '1135288836' | 'asd'     |
  | '113888573' | '113985218891' | '1135288837' | 'qwe'     |
  | '113888582' | '113985218810' | '1135288846' | 'asd'     |
  | '883889572' | '883985219890' | '8835298836' | 'qwe'     |
  | '773888572' | '773985218890' | '7735288836' | 'asd'     |
  | '663888572' | '663985218890' | '6635288836' | 'qwe'     |
  | '553888572' | '553985218890' | '5535288836' | 'asd'     |
  | '443888572' | '443985218890' | '4435288836' | 'qwe'     |
  | '333888572' | '333985218890' | '3335288836' | 'asd'     |
  | '223888572' | '223985218890' | '2235288836' | 'qwe'     |
  | '165488572' | '175585218890' | '1114788836' | 'asd'     |

编辑2:在深入研究了一些答案并阅读了大量文档后,我遇到了下面的解决方案。应该有一个。特性文件,您可以在其中放置创建方法来启动单个用户创建机制。它会看起来像这样:

@ignore
Feature: re-usable feature to create a single user

Background:
* url SOAP_CREATE_SUBSCRIBER_HOST

Scenario: Create single user

* match __arg == bulkusers[__loop]
* def createUser = read('xxxx')

Given request createUser
When soap action SOAP_CREATE_SUBSCRIBER_HOST
And request { accountNo: '#(accountNo)', subsID: '#(subsID)', mobile: '#(mobile)', subsType: '#(subsType)' }
Then status 200

因此,上述代码可以作为模板放在您的脑海中。另一方面,我们需要另一个**。功能**文件以调用该模板。它看起来是这样的:

Feature: call template feature.

背景:*urlSOAP_CREATE_SUBSCRIBER_HOST

场景:使用bulkusers表创建默认用户

* table bulkusers
  | accountNo   | subsID         | mobile       | subsType |
  | '131451715' | '133451789134' | '5335167897' | 'asd'   |
  | '122452715' | '123452789124' | '5334287897' | 'qwe'  |
  | '124453715' | '123453789114' | '5334367817' | 'asd'   |

* def result = call read('user-create.feature') bulkusers
* def created = $result[*].response

* match result[*].__loop == [0, 1, 2]
* match created[*].name == $bulkusers[*].name

* def createUser = read('xxx')

这段代码实现的是,它使用user create打包bulkusers表。因此,功能由用户创建。递归调用要素模板类,直到表变量的数量结束,并使用bulkusers变量。

共有1个答案

董高洁
2023-03-14

我在下面提供了一个简化的例子,但是我相信你会在这里找到你问题的答案。在空手道中使用karate.set(varName, xPath, value)API很容易循环数据并构建XML:

* table users
  | accountNo   | subsID         | mobile       | subsType  |
  | '113888572' | '113985218890' | '1135288836' | 'asd'     |
  | '113888573' | '113985218891' | '1135288837' | 'qwe'     |
  | '113888582' | '113985218810' | '1135288846' | 'asd'     |

* def xml = <users></users>
* def fun =
"""
function(u, i) {
  var base = '/users/user[' + (i + 1) + ']/';
  karate.set('xml', base + 'account', u.accountNo);
  karate.set('xml', base + 'mobile', u.mobile);
  karate.set('xml', base + 'type', u.subsType);
}
"""
* eval karate.forEach(users, fun)
* match xml ==
"""
<users>
  <user>
    <account>113888572</account>
    <mobile>1135288836</mobile>
    <type>asd</type>
  </user>
  <user>
    <account>113888573</account>
    <mobile>1135288837</mobile>
    <type>qwe</type>
  </user>
  <user>
    <account>113888582</account>
    <mobile>1135288846</mobile>
    <type>asd</type>
  </user>
</users>
"""
 类似资料:
  • 在空手道中,您可以通过发送json/list调用该功能 例如: 引发错误:路径:$,实际值:'',应为:'30e093da-c4e3-4ee0-b180-e5d0b4302d9f',原因:不是子字符串 步骤: 在日志检查功能中,我试图使用 日志检查功能步骤 我尝试了另一种方法,我把它分配给 我将发送json的另一种方法 步骤为logcheck.feature 例如: 错误抛出:com.intuit

  • 如何使用 Gradle 获取空手道测试功能文件的 Jacoco 报告。 我的项目是一个Gradle项目,我试图在我的空手道测试项目中集成jacoco报告功能。服务器运行在我本地的8080端口上。 我正在使用以下方法生成jacoco报告,请让我知道我的方法是否正确,并为我提供一个解决方案,以获得gradle项目的jacoco。 1) 首先,我试图在jacoagent的帮助下生成jacoco执行数据。

  • 我使用一个变量来读取XML文件,然后将其分配给另一个名为Payload的变量。将XML作为CDATA传递到有效负载中;我的有效载荷结构不会改变。我必须用不同的XML文件ie、不同的CDATA进行三到五次连续的SOAP调用。现在我正在重复这段代码来进行三到五个连续的SOAP调用,有没有什么方法可以避免重复相同的代码或者你能给我一个更好的编写方法。

  • 假设我有一个需求完全相同的测试场景,但有一个路径变量更改,如下所示: 方案:某些方案

  • 空手道标头示例不显示如何访问以外的配置值。当我切换环境(传递作为run命令的一部分)然后被正确设置。 问题是,我想使用这里所示的其他配置值,但是当我运行测试时,它无法访问正确。相反,我得到了这个错误 我的文件和。 (这里类似的问题,使用单独的:https://github.com/intuit/karate/issues/94)

  • 我想使用maven执行空手道测试,并将标记动态传递给执行。我使用的是junit4,我尝试了这两种方法--并行和简单的@Runwith注释。 @Runwith 使用这种方法,我可以动态地将标记传递给执行,但是如果空手道测试失败,maven构建仍然是成功的。 平行的 使用并行方法,如果空手道测试失败,maven构建将失败。但我无法通过maven命令选项将标记传递给测试。 我正在使用命令运行测试