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