2 * Copyright © 2017-2018 AT&T Intellectual Property.
\r
4 * Licensed under the Apache License, Version 2.0 (the "License");
\r
5 * you may not use this file except in compliance with the License.
\r
6 * You may obtain a copy of the License at
\r
8 * http://www.apache.org/licenses/LICENSE-2.0
\r
10 * Unless required by applicable law or agreed to in writing, software
\r
11 * distributed under the License is distributed on an "AS IS" BASIS,
\r
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
\r
13 * See the License for the specific language governing permissions and
\r
14 * limitations under the License.
\r
17 package org.onap.ccsdk.apps.controllerblueprints.service.rs;
\r
19 import org.apache.commons.io.FileUtils;
\r
21 import org.junit.runner.RunWith;
\r
22 import org.junit.runners.MethodSorters;
\r
23 import org.onap.ccsdk.apps.controllerblueprints.TestApplication;
\r
24 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants;
\r
25 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils;
\r
26 import org.onap.ccsdk.apps.controllerblueprints.service.domain.ModelType;
\r
27 import com.att.eelf.configuration.EELFLogger;
\r
28 import com.att.eelf.configuration.EELFManager;
\r
29 import org.springframework.beans.factory.annotation.Autowired;
\r
30 import org.springframework.boot.test.context.SpringBootTest;
\r
31 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
\r
32 import org.springframework.test.context.ContextConfiguration;
\r
33 import org.springframework.test.context.junit4.SpringRunner;
\r
35 import java.io.File;
\r
36 import java.nio.charset.Charset;
\r
37 import java.util.List;
\r
39 @RunWith(SpringRunner.class)
\r
40 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
\r
41 @ContextConfiguration(classes = {TestApplication.class})
\r
42 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
\r
43 public class ModelTypeRestTest {
\r
44 private static EELFLogger log = EELFManager.getInstance().getLogger(ModelTypeRestTest.class);
\r
46 ModelTypeRest modelTypeRest;
\r
48 String modelName = "test-datatype";
\r
51 public void setUp() {
\r
57 public void tearDown() {}
\r
60 public void test01SaveModelType() throws Exception {
\r
61 log.info( "**************** test01SaveModelType ********************");
\r
63 String content = FileUtils.readFileToString(new File("load/model_type/data_type/datatype-property.json"), Charset.defaultCharset());
\r
64 ModelType modelType = new ModelType();
\r
65 modelType.setDefinitionType(BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE);
\r
66 modelType.setDerivedFrom(BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT);
\r
67 modelType.setDescription("Definition for Sample Datatype ");
\r
68 modelType.setDefinition(JacksonUtils.jsonNode(content));
\r
69 modelType.setModelName(modelName);
\r
70 modelType.setVersion("1.0.0");
\r
71 modelType.setTags("test-datatype ," + BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT + ","
\r
72 + BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE);
\r
73 modelType.setUpdatedBy("xxxxxx@xxx.com");
\r
74 modelType = modelTypeRest.saveModelType(modelType);
\r
75 log.info( "Saved Mode {}", modelType.toString());
\r
76 Assert.assertNotNull("Failed to get Saved ModelType", modelType);
\r
77 Assert.assertNotNull("Failed to get Saved ModelType, Id", modelType.getModelName());
\r
79 ModelType dbModelType = modelTypeRest.getModelTypeByName(modelType.getModelName());
\r
80 Assert.assertNotNull("Failed to query ResourceMapping for ID (" + dbModelType.getModelName() + ")",
\r
84 modelType.setUpdatedBy("bs2796@xxx.com");
\r
85 modelType = modelTypeRest.saveModelType(modelType);
\r
86 Assert.assertNotNull("Failed to get Saved ModelType", modelType);
\r
87 Assert.assertEquals("Failed to get Saved getUpdatedBy ", "bs2796@xxx.com", modelType.getUpdatedBy());
\r
92 public void test02SearchModelTypes() throws Exception {
\r
93 log.info( "*********************** test02SearchModelTypes ***************************");
\r
95 String tags = "test-datatype";
\r
97 List<ModelType> dbModelTypes = modelTypeRest.searchModelTypes(tags);
\r
98 Assert.assertNotNull("Failed to search ResourceMapping by tags", dbModelTypes);
\r
99 Assert.assertTrue("Failed to search ResourceMapping by tags count", dbModelTypes.size() > 0);
\r
104 public void test03GetModelType() throws Exception {
\r
105 log.info( "************************* test03GetModelType *********************************");
\r
106 ModelType dbModelType = modelTypeRest.getModelTypeByName(modelName);
\r
107 Assert.assertNotNull("Failed to get response for api call getModelByName ", dbModelType);
\r
108 Assert.assertNotNull("Failed to get Id for api call getModelByName ", dbModelType.getModelName());
\r
110 List<ModelType> dbDatatypeModelTypes =
\r
111 modelTypeRest.getModelTypeByDefinitionType(BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE);
\r
112 Assert.assertNotNull("Failed to find getModelTypeByDefinitionType by tags", dbDatatypeModelTypes);
\r
113 Assert.assertTrue("Failed to find getModelTypeByDefinitionType by count", dbDatatypeModelTypes.size() > 0);
\r
117 public void test04DeleteModelType() throws Exception {
\r
119 "************************ test03DeleteModelType ***********************");
\r
120 ModelType dbResourceMapping = modelTypeRest.getModelTypeByName(modelName);
\r
121 Assert.assertNotNull("Failed to get response for api call getModelByName ", dbResourceMapping);
\r
122 Assert.assertNotNull("Failed to get Id for api call getModelByName ", dbResourceMapping.getModelName());
\r
124 modelTypeRest.deleteModelTypeByName(dbResourceMapping.getModelName());
\r