Beispiel #1
0
  /**
   * Execute the action
   *
   * @throws IOException
   * @throws ActionException
   */
  @Test
  public void executeActionTest() throws IOException, ActionException {
    action.setModelToUpdate(getComputerSystem());
    // Add params
    GRETunnelService greTunnelService = getGRETunnelService();
    action.setParams(greTunnelService);

    ActionResponse response = action.execute(protocolsessionmanager);
    Assert.assertTrue(response.getActionID().equals(ActionConstants.DELETETUNNEL));

    org.opennaas.extensions.router.model.System computerSystem =
        (org.opennaas.extensions.router.model.System) action.getModelToUpdate();
    Assert.assertNotNull(computerSystem);
  }