Search in sources :

Example 1 with View

use of org.opennms.netmgt.config.viewsdisplay.View in project opennms by OpenNMS.

the class DefaultCategoryStatusServiceTest method testGetCategoriesStatus.

public void testGetCategoriesStatus() {
    View view = new View();
    Section section = new Section();
    section.setSectionName("Section One");
    section.addCategory("Category One");
    OnmsOutage outage = new OnmsOutage();
    Collection<OnmsOutage> outages = new ArrayList<OnmsOutage>();
    outage.setId(300);
    OnmsServiceType svcType = new OnmsServiceType();
    svcType.setId(3);
    svcType.setName("HTTP");
    OnmsNode node = new OnmsNode();
    node.setId(1);
    node.setLabel("superLabel");
    OnmsSnmpInterface snmpIface = new OnmsSnmpInterface(node, 1);
    OnmsIpInterface iface = new OnmsIpInterface("192.168.1.1", node);
    iface.setSnmpInterface(snmpIface);
    //iface.setId(9);
    OnmsMonitoredService monSvc = new OnmsMonitoredService(iface, svcType);
    outage.setMonitoredService(monSvc);
    outages.add(outage);
    view.addSection(section);
    List<String> services = new ArrayList<String>();
    services.add("HTTP");
    //		ServiceSelector selector = new ServiceSelector("isHTTP",(List<String>) services);
    expect(viewDisplayDao.getView()).andReturn(view);
    expect(categoryDao.getCategoryByLabel("Category One")).andReturn(createCategoryFromLabel("Category One"));
    expect(outageDao.matchingCurrentOutages(isA(ServiceSelector.class))).andReturn(outages);
    replay(categoryDao);
    replay(viewDisplayDao);
    replay(outageDao);
    Collection<StatusSection> statusSections = categoryStatusService.getCategoriesStatus();
    verify(viewDisplayDao);
    verify(categoryDao);
    verify(outageDao);
    assertEquals("Wrong Number of StatusSections", view.getSections().size(), statusSections.size());
    for (StatusSection statusSection : statusSections) {
        assertEquals("StatusSection Name Does Not Match", "Section One", statusSection.getName());
        Collection<StatusCategory> statusCategorys = statusSection.getCategories();
        for (StatusCategory statusCategory : statusCategorys) {
            assertEquals("StatusCategoryName does not match", "Category One", statusCategory.getLabel());
            //assertEquals("Category Comment Does not match","Category One Comment",statusCategory.getComment());				
            assertTrue("Nodes >= 1", statusCategory.getNodes().size() >= 1);
            for (StatusNode statusNode : statusCategory.getNodes()) {
                assertEquals("Label does not match", "superLabel", statusNode.getLabel());
            }
        }
    }
}
Also used : OnmsOutage(org.opennms.netmgt.model.OnmsOutage) OnmsNode(org.opennms.netmgt.model.OnmsNode) StatusNode(org.opennms.web.svclayer.catstatus.model.StatusNode) ServiceSelector(org.opennms.netmgt.model.ServiceSelector) ArrayList(java.util.ArrayList) OnmsSnmpInterface(org.opennms.netmgt.model.OnmsSnmpInterface) StatusSection(org.opennms.web.svclayer.catstatus.model.StatusSection) View(org.opennms.netmgt.config.viewsdisplay.View) StatusSection(org.opennms.web.svclayer.catstatus.model.StatusSection) Section(org.opennms.netmgt.config.viewsdisplay.Section) OnmsMonitoredService(org.opennms.netmgt.model.OnmsMonitoredService) StatusCategory(org.opennms.web.svclayer.catstatus.model.StatusCategory) OnmsIpInterface(org.opennms.netmgt.model.OnmsIpInterface) OnmsServiceType(org.opennms.netmgt.model.OnmsServiceType)

Example 2 with View

use of org.opennms.netmgt.config.viewsdisplay.View in project opennms by OpenNMS.

