use of com.spectralogic.ds3autogen.api.models.apispec.Ds3Element in project ds3_autogen by SpectraLogic.
the class C_Type_Test method testStructMemberTypeLongToString1.
@Test
public void testStructMemberTypeLongToString1() throws java.text.ParseException {
final Ds3Element testElement = new Ds3Element("longElement1", "java.lang.Long", null, true);
final C_Type c_type = C_TypeHelper.convertDs3ElementType(testElement, ImmutableSet.of());
assertThat(c_type.getTypeName(), is("uint64_t"));
assertThat(c_type.toString(), is("uint64_t"));
}
use of com.spectralogic.ds3autogen.api.models.apispec.Ds3Element in project ds3_autogen by SpectraLogic.
the class ChecksumTypeGenerator_Test method getAllImports_Test.
@Test
public void getAllImports_Test() {
final ImmutableList<Ds3Element> ds3Elements = ImmutableList.of(new Ds3Element("ElementName1", "com.spectralogic.test.ElementType1", "ElementComponentType1", false), new Ds3Element("ElementName2", "ElementType2", "com.spectralogic.test.ElementComponentType2", false), new Ds3Element("ElementName3", "ElementType3", null, false));
final Ds3Type ds3Type = new Ds3Type("TypeName", null, ds3Elements, null);
final ImmutableList<String> result = generator.getAllImports(ds3Type);
assertThat(result.size(), is(0));
}
use of com.spectralogic.ds3autogen.api.models.apispec.Ds3Element in project ds3_autogen by SpectraLogic.
the class CommonPrefixGenerator_Test method getAllImports_Test.
@Test
public void getAllImports_Test() {
final ImmutableList<Ds3Element> ds3Elements = ImmutableList.of(new Ds3Element("ElementName1", "com.spectralogic.test.ElementType1", "ElementComponentType1", false), new Ds3Element("ElementName2", "ElementType2", "com.spectralogic.test.ElementComponentType2", false), new Ds3Element("ElementName3", "ElementType3", null, false));
final Ds3Type ds3Type = new Ds3Type("TypeName", null, ds3Elements, null);
final ImmutableList<String> result = generator.getAllImports(ds3Type);
assertThat(result.size(), is(4));
assertThat(result, hasItem("java.util.List"));
assertThat(result, hasItem("java.util.ArrayList"));
assertThat(result, hasItem("com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper"));
assertThat(result, hasItem("com.spectralogic.ds3client.models.common.CommonPrefixes"));
}
use of com.spectralogic.ds3autogen.api.models.apispec.Ds3Element in project ds3_autogen by SpectraLogic.
the class JobsApiBeanTypeGenerator_Test method toElement_NotJobsElement_Test.
@Test
public void toElement_NotJobsElement_Test() {
final ImmutableList<Ds3AnnotationElement> annotationElements = ImmutableList.of(new Ds3AnnotationElement("CollectionValue", "NotJobs", "java.lang.String"), new Ds3AnnotationElement("CollectionValueRenderingMode", "SINGLE_BLOCK_FOR_ALL_ELEMENTS", "com.spectralogic.util.marshal.CustomMarshaledName$CollectionNameRenderingMode"), new Ds3AnnotationElement("Value", "NotJob", "java.lang.String"));
final ImmutableList<Ds3Annotation> annotations = ImmutableList.of(new Ds3Annotation("com.spectralogic.util.marshal.CustomMarshaledName", annotationElements));
final Ds3Element ds3Element = new Ds3Element("NotJobs", "array", "com.spectralogic.s3.server.domain.JobApiBean", annotations, false);
final Element result = generator.toElement(ds3Element);
assertThat(result.hasWrapper(), is(true));
}
use of com.spectralogic.ds3autogen.api.models.apispec.Ds3Element in project ds3_autogen by SpectraLogic.
the class JobsApiBeanTypeGenerator_Test method toElement_JobsElement_Test.
@Test
public void toElement_JobsElement_Test() {
final ImmutableList<Ds3AnnotationElement> annotationElements = ImmutableList.of(new Ds3AnnotationElement("CollectionValue", "Jobs", "java.lang.String"), new Ds3AnnotationElement("CollectionValueRenderingMode", "SINGLE_BLOCK_FOR_ALL_ELEMENTS", "com.spectralogic.util.marshal.CustomMarshaledName$CollectionNameRenderingMode"), new Ds3AnnotationElement("Value", "Job", "java.lang.String"));
final ImmutableList<Ds3Annotation> annotations = ImmutableList.of(new Ds3Annotation("com.spectralogic.util.marshal.CustomMarshaledName", annotationElements));
final Ds3Element ds3Element = new Ds3Element("Jobs", "array", "com.spectralogic.s3.server.domain.JobApiBean", annotations, false);
final Element result = generator.toElement(ds3Element);
assertThat(result.hasWrapper(), is(false));
}
Aggregations