Search in sources :

Example 1 with SimpleMap

use of com.linkedin.pegasus.generator.test.idl.records.SimpleMap in project rest.li by linkedin.

the class ArrayGeneratorTest method testWithCustomTypesArray.

@Test
public void testWithCustomTypesArray() throws Throwable {
    String json = load("WithCustomTypesArray.json");
    SimpleMap map = new SimpleMap();
    map.put("a", new Simple().setMessage("m1"));
    WithCustomTypesArray original = new WithCustomTypesArray().setInts(new CustomIntArray(new CustomInt(1), new CustomInt(2), new CustomInt(3))).setArrays(new SimpleArrayArray(new SimpleArray(new Simple().setMessage("a1")))).setMaps(new SimpleMapArray(map)).setUnions(new WithCustomTypesArrayUnionArray(WithCustomTypesArrayUnion.create(1), WithCustomTypesArrayUnion.create("str"), WithCustomTypesArrayUnion.create(new Simple().setMessage("u1")))).setFixed(new Fixed8Array(new Fixed8(SchemaFixtures.bytesFixed8)));
    assertJson(original, json);
    WithCustomTypesArray roundTripped = new WithCustomTypesArray(roundTrip(original.data()));
    assertJson(roundTripped, json);
}
Also used : Fixed8(com.linkedin.pegasus.generator.test.idl.fixed.Fixed8) SimpleArray(com.linkedin.pegasus.generator.test.idl.records.SimpleArray) SimpleMap(com.linkedin.pegasus.generator.test.idl.records.SimpleMap) WithCustomTypesArrayUnionArray(com.linkedin.pegasus.generator.test.idl.arrays.WithCustomTypesArrayUnionArray) WithCustomTypesArray(com.linkedin.pegasus.generator.test.idl.arrays.WithCustomTypesArray) CustomIntArray(com.linkedin.pegasus.generator.test.idl.customtypes.CustomIntArray) SimpleMapArray(com.linkedin.pegasus.generator.test.idl.records.SimpleMapArray) CustomInt(com.linkedin.pegasus.generator.test.pdl.fixtures.CustomInt) SimpleArrayArray(com.linkedin.pegasus.generator.test.idl.records.SimpleArrayArray) Fixed8Array(com.linkedin.pegasus.generator.test.idl.fixed.Fixed8Array) Simple(com.linkedin.pegasus.generator.test.idl.records.Simple) Test(org.testng.annotations.Test)

Example 2 with SimpleMap

use of com.linkedin.pegasus.generator.test.idl.records.SimpleMap in project rest.li by linkedin.

the class UnionGeneratorTest method testWithComplexTypesUnion.

@Test
public void testWithComplexTypesUnion() throws Throwable {
    assertEquals(WithComplexTypesUnion.Union.MEMBERKEY_Empty, "com.linkedin.pegasus.generator.test.idl.records.Empty");
    assertEquals(WithComplexTypesUnion.Union.MEMBERKEY_Fruits, "com.linkedin.pegasus.generator.test.idl.enums.Fruits");
    assertEquals(WithComplexTypesUnion.Union.MEMBERKEY_Array, "array");
    assertEquals(WithComplexTypesUnion.Union.MEMBERKEY_Map, "map");
    WithComplexTypesUnion.Union recordMember = WithComplexTypesUnion.Union.create(new Empty());
    WithComplexTypesUnion.Union enumMember = WithComplexTypesUnion.Union.create(Fruits.APPLE);
    SimpleMap simpleMap = new SimpleMap();
    Simple m1 = new Simple();
    m1.setMessage("m1");
    simpleMap.put("a", m1);
    WithComplexTypesUnion.Union mapMember = WithComplexTypesUnion.Union.create(simpleMap);
    SimpleArray simpleArray = new SimpleArray();
    Simple a1 = new Simple();
    a1.setMessage("a1");
    simpleArray.add(a1);
    WithComplexTypesUnion.Union arrayMember = WithComplexTypesUnion.Union.create(simpleArray);
    WithComplexTypesUnion withRecord = new WithComplexTypesUnion();
    withRecord.setUnion(recordMember);
    assertJson(withRecord, load("WithComplexTypesUnion_Empty.json"));
    WithComplexTypesUnion withEnum = new WithComplexTypesUnion();
    withEnum.setUnion(enumMember);
    assertJson(withEnum, load("WithComplexTypesUnion_Enum.json"));
    WithComplexTypesUnion withArray = new WithComplexTypesUnion();
    withArray.setUnion(arrayMember);
    assertJson(withArray, load("WithComplexTypesUnion_Array.json"));
    WithComplexTypesUnion withMap = new WithComplexTypesUnion();
    withMap.setUnion(mapMember);
    assertJson(withMap, load("WithComplexTypesUnion_Map.json"));
}
Also used : Empty(com.linkedin.pegasus.generator.test.idl.records.Empty) WithComplexTypesUnion(com.linkedin.pegasus.generator.test.idl.unions.WithComplexTypesUnion) SimpleArray(com.linkedin.pegasus.generator.test.idl.records.SimpleArray) SimpleMap(com.linkedin.pegasus.generator.test.idl.records.SimpleMap) Simple(com.linkedin.pegasus.generator.test.idl.records.Simple) Test(org.testng.annotations.Test)

