Search in sources :

Example 1 with Datum

use of com.yahoo.elide.swagger.property.Datum in project elide by yahoo.

the class SwaggerBuilderTest method verifyDatum.

/**
 * Verifies that the given property is of type 'Datum' containing a reference to the given model.
 * @param property The property to check
 * @param refTypeName The model name
 * @param included Whether or not the datum should have an 'included' section.
 */
private void verifyDatum(Property property, String refTypeName, boolean included) {
    assertTrue((property instanceof Datum));
    RefProperty ref = (RefProperty) ((Datum) property).getProperties().get("data");
    assertEquals("#/definitions/" + refTypeName, ref.get$ref());
    if (included) {
        assertNotNull(((Datum) property).getProperties().get("included"));
    }
}
Also used : Datum(com.yahoo.elide.swagger.property.Datum) RefProperty(io.swagger.models.properties.RefProperty)

Example 2 with Datum

use of com.yahoo.elide.swagger.property.Datum in project elide by yahoo.

the class SwaggerBuilderTest method verifyDatum.

/**
 * Verifies that the given model is of type 'Datum' containing a reference to the given model name.
 * @param model The model to check
 * @param refTypeName The model name to check
 */
private void verifyDatum(Model model, String refTypeName) {
    assertTrue((model instanceof com.yahoo.elide.swagger.model.Datum));
    RefProperty ref = (RefProperty) model.getProperties().get("data");
    assertEquals("#/definitions/" + refTypeName, ref.get$ref());
}
Also used : Datum(com.yahoo.elide.swagger.property.Datum) RefProperty(io.swagger.models.properties.RefProperty)

Example 3 with Datum

use of com.yahoo.elide.swagger.property.Datum in project elide by yahoo.

the class SwaggerBuilderTest method testOperationRequestBodies.

@Test
public void testOperationRequestBodies() throws Exception {
    /* These take a datum pointing to a resource */
    Operation[] resourceOps = { swagger.getPaths().get("/book").getPost(), swagger.getPaths().get("/book/{bookId}").getPatch() };
    for (Operation op : resourceOps) {
        BodyParameter bodyParam = (BodyParameter) op.getParameters().stream().filter((param) -> param.getIn().equals("body")).findFirst().get();
        assertNotNull(bodyParam);
        verifyDatum(bodyParam.getSchema(), "book");
    }
    /* These don't take any params */
    Operation[] noParamOps = { swagger.getPaths().get("/book").getGet(), swagger.getPaths().get("/book/{bookId}").getDelete(), swagger.getPaths().get("/book/{bookId}").getGet() };
    for (Operation op : noParamOps) {
        Optional<Parameter> bodyParam = op.getParameters().stream().filter((param) -> param.getIn().equals("body")).findFirst();
        assertFalse(bodyParam.isPresent());
    }
    /* These take a 'data' of relationships */
    Operation[] relationshipOps = { swagger.getPaths().get("/book/{bookId}/relationships/authors").getPatch(), swagger.getPaths().get("/book/{bookId}/relationships/authors").getDelete(), swagger.getPaths().get("/book/{bookId}/relationships/authors").getPost() };
    for (Operation op : relationshipOps) {
        BodyParameter bodyParam = (BodyParameter) op.getParameters().stream().filter((param) -> param.getIn().equals("body")).findFirst().get();
        assertNotNull(bodyParam);
        verifyDataRelationship(bodyParam.getSchema(), "author");
    }
}
Also used : Assertions.assertNotNull(org.junit.jupiter.api.Assertions.assertNotNull) Resource(com.yahoo.elide.swagger.model.Resource) Arrays(java.util.Arrays) Data(com.yahoo.elide.swagger.property.Data) Swagger(io.swagger.models.Swagger) Tag(io.swagger.models.Tag) Assertions.assertNull(org.junit.jupiter.api.Assertions.assertNull) Include(com.yahoo.elide.annotation.Include) StringProperty(io.swagger.models.properties.StringProperty) HashMap(java.util.HashMap) Publisher(example.models.Publisher) ArrayProperty(io.swagger.models.properties.ArrayProperty) Model(io.swagger.models.Model) TestInstance(org.junit.jupiter.api.TestInstance) Assertions.assertFalse(org.junit.jupiter.api.Assertions.assertFalse) Author(example.models.Author) BeforeAll(org.junit.jupiter.api.BeforeAll) Path(io.swagger.models.Path) Map(java.util.Map) NO_VERSION(com.yahoo.elide.core.dictionary.EntityDictionary.NO_VERSION) Book(example.models.Book) RefProperty(io.swagger.models.properties.RefProperty) Assertions.assertEquals(org.junit.jupiter.api.Assertions.assertEquals) Operation(io.swagger.models.Operation) Datum(com.yahoo.elide.swagger.property.Datum) Property(io.swagger.models.properties.Property) Id(javax.persistence.Id) Entity(javax.persistence.Entity) BodyParameter(io.swagger.models.parameters.BodyParameter) Set(java.util.Set) Parameter(io.swagger.models.parameters.Parameter) Collectors(java.util.stream.Collectors) EntityDictionary(com.yahoo.elide.core.dictionary.EntityDictionary) Info(io.swagger.models.Info) QueryParameter(io.swagger.models.parameters.QueryParameter) Test(org.junit.jupiter.api.Test) Response(io.swagger.models.Response) ObjectProperty(io.swagger.models.properties.ObjectProperty) List(java.util.List) Assertions.assertTrue(org.junit.jupiter.api.Assertions.assertTrue) Relationship(com.yahoo.elide.swagger.property.Relationship) Optional(java.util.Optional) BodyParameter(io.swagger.models.parameters.BodyParameter) Parameter(io.swagger.models.parameters.Parameter) QueryParameter(io.swagger.models.parameters.QueryParameter) Operation(io.swagger.models.Operation) BodyParameter(io.swagger.models.parameters.BodyParameter) Test(org.junit.jupiter.api.Test)

Aggregations

Datum (com.yahoo.elide.swagger.property.Datum)3 RefProperty (io.swagger.models.properties.RefProperty)3 Include (com.yahoo.elide.annotation.Include)1 EntityDictionary (com.yahoo.elide.core.dictionary.EntityDictionary)1 NO_VERSION (com.yahoo.elide.core.dictionary.EntityDictionary.NO_VERSION)1 Resource (com.yahoo.elide.swagger.model.Resource)1 Data (com.yahoo.elide.swagger.property.Data)1 Relationship (com.yahoo.elide.swagger.property.Relationship)1 Author (example.models.Author)1 Book (example.models.Book)1 Publisher (example.models.Publisher)1 Info (io.swagger.models.Info)1 Model (io.swagger.models.Model)1 Operation (io.swagger.models.Operation)1 Path (io.swagger.models.Path)1 Response (io.swagger.models.Response)1 Swagger (io.swagger.models.Swagger)1 Tag (io.swagger.models.Tag)1 BodyParameter (io.swagger.models.parameters.BodyParameter)1 Parameter (io.swagger.models.parameters.Parameter)1