如何在 Serenity BDD 框架中使用 CSV 在 GET 请求中发送多个值
How to send Multiple values in GET request using CSV in Serenity BDD framework
如何在 GET 请求中传递具有多个值的 CSV。
当我尝试传递以下值时,它没有给出响应 properly.please 在这里帮助获得响应。
例如:我的 CSV 文件包含 ID:15、16、20
如何在 GET 请求中传递此 ID。
EmployeeID.csv
EmployeeID
15
16
20
@BeforeClass
public static void init() {
RestAssured.baseURI = "https://dummy.restapiexample.com/api/v1";
}
@Test
public void getAllRequests() {
ArrayList<String> employeeIDs = new ArrayList<>();
employeeIDs.add(employeeID);
SerenityRest.given().log().all().when().get("/employees/employeeID").then().log().all().statusCode(200);
System.out.println(employeeID);
}
}
此代码适合您
import io.restassured.RestAssured;
import net.serenitybdd.junit.runners.SerenityParameterizedRunner;
import net.serenitybdd.rest.SerenityRest;
import net.thucydides.junit.annotations.UseTestDataFrom;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(SerenityParameterizedRunner.class)
@UseTestDataFrom(value = "EmployeeID.csv")
public class DemoTest {
private int EmployeeID;
public void setEmployeeID(int EmployeeID) {
this.EmployeeID = EmployeeID;
}
@BeforeClass
public static void init() {
RestAssured.baseURI = "https://dummy.restapiexample.com/api/v1";
}
@Test
public void getAllRequests() {
SerenityRest.given().log().all().when()
.get("/employees/" + EmployeeID)
.then().log().all()
.statusCode(200);
}
}
csv 文件位于:src/test/resources/EmployeeID.csv
如何在 GET 请求中传递具有多个值的 CSV。 当我尝试传递以下值时,它没有给出响应 properly.please 在这里帮助获得响应。
例如:我的 CSV 文件包含 ID:15、16、20
如何在 GET 请求中传递此 ID。
EmployeeID.csv
EmployeeID
15
16
20
@BeforeClass
public static void init() {
RestAssured.baseURI = "https://dummy.restapiexample.com/api/v1";
}
@Test
public void getAllRequests() {
ArrayList<String> employeeIDs = new ArrayList<>();
employeeIDs.add(employeeID);
SerenityRest.given().log().all().when().get("/employees/employeeID").then().log().all().statusCode(200);
System.out.println(employeeID);
}
}
此代码适合您
import io.restassured.RestAssured;
import net.serenitybdd.junit.runners.SerenityParameterizedRunner;
import net.serenitybdd.rest.SerenityRest;
import net.thucydides.junit.annotations.UseTestDataFrom;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(SerenityParameterizedRunner.class)
@UseTestDataFrom(value = "EmployeeID.csv")
public class DemoTest {
private int EmployeeID;
public void setEmployeeID(int EmployeeID) {
this.EmployeeID = EmployeeID;
}
@BeforeClass
public static void init() {
RestAssured.baseURI = "https://dummy.restapiexample.com/api/v1";
}
@Test
public void getAllRequests() {
SerenityRest.given().log().all().when()
.get("/employees/" + EmployeeID)
.then().log().all()
.statusCode(200);
}
}
csv 文件位于:src/test/resources/EmployeeID.csv