Search in sources :

Example 1 with Ignore

use of org.opennms.netmgt.bsm.service.model.functions.map.Ignore in project opennms by OpenNMS.

the class BusinessServiceEdgeEditWindow method getMapFunction.

@SuppressWarnings("unchecked")
private MapFunction getMapFunction() {
    try {
        final MapFunction mapFunction = ((Class<? extends MapFunction>) m_mapFunctionSelect.getValue()).newInstance();
        mapFunction.accept(new MapFunctionVisitor<Void>() {

            @Override
            public Void visit(Decrease decrease) {
                return null;
            }

            @Override
            public Void visit(Identity identity) {
                return null;
            }

            @Override
            public Void visit(Ignore ignore) {
                return null;
            }

            @Override
            public Void visit(Increase increase) {
                return null;
            }

            @Override
            public Void visit(SetTo setTo) {
                setTo.setStatus((Status) m_mapFunctionSeveritySelect.getValue());
                return null;
            }
        });
        return mapFunction;
    } catch (final InstantiationException | IllegalAccessException e) {
        throw Throwables.propagate(e);
    }
}
Also used : Status(org.opennms.netmgt.bsm.service.model.Status) Ignore(org.opennms.netmgt.bsm.service.model.functions.map.Ignore) Increase(org.opennms.netmgt.bsm.service.model.functions.map.Increase) MapFunction(org.opennms.netmgt.bsm.service.model.functions.map.MapFunction) Decrease(org.opennms.netmgt.bsm.service.model.functions.map.Decrease) Identity(org.opennms.netmgt.bsm.service.model.functions.map.Identity) SetTo(org.opennms.netmgt.bsm.service.model.functions.map.SetTo)

Example 2 with Ignore

use of org.opennms.netmgt.bsm.service.model.functions.map.Ignore in project opennms by OpenNMS.

the class BusinessServiceResponseDTOMarshalTest method data.

