JUnit additions for PAP-REST, checkstyle fixes
[policy/engine.git] / ONAP-PAP-REST / src / test / java / org / onap / policy / pap / xacml / rest / elk / ElkConnectorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
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.pap.xacml.rest.elk;
22
23 import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26
27 import org.junit.Test;
28 import org.onap.policy.pap.xacml.rest.elk.client.ElkConnector;
29 import org.onap.policy.pap.xacml.rest.elk.client.ElkConnector.PolicyBodyType;
30 import org.onap.policy.pap.xacml.rest.elk.client.ElkConnector.PolicyIndexType;
31 import org.onap.policy.pap.xacml.rest.elk.client.ElkConnector.PolicyType;
32
33 public class ElkConnectorTest {
34     @Test
35     public void testConnector() {
36         PolicyType type = PolicyType.Config;
37         PolicyBodyType body = PolicyBodyType.json;
38         assertNotNull(type);
39         assertNotNull(body);
40
41         assertEquals(PolicyIndexType.closedloop, ElkConnector.toPolicyIndexType("Config_Fault"));
42         assertEquals(PolicyIndexType.closedloop, ElkConnector.toPolicyIndexType("Config_PM"));
43         assertEquals(PolicyIndexType.config, ElkConnector.toPolicyIndexType("Config_FW"));
44         assertEquals(PolicyIndexType.config, ElkConnector.toPolicyIndexType("Config_MS"));
45         assertEquals(PolicyIndexType.config, ElkConnector.toPolicyIndexType("Config_OOF"));
46         assertEquals(PolicyIndexType.action, ElkConnector.toPolicyIndexType("Action"));
47         assertEquals(PolicyIndexType.decision, ElkConnector.toPolicyIndexType("Decision"));
48         assertEquals(PolicyIndexType.config, ElkConnector.toPolicyIndexType("Config"));
49
50         assertThatIllegalArgumentException().isThrownBy(() -> ElkConnector.toPolicyIndexType(null));
51
52         assertThatIllegalArgumentException().isThrownBy(() -> ElkConnector.toPolicyIndexType("Foo"));
53     }
54 }