aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.report.test/src/org/jacoco/report/check/RuleTest.java
blob: a8c53edae37a5f07813cb6f46bd3d8e0b6d8b416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*******************************************************************************
 * Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors
 * This program and the accompanying materials are made available under
 * the terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Marc R. Hoffmann - initial API and implementation
 *
 *******************************************************************************/
package org.jacoco.report.check;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

import org.jacoco.core.analysis.ICoverageNode.ElementType;
import org.junit.Before;
import org.junit.Test;

/**
 * Unit tests for {@link Rule}.
 */
public class RuleTest {

	private Rule rule;

	@Before
	public void setup() {
		rule = new Rule();
	}

	@Test
	public void testDefaults() {
		assertEquals(ElementType.BUNDLE, rule.getElement());
		assertEquals(Collections.emptyList(), rule.getLimits());
		assertEquals("*", rule.getIncludes());
		assertEquals("", rule.getExcludes());
	}

	@Test
	public void testSetElement() {
		rule.setElement(ElementType.PACKAGE);
		assertEquals(ElementType.PACKAGE, rule.getElement());
	}

	@Test
	public void testSetLimits() {
		Limit l1 = new Limit();
		Limit l2 = new Limit();
		Limit l3 = new Limit();
		rule.setLimits(Arrays.asList(l1, l2, l3));
		assertEquals(Arrays.asList(l1, l2, l3), rule.getLimits());
	}

	@Test
	public void testCreateLimit() {
		Limit l1 = new Limit();
		Limit l2 = new Limit();
		rule.setLimits(new ArrayList<Limit>(Arrays.asList(l1, l2)));
		Limit l3 = rule.createLimit();
		assertEquals(Arrays.asList(l1, l2, l3), rule.getLimits());
	}

	@Test
	public void testSetIncludes() {
		rule.setIncludes("Foo*");
		assertEquals("Foo*", rule.getIncludes());
		assertTrue(rule.matches("FooBar"));
		assertFalse(rule.matches("Other"));
	}

	@Test
	public void testSetExcludes() {
		rule.setExcludes("Foo*");
		assertEquals("Foo*", rule.getExcludes());
		assertTrue(rule.matches("Other"));
		assertFalse(rule.matches("FooBar"));
	}

}