@Parameterized.Parameters
public static Collection<Object[]> data() throws IOException {
    final MapFunctionDTO ignoreDto = createMapFunctionDTO(new Ignore());
    final BusinessServiceResponseDTO bs = new BusinessServiceResponseDTO();
    bs.setId(1L);
    bs.setName("Web Servers");
    bs.addAttribute("dc", "RDU");
    bs.setLocation(new ResourceLocation(ApiVersion.Version2, "business-services", "1"));
    bs.setOperationalStatus(Status.CRITICAL);
    bs.setReduceFunction(createReduceFunctionDTO(new HighestSeverity()));
    bs.getReductionKeys().add(createReductionKeyEdgeResponse(1L, "myReductionKeyA", ignoreDto, Status.CRITICAL, new ResourceLocation(ApiVersion.Version2, "test/1"), "reduction-key-a-friendly-name"));
    bs.getReductionKeys().add(createReductionKeyEdgeResponse(2L, "myReductionKeyB", ignoreDto, Status.NORMAL, new ResourceLocation(ApiVersion.Version2, "test/2"), "reduction-key-b-friendly-name"));
    bs.getChildren().add(createChildEdgeResponse(3L, 2L, ignoreDto, Status.MAJOR, new ResourceLocation(ApiVersion.Version2, "test/3")));
    bs.getChildren().add(createChildEdgeResponse(4L, 3L, ignoreDto, Status.MAJOR, new ResourceLocation(ApiVersion.Version2, "test/4")));
    bs.getIpServices().add(createIpServiceEdgeResponse(5L, createIpServiceResponse(), ignoreDto, Status.MINOR, new ResourceLocation(ApiVersion.Version2, "test/5"), "ip-service-friendly-name"));
    bs.getParentServices().add(11L);
    bs.getParentServices().add(12L);
    return Arrays.asList(new Object[][] { { BusinessServiceResponseDTO.class, bs, "{" + "  \"location\" : \"/api/v2/business-services/1\"," + "  \"name\" : \"Web Servers\"," + "  \"id\" : 1," + "  \"attributes\" : {" + "    \"attribute\" : [ {" + "      \"key\" : \"dc\"," + "      \"value\" : \"RDU\"" + "    } ]" + "  }," + "  \"operational-status\" : \"CRITICAL\"," + "  \"reduce-function\" : {" + "    \"type\" : \"HighestSeverity\"," + "    \"properties\" : { }" + "  }," + "  \"reduction-key-edges\" : [ {" + "    \"id\" : 1," + "    \"operational-status\" : \"CRITICAL\"," + "    \"map-function\" : {" + "      \"type\" : \"Ignore\"," + "      \"properties\" : { }" + "    }," + "    \"weight\" : 9," + "    \"location\" : \"/api/v2/test/1\"," + "    \"reduction-keys\" : [ \"myReductionKeyA\" ]," + "    \"friendly-name\" : \"reduction-key-a-friendly-name\"" + "  }, {" + "    \"id\" : 2," + "    \"operational-status\" : \"NORMAL\"," + "    \"map-function\" : {" + "      \"type\" : \"Ignore\"," + "      \"properties\" : { }" + "    }," + "    \"weight\" : 9," + "    \"location\" : \"/api/v2/test/2\"," + "    \"reduction-keys\" : [ \"myReductionKeyB\" ]," + "    \"friendly-name\" : \"reduction-key-b-friendly-name\"" + "  } ]," + "  \"child-edges\" : [ {" + "    \"id\" : 3," + "    \"operational-status\" : \"MAJOR\"," + "    \"map-function\" : {" + "      \"type\" : \"Ignore\"," + "      \"properties\" : { }" + "    }," + "    \"weight\" : 7," + "    \"location\" : \"/api/v2/test/3\"," + "    \"reduction-keys\" : [ ]," + "    \"child-id\" : 2" + "  }, {" + "    \"id\" : 4," + "    \"operational-status\" : \"MAJOR\"," + "    \"map-function\" : {" + "      \"type\" : \"Ignore\"," + "      \"properties\" : { }" + "    }," + "    \"weight\" : 7," + "    \"location\" : \"/api/v2/test/4\"," + "    \"reduction-keys\" : [ ]," + "    \"child-id\" : 3" + "  } ]," + "  \"ip-service-edges\" : [ {" + "    \"id\" : 5," + "    \"operational-status\" : \"MINOR\"," + "    \"map-function\" : {" + "      \"type\" : \"Ignore\"," + "      \"properties\" : { }" + "    }," + "    \"weight\" : 5," + "    \"location\" : \"/api/v2/test/5\"," + "    \"reduction-keys\" : [ \"key1\", \"key2\" ]," + "    \"ip-service\" : {" + "      \"location\" : \"/api/v2/business-services/ip-services/17\"," + "      \"id\" : 17," + "      \"node-label\" : \"dummy\"," + "      \"service-name\" : \"ICMP\"," + "      \"ip-address\" : \"1.1.1.1\"" + "    }," + "    \"friendly-name\" : \"ip-service-friendly-name\"" + "  } ]," + "  \"parent-services\" : [ 11, 12 ]" + "}", "<business-service>\n" + "   <id>1</id>\n" + "   <name>Web Servers</name>\n" + "   <attributes>\n" + "      <attribute>\n" + "         <key>dc</key>\n" + "         <value>RDU</value>\n" + "      </attribute>\n" + "   </attributes>\n" + "   <ip-service-edges>\n" + "      <ip-service-edge>\n" + "         <id>5</id>\n" + "         <operational-status>MINOR</operational-status>\n" + "         <map-function>\n" + "            <type>Ignore</type>\n" + "         </map-function>\n" + "         <location>/api/v2/test/5</location>\n" + "         <reduction-keys>\n" + "            <reduction-key>key1</reduction-key>\n" + "            <reduction-key>key2</reduction-key>\n" + "         </reduction-keys>\n" + "         <weight>5</weight>\n" + "         <ip-service>\n" + "            <id>17</id>\n" + "            <service-name>ICMP</service-name>\n" + "            <node-label>dummy</node-label>\n" + "            <ip-address>1.1.1.1</ip-address>\n" + "            <location>/api/v2/business-services/ip-services/17</location>\n" + "         </ip-service>\n" + "         <friendly-name>ip-service-friendly-name</friendly-name>\n" + "      </ip-service-edge>\n" + "   </ip-service-edges>\n" + "   <reduction-key-edges>\n" + "      <reduction-key-edge>\n" + "         <id>1</id>\n" + "         <operational-status>CRITICAL</operational-status>\n" + "         <map-function>\n" + "            <type>Ignore</type>\n" + "         </map-function>\n" + "         <location>/api/v2/test/1</location>\n" + "         <reduction-keys>\n" + "            <reduction-key>myReductionKeyA</reduction-key>\n" + "         </reduction-keys>\n" + "         <weight>9</weight>\n" + "         <friendly-name>reduction-key-a-friendly-name</friendly-name>\n" + "      </reduction-key-edge>\n" + "      <reduction-key-edge>\n" + "         <id>2</id>\n" + "         <operational-status>NORMAL</operational-status>\n" + "         <map-function>\n" + "            <type>Ignore</type>\n" + "         </map-function>\n" + "         <location>/api/v2/test/2</location>\n" + "         <reduction-keys>\n" + "            <reduction-key>myReductionKeyB</reduction-key>\n" + "         </reduction-keys>\n" + "         <weight>9</weight>\n" + "         <friendly-name>reduction-key-b-friendly-name</friendly-name>\n" + "      </reduction-key-edge>\n" + "   </reduction-key-edges>\n" + "   <child-edges>\n" + "      <child-edge>\n" + "         <id>3</id>\n" + "         <operational-status>MAJOR</operational-status>\n" + "         <map-function>\n" + "            <type>Ignore</type>\n" + "         </map-function>\n" + "         <location>/api/v2/test/3</location>\n" + "         <reduction-keys/>\n" + "         <weight>7</weight>\n" + "         <child-id>2</child-id>\n" + "      </child-edge>\n" + "      <child-edge>\n" + "         <id>4</id>\n" + "         <operational-status>MAJOR</operational-status>\n" + "         <map-function>\n" + "            <type>Ignore</type>\n" + "         </map-function>\n" + "         <location>/api/v2/test/4</location>\n" + "         <reduction-keys/>\n" + "         <weight>7</weight>\n" + "         <child-id>3</child-id>\n" + "      </child-edge>\n" + "   </child-edges>\n" + "   <parent-services>\n" + "      <parent-service>11</parent-service>\n" + "      <parent-service>12</parent-service>\n" + "   </parent-services>\n" + "   <reduce-function>\n" + "      <type>HighestSeverity</type>\n" + "   </reduce-function>\n" + "   <operational-status>CRITICAL</operational-status>\n" + "   <location>/api/v2/business-services/1</location>\n" + "</business-service>" } });
}
Also used : Ignore(org.opennms.netmgt.bsm.service.model.functions.map.Ignore) TestHelper.createMapFunctionDTO(org.opennms.web.rest.v2.bsm.model.TestHelper.createMapFunctionDTO) HighestSeverity(org.opennms.netmgt.bsm.service.model.functions.reduce.HighestSeverity) ResourceLocation(org.opennms.web.rest.api.ResourceLocation)

