1ebfb6d719176d43357da5c74af4e909afe94c1c
[policy/apex-pdp.git] / model / basic-model / src / test / java / org / onap / policy / apex / model / basicmodel / service / ModelServiceTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.model.basicmodel.service;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.assertTrue;
27
28 import org.junit.Test;
29 import org.onap.policy.apex.model.basicmodel.concepts.AxKeyInformation;
30 import org.onap.policy.apex.model.basicmodel.handling.DummyApexBasicModelCreator;
31
32 public class ModelServiceTest {
33
34     @Test
35     public void testModelService() {
36         ModelService.clear();
37
38         assertFalse(ModelService.existsModel(AxKeyInformation.class));
39         try {
40             ModelService.getModel(AxKeyInformation.class);
41         } catch (final Exception e) {
42             assertEquals("Model for org.onap.policy.apex.model.basicmodel.concepts.AxKeyInformation "
43                             + "not found in model service", e.getMessage());
44         }
45
46         ModelService.registerModel(AxKeyInformation.class,
47                         new DummyApexBasicModelCreator().getModel().getKeyInformation());
48         assertTrue(ModelService.existsModel(AxKeyInformation.class));
49         assertNotNull(ModelService.getModel(AxKeyInformation.class));
50
51         ModelService.deregisterModel(AxKeyInformation.class);
52
53         assertFalse(ModelService.existsModel(AxKeyInformation.class));
54         try {
55             ModelService.getModel(AxKeyInformation.class);
56         } catch (final Exception e) {
57             assertEquals("Model for org.onap.policy.apex.model.basicmodel.concepts.AxKeyInformation "
58                             + "not found in model service", e.getMessage());
59         }
60
61         ModelService.registerModel(AxKeyInformation.class,
62                         new DummyApexBasicModelCreator().getModel().getKeyInformation());
63         assertTrue(ModelService.existsModel(AxKeyInformation.class));
64         assertNotNull(ModelService.getModel(AxKeyInformation.class));
65
66         ModelService.clear();
67         assertFalse(ModelService.existsModel(AxKeyInformation.class));
68         try {
69             ModelService.getModel(AxKeyInformation.class);
70         } catch (final Exception e) {
71             assertEquals("Model for org.onap.policy.apex.model.basicmodel.concepts.AxKeyInformation "
72                             + "not found in model service", e.getMessage());
73         }
74
75     }
76 }