blob: 5a296f4b9543865a5980cd0c9f121f4ddc95335a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 Mountainminds GmbH & Co. KG and Contributors
* 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
*
* Contributors:
* Marc R. Hoffmann - initial API and implementation
*
*******************************************************************************/
package org.jacoco.report.internal.html.page;
import static org.junit.Assert.assertEquals;
import java.io.IOException;
import org.jacoco.core.analysis.IClassCoverage;
import org.jacoco.core.internal.analysis.ClassCoverageImpl;
import org.jacoco.core.internal.analysis.MethodCoverageImpl;
import org.junit.Before;
import org.junit.Test;
import org.w3c.dom.Document;
/**
* Unit tests for {@link ClassPage}.
*/
public class ClassPageTest extends PageTestBase {
private ClassCoverageImpl node;
private ClassPage page;
@Before
@Override
public void setup() throws Exception {
super.setup();
node = new ClassCoverageImpl("org/jacoco/example/Foo", 123, false);
node.addMethod(new MethodCoverageImpl("a", "()V", null));
node.addMethod(new MethodCoverageImpl("b", "()V", null));
node.addMethod(new MethodCoverageImpl("c", "()V", null));
}
@Test
public void testContents() throws Exception {
page = new ClassPage(node, null, null, rootFolder, context);
page.render();
final Document doc = support.parse(output.getFile("Foo.html"));
assertEquals("el_method", support.findStr(doc,
"/html/body/table[1]/tbody/tr[1]/td[1]/span/@class"));
assertEquals("a()", support.findStr(doc,
"/html/body/table[1]/tbody/tr[1]/td[1]/span"));
assertEquals("b()", support.findStr(doc,
"/html/body/table[1]/tbody/tr[2]/td[1]/span"));
assertEquals("c()", support.findStr(doc,
"/html/body/table[1]/tbody/tr[3]/td[1]/span"));
}
@Test
public void testGetFileName() throws IOException {
page = new ClassPage(node, null, null, rootFolder, context);
assertEquals("Foo.html", page.getFileName());
}
@Test
public void testGetFileNameDefault() throws IOException {
IClassCoverage defaultNode = new ClassCoverageImpl("Foo", 123, false);
page = new ClassPage(defaultNode, null, null, rootFolder, context);
assertEquals("Foo.html", page.getFileName());
}
@Test
public void testGetLinkLabel() throws IOException {
page = new ClassPage(node, null, null, rootFolder, context);
assertEquals("Foo", page.getLinkLabel());
}
}