Incorporate filters in provider functions
[policy/api.git] / main / src / test / java / org / onap / policy / api / main / rest / provider / TestPolicyProvider.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 PolicyProvider}
42  *
43  * @author Chenfei Gao (cgao@research.att.com)
44  */
45 public class TestPolicyProvider {
46
47     private static final Logger LOGGER = LoggerFactory.getLogger(TestPolicyProvider.class);
48
49     private PolicyProvider policyProvider;
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         policyProvider = new PolicyProvider();
65         System.out.println("xxxx");
66     }
67
68     @Test
69     public void testFetchPolicies() {
70
71     }
72
73     @Test
74     public void testFetchLatestPolicies() {
75
76     }
77
78     @Test
79     public void testFetchDeployedPolicies() {
80
81     }
82
83     @Test
84     public void testCreatePolicy() {
85
86     }
87
88     @Test
89     public void testDeletePolicy() {
90
91     }
92 }