39586ba1bf9ba6ec9603028c3cfc69838ed51192
[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 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 package org.onap.policy.pap.xacml.rest.components;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26 import java.io.IOException;
27 import org.junit.Rule;
28 import org.junit.Test;
29 import org.junit.rules.ExpectedException;
30 import org.mockito.Mockito;
31 import org.onap.policy.rest.dao.CommonClassDao;
32
33 public class BRMSPolicyTest {
34     @Rule
35     public ExpectedException thrown = ExpectedException.none();
36
37     @Test
38     public void testConstructor1() {
39         CreateBRMSRuleTemplate template = new CreateBRMSRuleTemplate();
40         assertNotNull(template);
41     }
42
43     @Test
44     public void testConstructor2() {
45         CommonClassDao commonClassDao = null;
46         CreateBRMSRuleTemplate template = new CreateBRMSRuleTemplate(commonClassDao);
47         assertNotNull(template);
48     }
49
50     @Test
51     public void testReadFile() throws IOException {
52         String goodRule = "declare Params\nparam1 : int\nend\n";
53         String badRule = "declare Params\nparam1+ : int\nend\n";
54         assertEquals(CreateBRMSRuleTemplate.validateRuleParams(goodRule), true);
55         assertEquals(CreateBRMSRuleTemplate.validateRuleParams(badRule), false);
56     }
57
58     @Test
59     public void testAdd() {
60         CommonClassDao dao = Mockito.mock(CommonClassDao.class);
61         CreateBRMSRuleTemplate template = new CreateBRMSRuleTemplate(dao);
62         String rule = "package foo\n";
63         String ruleName = "testName";
64         String description = "testDesc";
65         String userID = "testID";
66         assertEquals(1, template.addRule(rule, ruleName, description, userID).size());
67     }
68 }