api-testing/src/test/java/org/example/FormatsTest.java

28 lines
763 B
Java
Raw Normal View History

2024-01-21 01:15:01 +01:00
package org.example;
import io.restassured.RestAssured;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import static io.restassured.RestAssured.given;
import static io.restassured.RestAssured.when;
import static org.hamcrest.Matchers.hasSize;
public class FormatsTest {
@BeforeAll
public static void formatsTestSetup() {
RestAssured.baseURI = "https://api.magicthegathering.io/v1/formats";
}
@Test
public void getAllFormatsShouldReturnTwentyOneElements(){
when().get().then().statusCode(200).body("formats", hasSize(21));
}
@Test
public void getFormatsWithInvalidPathParamShouldReturnErrorNotFound(){
given().pathParam("id", 1).get("/{id}").then().statusCode(404);
}
}