Esempio n. 1
0
 @Test
 public void tstFrom2() {
   Wire wire =
       CSVWire.from(
           "Symbol,Company,Price,Change,ChangePercent,Day's Volume\n"
               + "III,3i Group,479.4,12,2.44,2387043\n"
               + "3IN,3i Infrastructure,164.7,0.1,0.06,429433\n"
               + "AA,AA,325.9,5.7,1.72,1469834\n");
   StringBuilder row = new StringBuilder();
   assertTrue(wire.hasMore());
   wire.readEventName(row)
       .marshallable(
           w -> {
             assertEquals("III", row.toString());
             wire.read(() -> "company")
                 .text(this, (o, s) -> assertEquals("3i Group", s))
                 .read(() -> "price")
                 .float64(this, (o, d) -> assertEquals(479.4, d, 0.0))
                 .read(() -> "change")
                 .float64(this, (o, d) -> assertEquals(12, d, 0.0))
                 .read(() -> "changePercent")
                 .float64(this, (o, d) -> assertEquals(2.44, d, 0.0))
                 .read(() -> "daysVolume")
                 .int64(this, (o, d) -> assertEquals(2387043, d));
           });
   assertTrue(wire.hasMore());
   wire.readEventName(row)
       .marshallable(
           w -> {
             assertEquals("3IN", row.toString());
             wire.read(() -> "company")
                 .text(this, (o, s) -> assertEquals("3i Infrastructure", s))
                 .read(() -> "price")
                 .float64(this, (o, d) -> assertEquals(164.7, d, 0.0))
                 .read(() -> "change")
                 .float64(this, (o, d) -> assertEquals(0.1, d, 0.0))
                 .read(() -> "changePercent")
                 .float64(this, (o, d) -> assertEquals(0.06, d, 0.0))
                 .read(() -> "daysVolume")
                 .int64(this, (o, d) -> assertEquals(429433, d));
           });
   assertTrue(wire.hasMore());
   wire.readEventName(row)
       .marshallable(
           w -> {
             assertEquals("AA", row.toString());
             wire.read(() -> "company")
                 .text(this, (o, s) -> assertEquals("AA", s))
                 .read(() -> "price")
                 .float64(this, (o, d) -> assertEquals(325.9, d, 0.0))
                 .read(() -> "change")
                 .float64(this, (o, d) -> assertEquals(5.7, d, 0.0))
                 .read(() -> "changePercent")
                 .float64(this, (o, d) -> assertEquals(1.72, d, 0.0))
                 .read(() -> "daysVolume")
                 .int64(this, (o, d) -> assertEquals(1469834, d));
           });
   assertFalse(wire.hasMore());
 }
Esempio n. 2
-1
 @Test
 public void testFrom() throws Exception {
   Wire wire =
       CSVWire.from(
           "heading1, heading2,heading3\n"
               + "data1, data2, \"data three\"\n"
               + "row2, row2b, row2c\n");
   assertTrue(wire.hasMore());
   StringBuilder row = new StringBuilder();
   wire.readEventName(row)
       .marshallable(
           w -> {
             assertEquals("data1", row.toString());
             wire.read(() -> "heading2")
                 .text(this, (o, s) -> assertEquals("data2", s))
                 .read(() -> "heading3")
                 .text(this, (o, s) -> assertEquals("data three", s));
           });
   assertTrue(wire.hasMore());
   wire.readEventName(row)
       .marshallable(
           w -> {
             assertEquals("row2", row.toString());
             wire.read(() -> "heading2")
                 .text(this, (o, s) -> assertEquals("row2b", s))
                 .read(() -> "heading3")
                 .text(this, (o, s) -> assertEquals("row2c", s));
           });
   assertFalse(wire.hasMore());
 }