use of org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.action.rev140714.dst.choice.grouping.dst.choice.DstOfMplsLabelCase in project genius by opendaylight.
the class ActionRegMoveTest method actionInfoTestForRegMoveToMplsAction.
@Test
public void actionInfoTestForRegMoveToMplsAction() {
ActionInfo actionInfo = new ActionRegMove(1, NxmNxReg1.class, 0, 31);
Action action = actionInfo.buildAction();
assertTrue(action.getAction() instanceof NxActionRegMoveNodesNodeTableFlowApplyActionsCase);
NxActionRegMoveNodesNodeTableFlowApplyActionsCase actionsCase = (NxActionRegMoveNodesNodeTableFlowApplyActionsCase) action.getAction();
NxRegMove nxRegMove = actionsCase.getNxRegMove();
assertTrue(nxRegMove.getDst().getDstChoice() instanceof DstOfMplsLabelCase);
assertEquals((Integer) 0, nxRegMove.getDst().getStart());
assertEquals((Integer) 31, nxRegMove.getDst().getEnd());
}
Aggregations