Remove auto generated rule to the drl
[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 org.junit.Rule;
23 import org.junit.Test;
24 import org.junit.rules.ExpectedException;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNotNull;
27 import java.io.IOException;
28 import org.onap.policy.rest.dao.CommonClassDao;
29
30 public class BRMSPolicyTest {
31         @Rule
32     public ExpectedException thrown = ExpectedException.none();
33
34         @Test
35         public void testConstructor1() {
36                 CreateBRMSRuleTemplate template = new CreateBRMSRuleTemplate();
37                 assertNotNull(template);
38         }
39         
40         @Test
41         public void testConstructor2() {
42                 CommonClassDao commonClassDao = null;
43                 CreateBRMSRuleTemplate template = new CreateBRMSRuleTemplate(commonClassDao);
44                 assertNotNull(template);
45         }
46         
47         @Test
48         public void testReadFile() throws IOException {
49                 String goodRule = "declare Params\nparam1 : int\nend\n";
50                 String badRule = "declare Params\nparam1+ : int\nend\n";
51                 assertEquals(CreateBRMSRuleTemplate.validateRuleParams(goodRule), true);
52                 assertEquals(CreateBRMSRuleTemplate.validateRuleParams(badRule), false);
53         }
54 }