Example 3 with SimpleMap

use of com.linkedin.pegasus.generator.test.idl.records.SimpleMap in project rest.li by linkedin.

the class RecordGeneratorTest method testWithComplexTypes.

@Test
public void testWithComplexTypes() throws Throwable {
    Simple simple = new Simple();
    simple.setMessage("message");
    IntegerMap intMap = new IntegerMap();
    intMap.put("a", 1);
    SimpleMap simpleMap = new SimpleMap();
    simpleMap.put("a", simple);
    WithComplexTypes original = new WithComplexTypes().setRecord(simple).setEnum(Fruits.APPLE).setUnion(WithComplexTypes.Union.create(1)).setArray(new IntegerArray(Collections.singletonList(1))).setMap(intMap).setComplexMap(simpleMap).setCustom(new CustomInt(1));
    WithComplexTypes roundTripped = new WithComplexTypes(roundTrip(original.data()));
    assertEquals(roundTripped.getRecord(), simple);
    assertEquals(roundTripped.getEnum(), Fruits.APPLE);
}
Also used : IntegerMap(com.linkedin.data.template.IntegerMap) WithComplexTypes(com.linkedin.pegasus.generator.test.idl.records.WithComplexTypes) SimpleMap(com.linkedin.pegasus.generator.test.idl.records.SimpleMap) CustomInt(com.linkedin.pegasus.generator.test.pdl.fixtures.CustomInt) Simple(com.linkedin.pegasus.generator.test.idl.records.Simple) IntegerArray(com.linkedin.data.template.IntegerArray) Test(org.testng.annotations.Test)

Example 4 with SimpleMap

use of com.linkedin.pegasus.generator.test.idl.records.SimpleMap in project rest.li by linkedin.

the class MapGeneratorTest method testWithComplexTypesMap.

