Search in sources :

Example 1 with DeleteTableSegment

use of io.pravega.shared.protocol.netty.WireCommands.DeleteTableSegment in project pravega by pravega.

the class FailingRequestProcessorTest method testEverythingThrows.

@Test
public void testEverythingThrows() {
    assertThrows(IllegalStateException.class, () -> rp.hello(new Hello(0, 0)));
    assertThrows(IllegalStateException.class, () -> rp.setupAppend(new SetupAppend(0, null, "", "")));
    assertThrows(IllegalStateException.class, () -> rp.append(new Append("", null, 0, EMPTY_EVENT, 0)));
    assertThrows(IllegalStateException.class, () -> rp.readSegment(new ReadSegment("", 0, 0, "", 0)));
    assertThrows(IllegalStateException.class, () -> rp.updateSegmentAttribute(new UpdateSegmentAttribute(0, "", null, 0, 0, "")));
    assertThrows(IllegalStateException.class, () -> rp.getSegmentAttribute(new GetSegmentAttribute(0, "", null, "")));
    assertThrows(IllegalStateException.class, () -> rp.getStreamSegmentInfo(new WireCommands.GetStreamSegmentInfo(0, "", "")));
    assertThrows(IllegalStateException.class, () -> rp.createSegment(new CreateSegment(0, "", (byte) 0, 0, "", 0)));
    assertThrows(IllegalStateException.class, () -> rp.updateSegmentPolicy(new UpdateSegmentPolicy(0, "", (byte) 0, 0, "")));
    assertThrows(IllegalStateException.class, () -> rp.createTableSegment(new CreateTableSegment(0, "", false, 0, "", 0)));
    assertThrows(IllegalStateException.class, () -> rp.deleteTableSegment(new DeleteTableSegment(0, "", false, "")));
    assertThrows(IllegalStateException.class, () -> rp.updateTableEntries(new UpdateTableEntries(0, "", "", null, 0)));
    assertThrows(IllegalStateException.class, () -> rp.removeTableKeys(new RemoveTableKeys(0, "", "", null, 0)));
    assertThrows(IllegalStateException.class, () -> rp.readTable(new ReadTable(0, "", "", null)));
    assertThrows(IllegalStateException.class, () -> rp.readTableKeys(new ReadTableKeys(0, "", "", 0, null)));
    assertThrows(IllegalStateException.class, () -> rp.readTableEntries(new ReadTableEntries(0, "", "", 0, null)));
    assertThrows(IllegalStateException.class, () -> rp.mergeSegments(new MergeSegments(0, "", "", "")));
    assertThrows(IllegalStateException.class, () -> rp.sealSegment(new SealSegment(0, "", "")));
    assertThrows(IllegalStateException.class, () -> rp.truncateSegment(new TruncateSegment(0, "", 0, "")));
    assertThrows(IllegalStateException.class, () -> rp.deleteSegment(new DeleteSegment(0, "", "")));
    assertThrows(IllegalStateException.class, () -> rp.readTableEntries(new ReadTableEntries(0, "", "", 0, null)));
    assertThrows(IllegalStateException.class, () -> rp.createTableSegment(new CreateTableSegment(0, "", false, 0, "", 0)));
    assertThrows(IllegalStateException.class, () -> rp.readTableEntriesDelta(new ReadTableEntriesDelta(0, "", "", 0, 0)));
    assertThrows(IllegalStateException.class, () -> rp.createTransientSegment(new CreateTransientSegment(0, new UUID(0, 0), "", "")));
    assertThrows(IllegalStateException.class, () -> rp.connectionDropped());
}
Also used : ReadTableKeys(io.pravega.shared.protocol.netty.WireCommands.ReadTableKeys) DeleteTableSegment(io.pravega.shared.protocol.netty.WireCommands.DeleteTableSegment) UpdateSegmentAttribute(io.pravega.shared.protocol.netty.WireCommands.UpdateSegmentAttribute) ReadSegment(io.pravega.shared.protocol.netty.WireCommands.ReadSegment) DeleteSegment(io.pravega.shared.protocol.netty.WireCommands.DeleteSegment) ReadTable(io.pravega.shared.protocol.netty.WireCommands.ReadTable) ReadTableEntriesDelta(io.pravega.shared.protocol.netty.WireCommands.ReadTableEntriesDelta) CreateTransientSegment(io.pravega.shared.protocol.netty.WireCommands.CreateTransientSegment) UpdateSegmentPolicy(io.pravega.shared.protocol.netty.WireCommands.UpdateSegmentPolicy) SetupAppend(io.pravega.shared.protocol.netty.WireCommands.SetupAppend) Hello(io.pravega.shared.protocol.netty.WireCommands.Hello) CreateTableSegment(io.pravega.shared.protocol.netty.WireCommands.CreateTableSegment) MergeSegments(io.pravega.shared.protocol.netty.WireCommands.MergeSegments) SetupAppend(io.pravega.shared.protocol.netty.WireCommands.SetupAppend) ReadTableEntries(io.pravega.shared.protocol.netty.WireCommands.ReadTableEntries) TruncateSegment(io.pravega.shared.protocol.netty.WireCommands.TruncateSegment) GetSegmentAttribute(io.pravega.shared.protocol.netty.WireCommands.GetSegmentAttribute) RemoveTableKeys(io.pravega.shared.protocol.netty.WireCommands.RemoveTableKeys) UpdateTableEntries(io.pravega.shared.protocol.netty.WireCommands.UpdateTableEntries) UUID(java.util.UUID) CreateSegment(io.pravega.shared.protocol.netty.WireCommands.CreateSegment) SealSegment(io.pravega.shared.protocol.netty.WireCommands.SealSegment) Test(org.junit.Test)

