/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2009-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.provision.detector; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import java.net.UnknownHostException; import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.SQLException; import javax.sql.DataSource; import org.apache.log4j.Level; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.opennms.core.utils.BeanUtils; import org.opennms.core.test.MockLogAppender; import org.opennms.core.test.OpenNMSJUnit4ClassRunner; import org.opennms.core.utils.InetAddressUtils; import org.opennms.netmgt.dao.db.JUnitConfigurationEnvironment; import org.opennms.netmgt.dao.db.JUnitTemporaryDatabase; import org.opennms.netmgt.provision.detector.jdbc.JdbcQueryDetector; import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; @RunWith(OpenNMSJUnit4ClassRunner.class) @ContextConfiguration(locations= { "classpath:/META-INF/opennms/detectors.xml", "classpath:/META-INF/opennms/applicationContext-dao.xml", "classpath*:/META-INF/opennms/component-dao.xml" }) @JUnitConfigurationEnvironment @JUnitTemporaryDatabase public class JdbcQueryDetectorTest implements InitializingBean { @Autowired public JdbcQueryDetector m_detector; @Autowired public DataSource m_dataSource; @Override public void afterPropertiesSet() throws Exception { BeanUtils.assertAutowiring(this); } @Before public void setUp() throws SQLException{ MockLogAppender.setupLogging(); String url = null; String username = null; Connection conn = null; try { conn = m_dataSource.getConnection(); DatabaseMetaData metaData = conn.getMetaData(); url = metaData.getURL(); username = metaData.getUserName(); conn.close(); } catch (SQLException e) { e.printStackTrace(); conn.close(); } m_detector.setDbDriver("org.postgresql.Driver"); m_detector.setPort(5432); m_detector.setUrl(url); m_detector.setUser(username); m_detector.setPassword(""); m_detector.setSqlQuery("select count(nodeid) from node"); } @After public void tearDown(){ MockLogAppender.assertNotGreaterOrEqual(Level.FATAL); } @Test public void testDetectorSuccess() throws UnknownHostException{ m_detector.init(); assertTrue("JDBCQueryDetector should work", m_detector.isServiceDetected(InetAddressUtils.addr("127.0.0.1"))); } @Test public void testStoredProcedureFail() throws UnknownHostException{ m_detector.setSqlQuery("bogus"); m_detector.init(); assertFalse(m_detector.isServiceDetected(InetAddressUtils.addr("127.0.0.1"))); } @Test public void testWrongUserName() throws UnknownHostException{ m_detector.setUser("wrongUserName"); m_detector.init(); assertFalse(m_detector.isServiceDetected(InetAddressUtils.addr("127.0.0.1")) ); } }