Example 3 with Ignore

use of org.opennms.netmgt.bsm.service.model.functions.map.Ignore in project opennms by OpenNMS.

the class AbstractBusinessServiceRestServiceIT method canUpdateBusinessService.

@Test
public void canUpdateBusinessService() throws Exception {
    // initialize
    BusinessServiceEntity bs = new BusinessServiceEntityBuilder().name("Dummy Service").addAttribute("some-key", "some-value").addReductionKey("key1", new IdentityEntity()).addReductionKey("key2-deleteMe", new IdentityEntity()).reduceFunction(new HighestSeverityEntity()).toEntity();
    final Long serviceId = m_businessServiceDao.save(bs);
    m_businessServiceDao.flush();
    // update
    BusinessServiceRequestDTO requestDTO = toRequestDto(bs);
    requestDTO.setName("New Name");
    requestDTO.getAttributes().put("key", "value");
    requestDTO.getReductionKeys().clear();
    requestDTO.addReductionKey("key1updated", new FunctionsManager().getMapFunctionDTO(new Ignore()), Edge.DEFAULT_WEIGHT);
    sendData(PUT, getMediaType(), "/business-services/" + serviceId, marshal(requestDTO), 204);
    // Reload from database and verify changes
    bs = m_businessServiceDao.get(serviceId);
    Assert.assertEquals(requestDTO.getName(), bs.getName());
    Assert.assertEquals(requestDTO.getAttributes(), bs.getAttributes());
    Assert.assertEquals(1, bs.getReductionKeyEdges().size());
    Assert.assertEquals(1, bs.getEdges().size());
    Assert.assertEquals(1, m_businessServiceDao.findAll().size());
    Assert.assertEquals(Sets.newHashSet(), bs.getIpServiceEdges());
    BusinessServiceResponseDTO responseDTO = verifyResponse(bs);
    verifyReductionKey("key1updated", responseDTO);
}
Also used : Ignore(org.opennms.netmgt.bsm.service.model.functions.map.Ignore) FunctionsManager(org.opennms.web.rest.v2.bsm.model.meta.FunctionsManager) BusinessServiceResponseDTO(org.opennms.web.rest.v2.bsm.model.BusinessServiceResponseDTO) BusinessServiceRequestDTO(org.opennms.web.rest.v2.bsm.model.BusinessServiceRequestDTO) BusinessServiceEntity(org.opennms.netmgt.bsm.persistence.api.BusinessServiceEntity) HighestSeverityEntity(org.opennms.netmgt.bsm.persistence.api.functions.reduce.HighestSeverityEntity) BusinessServiceEntityBuilder(org.opennms.netmgt.bsm.test.BusinessServiceEntityBuilder) IdentityEntity(org.opennms.netmgt.bsm.persistence.api.functions.map.IdentityEntity) Test(org.junit.Test)

