org.sonar.plugins.csharp.core.CSharpProjectInitializerTest.java Source code

Java tutorial

Introduction

Here is the source code for org.sonar.plugins.csharp.core.CSharpProjectInitializerTest.java

Source

/*
 * Sonar C# Plugin :: Core
 * Copyright (C) 2010 Jose Chillan, Alexandre Victoor and SonarSource
 * dev@sonar.codehaus.org
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */

package org.sonar.plugins.csharp.core;

import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

import org.apache.commons.configuration.BaseConfiguration;
import org.apache.commons.configuration.Configuration;
import org.junit.Before;
import org.junit.Test;
import org.sonar.api.resources.Project;
import org.sonar.plugins.csharp.api.CSharpConstants;

public class CSharpProjectInitializerTest {

    private CSharpProjectInitializer initializer;
    private Project project;
    private Configuration conf;

    @Before
    public void initProject() {
        conf = new BaseConfiguration();
        project = mock(Project.class);
        when(project.getConfiguration()).thenReturn(conf);

        initializer = new CSharpProjectInitializer();
    }

    @Test
    public void shouldSetEncodingAndDefaultExcludes() throws Exception {
        initializer.execute(project);
        assertThat(project.getConfiguration().getString("sonar.sourceEncoding"), is("UTF-8"));
        assertThat(project.getConfiguration().getStringArray("sonar.exclusions"),
                is(CSharpConstants.DEFAULT_FILES_TO_EXCLUDE));
    }

    @Test
    public void shouldNotOverrideEncoding() throws Exception {
        conf.setProperty("sonar.sourceEncoding", "ISO-8859-1");
        initializer.execute(project);
        assertThat(project.getConfiguration().getString("sonar.sourceEncoding"), is("ISO-8859-1"));
        assertThat(project.getConfiguration().getStringArray("sonar.exclusions"),
                is(CSharpConstants.DEFAULT_FILES_TO_EXCLUDE));
    }

    @Test
    public void shouldNotSetDefaultExclusions() throws Exception {
        conf.setProperty("sonar.dotnet.excludeGeneratedCode", Boolean.FALSE);
        initializer.execute(project);
        assertThat(project.getConfiguration().getString("sonar.sourceEncoding"), is("UTF-8"));
        assertThat(project.getConfiguration().getStringArray("sonar.exclusions"), is(new String[0]));
    }

    @Test
    public void shouldAddExclusions() throws Exception {
        conf.setProperty("sonar.exclusions", "Foo.cs,**/Bar.cs");
        initializer.execute(project);
        assertThat(project.getConfiguration().getString("sonar.sourceEncoding"), is("UTF-8"));
        String[] exclusions = project.getConfiguration().getStringArray("sonar.exclusions");
        assertThat(exclusions.length, is(2 + CSharpConstants.DEFAULT_FILES_TO_EXCLUDE.length));
        assertThat(exclusions[0], is("Foo.cs"));
        assertThat(exclusions[1], is("**/Bar.cs"));
    }

}