/* * SonarQube Java * Copyright (C) 2012-2016 SonarSource SA * mailto:contact AT sonarsource DOT com * * 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 02110-1301, USA. */ package org.sonar.plugins.surefire.data; import org.junit.Before; import org.junit.Test; import org.sonar.plugins.surefire.StaxParser; import org.sonar.test.TestUtils; import javax.xml.stream.XMLStreamException; import java.io.File; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.Matchers.startsWith; import static org.junit.Assert.assertThat; public class SurefireStaxHandlerTest { private UnitTestIndex index; @Before public void setUp() { index = new UnitTestIndex(); } @Test public void shouldLoadInnerClasses() throws XMLStreamException { parse("innerClasses.xml"); UnitTestClassReport publicClass = index.get("org.apache.commons.collections.bidimap.AbstractTestBidiMap"); assertThat(publicClass.getTests(), is(2)); UnitTestClassReport innerClass1 = index.get("org.apache.commons.collections.bidimap.AbstractTestBidiMap$TestBidiMapEntrySet"); assertThat(innerClass1.getTests(), is(2)); UnitTestClassReport innerClass2 = index.get("org.apache.commons.collections.bidimap.AbstractTestBidiMap$TestInverseBidiMap"); assertThat(innerClass2.getTests(), is(3)); assertThat(innerClass2.getDurationMilliseconds(), is(30 + 1L)); assertThat(innerClass2.getErrors(), is(1)); } @Test public void shouldSuiteAsInnerClass() throws XMLStreamException { parse("suiteInnerClass.xml"); assertThat(index.size(), is(0)); } @Test public void shouldHaveSkippedTests() throws XMLStreamException { parse("skippedTests.xml"); UnitTestClassReport report = index.get("org.sonar.Foo"); assertThat(report.getTests(), is(3)); assertThat(report.getSkipped(), is(1)); } @Test public void shouldHaveZeroTests() throws XMLStreamException { parse("zeroTests.xml"); assertThat(index.size(), is(0)); } @Test public void shouldHaveTestOnRootPackage() throws XMLStreamException { parse("rootPackage.xml"); assertThat(index.size(), is(1)); UnitTestClassReport report = index.get("NoPackagesTest"); assertThat(report.getTests(), is(2)); } @Test public void shouldHaveErrorsAndFailures() throws XMLStreamException { parse("errorsAndFailures.xml"); UnitTestClassReport report = index.get("org.sonar.Foo"); assertThat(report.getErrors(), is(1)); assertThat(report.getFailures(), is(1)); assertThat(report.getResults().size(), is(2)); // failure UnitTestResult failure = report.getResults().get(0); assertThat(failure.getDurationMilliseconds(), is(5L)); assertThat(failure.getStatus(), is(UnitTestResult.STATUS_FAILURE)); assertThat(failure.getName(), is("testOne")); assertThat(failure.getMessage(), startsWith("expected")); // error UnitTestResult error = report.getResults().get(1); assertThat(error.getDurationMilliseconds(), is(0L)); assertThat(error.getStatus(), is(UnitTestResult.STATUS_ERROR)); assertThat(error.getName(), is("testTwo")); } @Test public void shouldSupportMultipleSuitesInSameReport() throws XMLStreamException { parse("multipleSuites.xml"); assertThat(index.get("org.sonar.JavaNCSSCollectorTest").getTests(), is(11)); assertThat(index.get("org.sonar.SecondTest").getTests(), is(4)); } @Test public void shouldSupportSkippedTestWithoutTimeAttribute() throws XMLStreamException { parse("skippedWithoutTimeAttribute.xml"); UnitTestClassReport publicClass = index.get("TSuite.A"); assertThat(publicClass.getSkipped(), is(2)); assertThat(publicClass.getTests(), is(4)); } private void parse(String path) throws XMLStreamException { File xml = TestUtils.getResource(getClass(), path); StaxParser parser = new StaxParser(index); parser.parse(xml); } }