@Test
public void testWithComplexTypesMap() throws Throwable {
    String json = load("WithComplexTypesMap.json");
    WithComplexTypesMap original = new WithComplexTypesMap();
    EmptyMap empties = new EmptyMap();
    empties.put("a", new Empty());
    empties.put("b", new Empty());
    empties.put("c", new Empty());
    original.setEmpties(empties);
    FruitsMap fruits = new FruitsMap();
    fruits.put("a", Fruits.APPLE);
    fruits.put("b", Fruits.BANANA);
    fruits.put("c", Fruits.ORANGE);
    original.setFruits(fruits);
    SimpleArrayMap simpleArrays = new SimpleArrayMap();
    Simple simplev1 = new Simple();
    simplev1.setMessage("v1");
    Simple simplev2 = new Simple();
    simplev2.setMessage("v2");
    SimpleArray simpleArray = new SimpleArray();
    simpleArray.add(simplev1);
    simpleArray.add(simplev2);
    simpleArrays.put("a", simpleArray);
    original.setArrays(simpleArrays);
    SimpleMap simpleMapi1 = new SimpleMap();
    Simple simpleo1i1 = new Simple();
    simpleo1i1.setMessage("o1i1");
    simpleMapi1.put("i1", simpleo1i1);
    Simple simpleo1i2 = new Simple();
    simpleo1i2.setMessage("o1i2");
    simpleMapi1.put("i2", simpleo1i2);
    SimpleMapMap maps = new SimpleMapMap();
    maps.put("o1", simpleMapi1);
    original.setMaps(maps);
    WithComplexTypesMapUnionMap unions = new WithComplexTypesMapUnionMap();
    unions.put("a", WithComplexTypesMapUnion.create(1));
    unions.put("b", WithComplexTypesMapUnion.create("u1"));
    original.setUnions(unions);
    Fixed8Map fixed = new Fixed8Map();
    fixed.put("a", new Fixed8(SchemaFixtures.bytesFixed8));
    original.setFixed(fixed);
    assertJson(original, json);
    WithComplexTypesMap roundTripped = new WithComplexTypesMap(roundTrip(original.data()));
    assertJson(roundTripped, json);
}
Also used : WithComplexTypesMapUnionMap(com.linkedin.pegasus.generator.test.idl.maps.WithComplexTypesMapUnionMap) FruitsMap(com.linkedin.pegasus.generator.test.idl.enums.FruitsMap) SimpleArrayMap(com.linkedin.pegasus.generator.test.idl.records.SimpleArrayMap) Fixed8Map(com.linkedin.pegasus.generator.test.idl.fixed.Fixed8Map) Simple(com.linkedin.pegasus.generator.test.idl.records.Simple) Empty(com.linkedin.pegasus.generator.test.idl.records.Empty) SimpleMapMap(com.linkedin.pegasus.generator.test.idl.records.SimpleMapMap) Fixed8(com.linkedin.pegasus.generator.test.idl.fixed.Fixed8) SimpleArray(com.linkedin.pegasus.generator.test.idl.records.SimpleArray) SimpleMap(com.linkedin.pegasus.generator.test.idl.records.SimpleMap) EmptyMap(com.linkedin.pegasus.generator.test.idl.records.EmptyMap) WithComplexTypesMap(com.linkedin.pegasus.generator.test.idl.maps.WithComplexTypesMap) Test(org.testng.annotations.Test)

Aggregations

Simple (com.linkedin.pegasus.generator.test.idl.records.Simple)4 SimpleMap (com.linkedin.pegasus.generator.test.idl.records.SimpleMap)4 Test (org.testng.annotations.Test)4 SimpleArray (com.linkedin.pegasus.generator.test.idl.records.SimpleArray)3 Fixed8 (com.linkedin.pegasus.generator.test.idl.fixed.Fixed8)2 Empty (com.linkedin.pegasus.generator.test.idl.records.Empty)2 CustomInt (com.linkedin.pegasus.generator.test.pdl.fixtures.CustomInt)2 IntegerArray (com.linkedin.data.template.IntegerArray)1 IntegerMap (com.linkedin.data.template.IntegerMap)1 WithCustomTypesArray (com.linkedin.pegasus.generator.test.idl.arrays.WithCustomTypesArray)1 WithCustomTypesArrayUnionArray (com.linkedin.pegasus.generator.test.idl.arrays.WithCustomTypesArrayUnionArray)1 CustomIntArray (com.linkedin.pegasus.generator.test.idl.customtypes.CustomIntArray)1 FruitsMap (com.linkedin.pegasus.generator.test.idl.enums.FruitsMap)1 Fixed8Array (com.linkedin.pegasus.generator.test.idl.fixed.Fixed8Array)1 Fixed8Map (com.linkedin.pegasus.generator.test.idl.fixed.Fixed8Map)1 WithComplexTypesMap (com.linkedin.pegasus.generator.test.idl.maps.WithComplexTypesMap)1 WithComplexTypesMapUnionMap (com.linkedin.pegasus.generator.test.idl.maps.WithComplexTypesMapUnionMap)1 EmptyMap (com.linkedin.pegasus.generator.test.idl.records.EmptyMap)1 SimpleArrayArray (com.linkedin.pegasus.generator.test.idl.records.SimpleArrayArray)1 SimpleArrayMap (com.linkedin.pegasus.generator.test.idl.records.SimpleArrayMap)1