/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2007-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.netmgt.correlation.ncs; import static org.junit.Assert.assertEquals; import static org.opennms.core.utils.InetAddressUtils.addr; import java.util.Arrays; import java.util.Collection; import org.junit.runner.RunWith; import org.opennms.netmgt.EventConstants; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.opennms.netmgt.correlation.CorrelationEngineRegistrar; import org.opennms.netmgt.correlation.drools.DroolsCorrelationEngine; import org.opennms.netmgt.dao.db.JUnitConfigurationEnvironment; import org.opennms.netmgt.mock.EventAnticipator; import org.opennms.netmgt.mock.MockEventIpcManager; import org.opennms.netmgt.model.events.EventBuilder; import org.opennms.netmgt.xml.event.Event; import org.opennms.test.ConfigurationTestUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.test.context.ContextConfiguration; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations={ "classpath:META-INF/opennms/applicationContext-datasource.xml", "classpath:META-INF/opennms/applicationContext-testDao.xml", "classpath*:META-INF/opennms/component-dao.xml", "classpath:META-INF/opennms/applicationContext-daemon.xml", "classpath:META-INF/opennms/correlation-engine.xml", "classpath:test-context.xml" }) @JUnitConfigurationEnvironment public abstract class CorrelationRulesTestCase { @Autowired @Qualifier("mock") private MockEventIpcManager m_eventIpcMgr; protected Integer m_anticipatedMemorySize = 0; @Autowired private CorrelationEngineRegistrar m_correlator; protected CorrelationRulesTestCase() { ConfigurationTestUtils.setRelativeHomeDirectory("src/test/opennms-home"); } public void setCorrelationEngineRegistrar(CorrelationEngineRegistrar correlator) { m_correlator = correlator; } protected void verify(DroolsCorrelationEngine engine) { getAnticipator().verifyAnticipated(0, 0, 0, 0, 0); if (m_anticipatedMemorySize != null) { assertEquals("Unexpected number of objects in working memory: "+engine.getMemoryObjects(), m_anticipatedMemorySize.intValue(), engine.getMemorySize()); } } protected DroolsCorrelationEngine findEngineByName(String engineName) { return (DroolsCorrelationEngine) m_correlator.findEngineByName(engineName); } protected void anticipate(Event... events) { anticipate(Arrays.asList(events)); } protected void anticipate(Collection<Event> events) { for(Event event : events) { getAnticipator().anticipateEvent(event); } } protected Event createRemoteNodeLostServiceEvent(int nodeId, String ipAddr, String svcName, int locationMonitor) { return createEvent(EventConstants.REMOTE_NODE_LOST_SERVICE_UEI, nodeId, ipAddr, svcName, locationMonitor); } protected Event createRemoteNodeRegainedServiceEvent(int nodeId, String ipAddr, String svcName, int locationMonitor) { return createEvent(EventConstants.REMOTE_NODE_REGAINED_SERVICE_UEI, nodeId, ipAddr, svcName, locationMonitor); } protected Event createEvent(String uei, int nodeId, String ipAddr, String svcName, int locationMonitor) { return new EventBuilder(uei, "test") .setNodeid(nodeId).setInterface(addr(ipAddr)) .setService(svcName) .addParam(EventConstants.PARM_LOCATION_MONITOR_ID, locationMonitor) .getEvent(); } protected Event createServiceEvent(String uei, int nodeId, String ipAddr, String svcName) { return new EventBuilder(uei, "test") .setNodeid(nodeId).setInterface(addr("192.168.1.1")) .setService("HTTP") .getEvent(); } /** * @return the anticipator */ protected EventAnticipator getAnticipator() { return m_eventIpcMgr.getEventAnticipator(); } }