21998a7b4b77f273409be45aed679b0ad6be8bed
[policy/drools-applications.git] / controlloop / common / coordination / src / test / java / org / onap / policy / coordination / UtilTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * controlloop
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.coordination;
22
23 import static org.assertj.core.api.Assertions.assertThatNullPointerException;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.assertNull;
27
28 import org.junit.Test;
29
30 public class UtilTest {
31
32     @Test
33     public void test() {
34
35         String filename = "src/test/resources/test_coordination_directive.yaml";
36         CoordinationDirective cd1 = Util.loadCoordinationDirectiveFromFile(filename);
37
38         assertNotNull(cd1);
39
40         assertNotNull(cd1.getControlLoop(0));
41         assertNotNull(cd1.getControlLoop(1));
42         assertNotNull(cd1.getCoordinationFunction());
43
44         assertEquals("cl1", cd1.getControlLoop(0));
45         assertEquals("cl2", cd1.getControlLoop(1));
46         assertEquals("cf", cd1.getCoordinationFunction());
47
48         filename = "src/test/resources/non_existent_coordination_directive.yaml";
49         CoordinationDirective cd2 = Util.loadCoordinationDirectiveFromFile(filename);
50
51         assertNull(cd2);
52
53         assertThatNullPointerException().isThrownBy(() -> {
54             Util.generateXacmlFromCoordinationDirective(cd2, "");
55         });
56     }
57 }