Aggregations

Ignore (org.opennms.netmgt.bsm.service.model.functions.map.Ignore)3 Test (org.junit.Test)1 BusinessServiceEntity (org.opennms.netmgt.bsm.persistence.api.BusinessServiceEntity)1 IdentityEntity (org.opennms.netmgt.bsm.persistence.api.functions.map.IdentityEntity)1 HighestSeverityEntity (org.opennms.netmgt.bsm.persistence.api.functions.reduce.HighestSeverityEntity)1 Status (org.opennms.netmgt.bsm.service.model.Status)1 Decrease (org.opennms.netmgt.bsm.service.model.functions.map.Decrease)1 Identity (org.opennms.netmgt.bsm.service.model.functions.map.Identity)1 Increase (org.opennms.netmgt.bsm.service.model.functions.map.Increase)1 MapFunction (org.opennms.netmgt.bsm.service.model.functions.map.MapFunction)1 SetTo (org.opennms.netmgt.bsm.service.model.functions.map.SetTo)1 HighestSeverity (org.opennms.netmgt.bsm.service.model.functions.reduce.HighestSeverity)1 BusinessServiceEntityBuilder (org.opennms.netmgt.bsm.test.BusinessServiceEntityBuilder)1 ResourceLocation (org.opennms.web.rest.api.ResourceLocation)1 BusinessServiceRequestDTO (org.opennms.web.rest.v2.bsm.model.BusinessServiceRequestDTO)1 BusinessServiceResponseDTO (org.opennms.web.rest.v2.bsm.model.BusinessServiceResponseDTO)1 TestHelper.createMapFunctionDTO (org.opennms.web.rest.v2.bsm.model.TestHelper.createMapFunctionDTO)1 FunctionsManager (org.opennms.web.rest.v2.bsm.model.meta.FunctionsManager)1