/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2010-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.rt; import java.io.File; import java.util.List; import junit.framework.TestCase; import org.opennms.core.test.MockLogAppender; import org.opennms.core.utils.LogUtils; public class RequestTrackerTest extends TestCase { /** * Test Cases for RtTicketerPlugin * * @author <a href="mailto:jonathan@opennms.org">Jonathan Sartin</a> */ private RequestTracker m_tracker; private RTTicket m_ticket; /** * Don't run this test unless the runRtTests property is set to "true". */ @Override protected void runTest() throws Throwable { if (!isRunTest()) { System.err.println("Skipping test '" + getName() + "' because system property '" + getRunTestProperty() + "' is not set to 'true'"); return; } try { System.err.println("------------------- begin " + getName() + " ---------------------"); super.runTest(); } finally { System.err.println("------------------- end " + getName() + " -----------------------"); } } private boolean isRunTest() { return Boolean.getBoolean(getRunTestProperty()); } private String getRunTestProperty() { return "runRtTests"; } @Override protected void setUp() throws Exception { MockLogAppender.setupLogging(); final String testHome = System.getProperty("user.home") + File.separatorChar + ".opennms" + File.separatorChar + "test-home"; final File testProp = new File(testHome + File.separatorChar + "etc" + File.separatorChar + "rt.properties"); if (testProp.exists()) { LogUtils.debugf(this, "%s exists, using it instead of src/test/opennms-home", testHome); System.setProperty("opennms.home", testHome); } else { System.setProperty("opennms.home", "src" + File.separatorChar + "test" + File.separatorChar + "opennms-home"); } RtConfigDao dao = new ReadOnlyRtConfigDao(); m_tracker = new RequestTracker(dao.getBaseURL(), dao.getUsername(), dao.getPassword(), dao.getTimeout(), dao.getRetry()); m_ticket = new RTTicket(); m_ticket.setQueue(dao.getQueue()); m_ticket.setStatus("open"); m_ticket.setSubject("Ticket Subject"); m_ticket.setText("Ticket Text"); m_ticket.setRequestor("root@localhost"); } public void testCreateAndGetTicket() throws Exception { Long id = m_tracker.createTicket(m_ticket); assertTrue(id != 0); final RTTicket ticket = m_tracker.getTicket(id, false); assertNotNull(ticket); assertEquals("Ticket Subject", ticket.getSubject()); } public void testCreateAndUpdateTicket() throws Exception { Long id = m_tracker.createTicket(m_ticket); assertTrue(id != 0); m_tracker.updateTicket(id, "Status: stalled"); final RTTicket newTicket = m_tracker.getTicket(id, false); assertEquals("stalled", newTicket.getStatus()); } public void testCreateMultilineTicket() throws Exception { RTTicket ticket = m_ticket.copy(); final String text = "This is a test.\n\nmultiline"; ticket.setText(text); Long id = m_tracker.createTicket(ticket); assertTrue(id != 0); ticket = m_tracker.getTicket(id, true); assertEquals(text, ticket.getText()); } public void testGetUser() throws Exception { RTUser user = m_tracker.getUserInfo("root"); assertNotNull(user); assertNotNull(user.getId()); assertEquals("Enoch Root", user.getRealname()); } public void testGetQueue() throws Exception { RTQueue queue = m_tracker.getQueue(1); assertNotNull("queue should not be null", queue); } public void testGetQueuesForUser() throws Exception { List<RTQueue> queues = m_tracker.getQueuesForUser("root"); LogUtils.debugf(this, "queues = %s", queues); assertTrue("there must be at least one queue", queues.size() > 0); } public void testGetTicketsForQueue() throws Exception { List<RTTicket> tickets = m_tracker.getTicketsForQueue("General", 10); LogUtils.debugf(this, "tickets = %s", tickets); assertTrue("there must be at least one ticket", tickets.size() > 0); } }