Aggregations

CreateSegment (io.pravega.shared.protocol.netty.WireCommands.CreateSegment)1 CreateTableSegment (io.pravega.shared.protocol.netty.WireCommands.CreateTableSegment)1 CreateTransientSegment (io.pravega.shared.protocol.netty.WireCommands.CreateTransientSegment)1 DeleteSegment (io.pravega.shared.protocol.netty.WireCommands.DeleteSegment)1 DeleteTableSegment (io.pravega.shared.protocol.netty.WireCommands.DeleteTableSegment)1 GetSegmentAttribute (io.pravega.shared.protocol.netty.WireCommands.GetSegmentAttribute)1 Hello (io.pravega.shared.protocol.netty.WireCommands.Hello)1 MergeSegments (io.pravega.shared.protocol.netty.WireCommands.MergeSegments)1 ReadSegment (io.pravega.shared.protocol.netty.WireCommands.ReadSegment)1 ReadTable (io.pravega.shared.protocol.netty.WireCommands.ReadTable)1 ReadTableEntries (io.pravega.shared.protocol.netty.WireCommands.ReadTableEntries)1 ReadTableEntriesDelta (io.pravega.shared.protocol.netty.WireCommands.ReadTableEntriesDelta)1 ReadTableKeys (io.pravega.shared.protocol.netty.WireCommands.ReadTableKeys)1 RemoveTableKeys (io.pravega.shared.protocol.netty.WireCommands.RemoveTableKeys)1 SealSegment (io.pravega.shared.protocol.netty.WireCommands.SealSegment)1 SetupAppend (io.pravega.shared.protocol.netty.WireCommands.SetupAppend)1 TruncateSegment (io.pravega.shared.protocol.netty.WireCommands.TruncateSegment)1 UpdateSegmentAttribute (io.pravega.shared.protocol.netty.WireCommands.UpdateSegmentAttribute)1 UpdateSegmentPolicy (io.pravega.shared.protocol.netty.WireCommands.UpdateSegmentPolicy)1 UpdateTableEntries (io.pravega.shared.protocol.netty.WireCommands.UpdateTableEntries)1