the class ViewsDisplayFactory method getView.

/**
     * Can be null
     *
     * @param viewName a {@link java.lang.String} object.
     * @return a {@link org.opennms.netmgt.config.viewsdisplay.View} object.
     * @throws java.io.IOException if any.
     */
public View getView(String viewName) throws IOException {
    if (viewName == null) {
        throw new IllegalArgumentException("Cannot take null parameters.");
    }
    updateFromFile();
    View view = m_viewsMap.get(viewName);
    return view;
}
Also used : View(org.opennms.netmgt.config.viewsdisplay.View)

Example 3 with View

use of org.opennms.netmgt.config.viewsdisplay.View in project opennms by OpenNMS.

the class DefaultCategoryStatusServiceTest method testCategoryGroupsReturnedWhenNoneExist.

public void testCategoryGroupsReturnedWhenNoneExist() {
    View view = new View();
    expect(viewDisplayDao.getView()).andReturn(view);
    replay(viewDisplayDao);
    Collection<StatusSection> categories = categoryStatusService.getCategoriesStatus();
    verify(viewDisplayDao);
    assertTrue("Collection Should Be Empty", categories.isEmpty());
}
Also used : StatusSection(org.opennms.web.svclayer.catstatus.model.StatusSection) View(org.opennms.netmgt.config.viewsdisplay.View)

Example 4 with View

use of org.opennms.netmgt.config.viewsdisplay.View in project opennms by OpenNMS.

the class ViewsDisplayFactory method updateViewsMap.

private void updateViewsMap() {
    Map<String, View> viewsMap = new HashMap<String, View>();
    for (View view : m_viewInfo.getViews()) {
        viewsMap.put(view.getViewName(), view);
    }
    m_viewsMap = viewsMap;
}
Also used : HashMap(java.util.HashMap) View(org.opennms.netmgt.config.viewsdisplay.View)

Example 5 with View

use of org.opennms.netmgt.config.viewsdisplay.View in project opennms by OpenNMS.

the class DefaultCategoryStatusService method getCategoriesStatus.

/**
	 * <p>getCategoriesStatus</p>
	 *
	 * @return a {@link java.util.Collection} object.
	 */
@Override
public Collection<StatusSection> getCategoriesStatus() {
    View view = m_viewDisplayDao.getView();
    Collection<Section> sections = getSectionsForView(view);
    Collection<StatusSection> statusSections = new ArrayList<StatusSection>();
    for (Section section : sections) {
        statusSections.add(createSection(section));
    }
    return statusSections;
}
Also used : ArrayList(java.util.ArrayList) StatusSection(org.opennms.web.svclayer.catstatus.model.StatusSection) View(org.opennms.netmgt.config.viewsdisplay.View) StatusSection(org.opennms.web.svclayer.catstatus.model.StatusSection) Section(org.opennms.netmgt.config.viewsdisplay.Section)

Aggregations

View (org.opennms.netmgt.config.viewsdisplay.View)5 StatusSection (org.opennms.web.svclayer.catstatus.model.StatusSection)3 ArrayList (java.util.ArrayList)2 Section (org.opennms.netmgt.config.viewsdisplay.Section)2 HashMap (java.util.HashMap)1 OnmsIpInterface (org.opennms.netmgt.model.OnmsIpInterface)1 OnmsMonitoredService (org.opennms.netmgt.model.OnmsMonitoredService)1 OnmsNode (org.opennms.netmgt.model.OnmsNode)1 OnmsOutage (org.opennms.netmgt.model.OnmsOutage)1 OnmsServiceType (org.opennms.netmgt.model.OnmsServiceType)1 OnmsSnmpInterface (org.opennms.netmgt.model.OnmsSnmpInterface)1 ServiceSelector (org.opennms.netmgt.model.ServiceSelector)1 StatusCategory (org.opennms.web.svclayer.catstatus.model.StatusCategory)1 StatusNode (org.opennms.web.svclayer.catstatus.model.StatusNode)1