org.sonar.plugins.codesize.SizingProfileTest.java Source code

Java tutorial

Introduction

Here is the source code for org.sonar.plugins.codesize.SizingProfileTest.java

Source

/*
 * Sonar Codesize Plugin
 * Copyright (C) 2010 Matthijs Galesloot
 * dev@sonar.codehaus.org
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.sonar.plugins.codesize;

import static junit.framework.Assert.assertNotNull;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

import org.apache.commons.configuration.PropertiesConfiguration;
import org.junit.Test;
import org.sonar.api.resources.Project;

public class SizingProfileTest {

    @Test
    public void testLineCountMetrics() {
        Project project = new Project("test");
        project.setConfiguration(new PropertiesConfiguration());

        SizingProfile profile = new SizingProfile(project.getConfiguration());

        int minExpectedMetrics = 5;
        assertTrue(minExpectedMetrics < profile.getFileSetDefinitions().size());
        assertTrue(minExpectedMetrics < profile.getFileSetDefinitions().size());

        for (FileSetDefinition metric : profile.getFileSetDefinitions()) {
            assertNotNull(metric.getName());
            assertNotNull(metric.getIncludes());
        }
    }

    @Test
    public void profileTest() {
        PropertiesConfiguration configuration = new PropertiesConfiguration();
        configuration.setProperty(CodesizeConstants.SONAR_CODESIZE_PROFILE, "Java\nincludes=*\nexcludes=*");
        SizingProfile profile = new SizingProfile(configuration);

        assertEquals(1, profile.getFileSetDefinitions().size());
        assertEquals(1, profile.getFileSetDefinitions().get(0).getIncludes().size());
        assertEquals(1, profile.getFileSetDefinitions().get(0).getExcludes().size());
    }
}