我有一个使用Json的端点,该端点具有2个属性,例如
{id='12344', data=byte_array}
所以我写了一个测试
Feature: submitted request
Scenario: submitted request
* def convertToBytes =
"""
function(arg) {
var StreamUtils = Java.type('my.utils.StreamUtils');
// it reads stream and convert it to a byte array
return StreamUtils.getBytes(arg);
}
"""
Given url 'http://my-server/post'
And def image = convertToBytes(read('classpath:images/image_1.jpg'));
And request {id:1, data: "#(image)"}
When method POST
Then status 200
但是空手道异常表却没有太多细节
ERROR com.intuit.karate - http request failed: [B cannot be cast to [Ljava.lang.Object;
有没有人想知道如何使用空手道将字节数组作为Json的一部分提交?
答案 0 :(得分:0)
我认为您无法做到。 whole request should be binary(字节数组)或者您执行多部分请求,其中二进制文件是Base64编码的。据我所知,您不能将二进制文件放入JSON。不过有一种叫做Binary JSON的东西。
编辑:假定byte []必须是Base64编码后:
Background:
* url demoBaseUrl
* def Base64 = Java.type('java.util.Base64')
Scenario: json with byte-array
Given path 'echo', 'binary'
And def encoded = Base64.encoder.encodeToString('hello'.bytes);
And request { message: 'hello', data: '#(encoded)' }
When method post
Then status 200
And def expected = Base64.encoder.encodeToString('world'.bytes);
And match response == { message: 'world', data: '#(expected)' }
我刚刚将此测试添加到了空手道演示中,并且工作正常。这是commit。