gpt4 book ai didi

java - 编写一个以 Hashmap 作为集合的数据提供程序类并将其传递给 API 测试中的多个参数

转载 作者:行者123 更新时间:2023-11-30 12:05:16 27 4
gpt4 key购买 nike

我正在尝试通过以 TestNG DataProvider 的形式编写可重用组件来尽量减少测试中的代码行。需要发送到服务器的我的测试规范接受 Map>。

 @Test(dataProvider = "provideData")
public void TestMethod(Map<String,Object> map) throws Exception {
RequestSpecification spec = generateCommonReqSpecJsonWithQueryParams(map);
Response res = RestOperationUtils.get(url, spec, null);
}


@DataProvider(name="provideData")
public static Object[][] getData() throws Exception {
Map<String, ArrayList<String>> map = new HashMap<>();
ArrayList<String> a1 = new ArrayList<>();
a1.add("First Value");
a1.add("Second Value);
a1.add("Third Value");
a1.add("Fourth Value");
map.put("Test[]", a1);
map.put("month_start", new ArrayList(Arrays.asList("2019-06-01")));
map.put("month_end", new ArrayList(Arrays.asList("2019-06-30")));
map.put("viewers[]", new ArrayList(Arrays.asList("ESPN")));
ArrayList<String> b1 = new ArrayList<>();
b1.add("Fifth Value");
b1.add("Sixth Value");
b1.add("Seventh Value");
map.put("Result[]", b1);

自 TestNG 以来,要求我们从 DataProvider 返回 Object[][],以下是我尝试过的不同方法:

方法一:

String[] keys = new String[map.size()];
ArrayList<ArrayList<String>> values = new ArrayList<>();
int index = 0;
for (Map.Entry<String, ArrayList<String>> mapEntry : map.entrySet()) {
keys[index] = mapEntry.getKey();
values.add(index, (ArrayList<String>) mapEntry.getValue());
// x[index] = mapEntry.getValue();
index++;
}
Object[][] result = new Object[values.size()][];
index = 0;
int index2;
for (List<String> list : values) {
result[index] = new Object[list.size()];
index2 = 0;
for (String item : list) {
result[index][index2] = item;
index2++;
}
index++;
}
return result ;

方法二:

     Object[][] arr = new Object[map.size()][2];
Set entries = map.entrySet();
Iterator entriesIterator = entries.iterator();
int i = 0;
while(entriesIterator.hasNext()){
Map.Entry mapping = (Map.Entry) entriesIterator.next();
arr[i][0] = mapping.getKey();
arr[i][1] = mapping.getValue();
i++;
}
return arr;

方法 3:

只需返回以下内容:

return new Object[][] {{map}};

方法一:使用方法 1 它给出了 5 个预期参数,但因为我需要 map作为 queryParameters 在我的规范中传递,我发现很难在我的测试方法中使用它来了解如何从 DataProvider 类中读取它们。

方法二:它给了我 2 个参数,并带有 Map<String,Object> map作为参数,它只接受 1。

方法 3:我不明白它为什么/如何工作,但在调试时发现它被预期为 TestNg 库的特例,否则我们需要使用方法 1/2 将 hashmap 转换为 Object[][]。

如果此查询中需要任何其他信息,请告诉我。

最佳答案

方法 3 对我来说似乎完全有效。 object[][] 只是保存所有测试用例的一种方式,其中每个 object[] 索引只是测试用例。然后,每个测试用例都应与测试方法预期的参数数量和类型相匹配。

选择 Object[][] 来保存测试用例,因为 java 中的所有对象要么从 Object 扩展,或者在基元的情况下可以自动装箱到它的对象形式中,它确实从 Object 扩展。

然后 TestNG 将处理将数据提供者连接到它的每个测试,以及为每个测试应用和转换测试用例参数。

例如:

@Test(dataProvider="getTestCases")
public void test(List<Integer> list, double d){
// test code
}

期望是这样的:

@DataProvider
public Object[][] getTestCases(){
return new Object[][] {
{Arrays.asList(1, 2, 3), 1.0},
{Arrays.asList(4, 5, 6), 2.0}
};
}

其中 {Arrays.asList(1, 2, 3), 1.0} 是测试用例 1,{Arrays.asList(4, 5, 6), 2.0} 是测试用例 2。

编辑:

为了解决清理数据提供程序的代码更改,Holger 提出了以下内容:

@DataProvider(name="provideData")
public static Object[][] getData() {
Map<String, List<String>> map = new HashMap<>();
map.put("Test[]", Arrays.asList("First Value", "Second Value", "Third Value", "Fourth Value"));
map.put("month_start", Arrays.asList("2019-06-01"));
map.put("month_end", Arrays.asList("2019-06-30"));
map.put("viewers[]", Arrays.asList("ESPN"));
map.put("Result[]", Arrays.asList("Fifth Value", "Sixth Value", "Seventh Value"));
return new Object[][]{{map}};
}

至于方法 1 和 2 对您不起作用的原因,这与 DataProvider 类型/返回的测试用例数量不匹配有关。您的测试需要向其提供 map

public void TestMethod(Map<String,Object> map) 

需要一个 Map<String,Object> 类型的参数来自数据提供者,但是您正在尝试为方法 1 传递一个字符串和可变大小的字符串,或者为方法 2 传递一个字符串和字符串列表。两者的类型和参数数量都与一个映射不同。

我建议更改测试以接受 Map<String, List<String>>以提高测试的清晰度,除非后者是被测试的功能本身所需要的。

在测试中,简单是首选,因为如果你给测试本身增加了太多的复杂性。测试可能比它正在测试的东西更容易出错。因此,简单的 map 返回应该足够了。

关于java - 编写一个以 Hashmap 作为集合的数据提供程序类并将其传递给 API 测试中的多个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56431002/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com