Upgrade Java 17 in policy-drools-apps
[policy/drools-applications.git] / controlloop / common / rules-test / src / test / java / org / onap / policy / controlloop / common / rules / test / NamedRunnerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2023 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop.common.rules.test;
23
24 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import static org.junit.jupiter.api.Assertions.fail;
26
27 import org.junit.jupiter.api.AfterAll;
28 import org.junit.jupiter.api.Disabled;
29 import org.junit.jupiter.api.Test;
30 import org.junit.jupiter.api.extension.ExtendWith;
31
32
33 /**
34  * Tests NamedRunner. The tests don't do much, because all we really want to check is
35  * which tests are executed based on the {@link TestNames} annotation.
36  */
37 @ExtendWith(NamedRunner.class)
38 @TestNames(names = {"testAbc", "testDef", "testIgnore"}, prefixes = {"testGhi", "testJkl"})
39 class NamedRunnerTest {
40
41     private static int testCount = 0;
42
43     @AfterAll
44     public static void tearDownAfterClass() {
45         assertEquals(5, testCount);
46     }
47
48     @Test
49     void testAbc() {
50         checkTest();
51     }
52
53     @Test
54     void testAbc2() {
55         fail("should not run");
56     }
57
58     @Test
59     void testDef() {
60         checkTest();
61     }
62
63     /*
64      * Note: this test is purposely marked with the "Ignore" annotation to verify that the
65      * NamedRunner skips over it, hence the sonar issue is being suppressed.
66      */
67     @Test
68     @Disabled
69     public void testIgnore() {      // NOSONAR
70         fail("should not run");
71     }
72
73     @Test
74     void testGhi1() {
75         checkTest();
76     }
77
78     @Test
79     void testGhi2() {
80         checkTest();
81     }
82
83     @Test
84     void testJkl() {
85         checkTest();
86     }
87
88
89     private static void checkTest() {
90         ++testCount;
91     }
92 }