Incorporate filters in provider functions
[policy/api.git] / main / src / test / java / org / onap / policy / api / main / rest / provider / TestLegacyGuardPolicyProvider.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy API
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  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.api.main.rest.provider;
24
25 import static org.assertj.core.api.Assertions.assertThatThrownBy;
26 import static org.junit.Assert.assertEquals;
27 import static org.junit.Assert.assertNotNull;
28 import static org.junit.Assert.fail;
29
30 import java.util.Base64;
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.onap.policy.api.main.parameters.ApiParameterGroup;
34 import org.onap.policy.common.parameters.ParameterService;
35 import org.onap.policy.models.base.PfModelException;
36 import org.onap.policy.models.provider.PolicyModelsProviderParameters;
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39
40 /**
41  * This class performs unit test of {@link LegacyGuardPolicyProvider}
42  *
43  * @author Chenfei Gao (cgao@research.att.com)
44  */
45 public class TestLegacyGuardPolicyProvider {
46
47     private static final Logger LOGGER = LoggerFactory.getLogger(TestPolicyProvider.class);
48
49     private LegacyGuardPolicyProvider guardPolicyProvider;
50
51     /**
52      * Initialize parameters.
53      */
54     @Before
55     public void setupParameters() throws PfModelException {
56
57         PolicyModelsProviderParameters parameters = new PolicyModelsProviderParameters();
58         parameters.setDatabaseUrl("jdbc:h2:mem:testdb");
59         parameters.setDatabaseUser("policy");
60         parameters.setDatabasePassword(Base64.getEncoder().encodeToString("P01icY".getBytes()));
61         parameters.setPersistenceUnit("ToscaConceptTest");
62         ApiParameterGroup paramGroup = new ApiParameterGroup("ApiGroup", null, parameters);
63         ParameterService.register(paramGroup, true);
64         guardPolicyProvider = new LegacyGuardPolicyProvider();
65     }
66
67     @Test
68     public void testFetchGuardPolicy() {
69
70     }
71
72     @Test
73     public void testCreateGuardPolicy() {
74
75     }
76
77     @Test
78     public void testDeleteGuardPolicy() {
79
80     }
81 }