com.basistech.m2e.code.quality.findbugs.tests.EclipseFindbugsProjectConfigurationTest.java Source code

Java tutorial

Introduction

Here is the source code for com.basistech.m2e.code.quality.findbugs.tests.EclipseFindbugsProjectConfigurationTest.java

Source

/*******************************************************************************
 * Copyright (c) 2012-2013 Red Hat, Inc.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/
package com.basistech.m2e.code.quality.findbugs.tests;

import java.util.List;
import java.util.Map;

import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IncrementalProjectBuilder;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.m2e.tests.common.AbstractMavenProjectTestCase;

import de.tobject.findbugs.builder.FindBugsWorker;
import de.tobject.findbugs.builder.ResourceUtils;
import de.tobject.findbugs.builder.WorkItem;

@SuppressWarnings("restriction")
public class EclipseFindbugsProjectConfigurationTest extends AbstractMavenProjectTestCase {

    private static final String FINDBUGS_MARKER = "edu.umd.cs.findbugs.plugin.eclipse.findbugsMarker";

    public void testFindbugsCheck() throws Exception {
        runFindBugsAndFindMarkers("projects/findbugs-check/pom.xml", 2);
    }

    public void testFindbugsFindbugs() throws Exception {
        runFindBugsAndFindMarkers("projects/findbugs-findbugs/pom.xml", 2);
    }

    private void runFindBugsAndFindMarkers(String path, int markerCount) throws Exception {
        IProject p = importProject(path);

        p.build(IncrementalProjectBuilder.FULL_BUILD, monitor);
        waitForJobsToComplete();

        StructuredSelection selection = new StructuredSelection(p);

        Map<IProject, List<WorkItem>> projectMap = ResourceUtils.getResourcesPerProject(selection);

        for (Map.Entry<IProject, List<WorkItem>> e : projectMap.entrySet()) {
            FindBugsWorker worker = new FindBugsWorker(p, monitor);
            worker.work(e.getValue());
        }

        waitForJobsToComplete();

        IMarker[] markers = p.findMarkers(FINDBUGS_MARKER, true, IResource.DEPTH_INFINITE);
        assertEquals(markerCount, markers.length);
    }

}