Consolidate PolicyRestAdapter setup
[policy/engine.git] / ONAP-PAP-REST / src / test / java / org / onap / policy / pap / xacml / rest / components / BRMSPolicyTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
4  * ================================================================================
5  * Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pap.xacml.rest.components;
24
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNotNull;
27
28 import java.io.IOException;
29
30 import org.junit.Rule;
31 import org.junit.Test;
32 import org.junit.rules.ExpectedException;
33 import org.mockito.Mockito;
34 import org.onap.policy.rest.dao.CommonClassDao;
35
36 public class BRMSPolicyTest {
37     @Rule
38     public ExpectedException thrown = ExpectedException.none();
39
40     @Test
41     public void testConstructor1() {
42         CreateBRMSRuleTemplate template = new CreateBRMSRuleTemplate();
43         assertNotNull(template);
44     }
45
46     @Test
47     public void testConstructor2() {
48         CommonClassDao commonClassDao = null;
49         CreateBRMSRuleTemplate template = new CreateBRMSRuleTemplate(commonClassDao);
50         assertNotNull(template);
51     }
52
53     @Test
54     public void testReadFile() throws IOException {
55         String goodRule = "declare Params\nparam1 : int\nend\n";
56         String badRule = "declare Params\nparam1+ : int\nend\n";
57         assertEquals(CreateBRMSRuleTemplate.validateRuleParams(goodRule), true);
58         assertEquals(CreateBRMSRuleTemplate.validateRuleParams(badRule), false);
59     }
60
61     @Test
62     public void testAdd() {
63         CommonClassDao dao = Mockito.mock(CommonClassDao.class);
64         CreateBRMSRuleTemplate template = new CreateBRMSRuleTemplate(dao);
65         String rule = "package foo\n";
66         String ruleName = "testName";
67         String description = "testDesc";
68         String userID = "testID";
69         assertEquals(1, template.addRule(rule, ruleName, description, userID).size());
70     }
71 }