use of org.raml.jaxrs.generator.CurrentBuild in project raml-for-jax-rs by mulesoft-labs.
the class V10GResourceTest method simpleRequest.
@Test
public void simpleRequest() throws Exception {
Api api = RamlV10.buildApiV10(this, "resource-simple.raml");
GAbstractionFactory fac = new GAbstractionFactory();
V10GResource gr = new V10GResource(new CurrentBuild(api, null), fac, api.resources().get(0));
GRequest req = gr.methods().get(0).body().get(0);
assertEquals("application/json", req.mediaType());
assertEquals("ObjectBase", req.type().type());
assertEquals("ObjectBase", req.type().name());
}
use of org.raml.jaxrs.generator.CurrentBuild in project raml-for-jax-rs by mulesoft-labs.
the class V10GResourceTest method extendingRequest.
@Test
public void extendingRequest() throws Exception {
Api api = RamlV10.buildApiV10(this, "resource-extending-request.raml");
GAbstractionFactory fac = new GAbstractionFactory();
V10GResource gr = new V10GResource(new CurrentBuild(api, null), fac, api.resources().get(0));
GRequest req = gr.methods().get(0).body().get(0);
assertEquals("application/json", req.mediaType());
assertEquals("ObjectBase", req.type().type());
assertEquals("FunPutApplicationJson", req.type().name());
assertEquals("model.FunPutApplicationJson", req.type().defaultJavaTypeName("").toString());
}
use of org.raml.jaxrs.generator.CurrentBuild in project raml-for-jax-rs by mulesoft-labs.
the class RamlV10 method buildResourceV10.
public static void buildResourceV10(Object test, String raml, CodeContainer<TypeSpec> container, String name, String uri) throws IOException {
Api api = buildApiV10(test, raml);
CurrentBuild currentBuild = new CurrentBuild(api, ExtensionManager.createExtensionManager());
currentBuild.constructClasses(new V10Finder(null, api));
ResourceBuilder builder = new ResourceBuilder(currentBuild, new V10GResource(currentBuild, new GAbstractionFactory(), api.resources().get(0)), name, uri);
builder.output(container);
}
use of org.raml.jaxrs.generator.CurrentBuild in project raml-for-jax-rs by mulesoft-labs.
the class RamlV08 method buildResourceV08.
public static void buildResourceV08(Object test, String raml, CodeContainer<TypeSpec> container, String name, String uri) throws IOException {
Api api = buildApiV08(test, raml);
V08TypeRegistry registry = new V08TypeRegistry();
V08Finder typeFinder = new V08Finder(api, new GAbstractionFactory(), registry);
CurrentBuild currentBuild = new CurrentBuild(null, ExtensionManager.createExtensionManager());
currentBuild.constructClasses(typeFinder);
ResourceBuilder builder = new ResourceBuilder(currentBuild, new V08GResource(new GAbstractionFactory(), api.resources().get(0), typeFinder.globalSchemas().keySet(), registry), name, uri);
builder.output(container);
}
use of org.raml.jaxrs.generator.CurrentBuild in project raml-for-jax-rs by mulesoft-labs.
the class V10GResourceTest method simpleResponse.
@Test
public void simpleResponse() throws Exception {
Api api = RamlV10.buildApiV10(this, "resource-response-simple.raml");
GAbstractionFactory fac = new GAbstractionFactory();
V10GResource gr = new V10GResource(new CurrentBuild(api, null), fac, api.resources().get(0));
GResponseType resp = gr.methods().get(0).responses().get(0).body().get(0);
assertEquals("application/json", resp.mediaType());
assertEquals("ObjectBase", resp.type().type());
assertEquals("ObjectBase", resp.type().name());
}
Aggregations